changeset 0:edd99ac6d4a4 draft

planemo upload for repository https://github.com/galaxyecology/tools-ecology/tools/gdal commit b964e8f7d7bb076d63a1c7bdfbbdba0f9074d517
author ecology
date Tue, 26 Feb 2019 11:50:33 -0500
parents
children 7bdf6ee695a8
files gdal_macros.xml ogrinfo.xml test-data/custom.geo.json test-data/ogrinfo_test1_out2.txt test-data/ogrinfo_test2_out2.txt
diffstat 5 files changed, 3031 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gdal_macros.xml	Tue Feb 26 11:50:33 2019 -0500
@@ -0,0 +1,164 @@
+<macros>
+    <token name="@VERSION@">2.4.0</token>  
+    <xml name="gdal_requirements">
+        <requirements>
+            <requirement type="package" version="2.1.0">gdal</requirement>
+            <requirement type="package" version="3.5.0">geos</requirement>
+        </requirements>
+    </xml>
+
+    <xml name="gdal_advanced_params_select">
+        <param name="advanced" type="select" label="Specify advanced parameters">
+            <option value="simple" selected="true">No, use program defaults.</option>
+            <option value="advanced">Yes, see full parameter list.</option>
+        </param>        
+        <when value="simple">
+        </when>
+    </xml>
+
+    <xml name="gdal_param_te">
+        <conditional name="condi_te">
+            <param name="te" type="select" label="Georeferenced extents of output file" help="-te xmin ymin xmax ymax">
+                <option value="no_te" selected="true">Don't use the -te option</option>
+                <option value="te">Use the -te option</option>
+            </param>
+            <when value="no_te">
+            </when>
+            <when value="te">
+                <param name="xmin" type="float" label="xmin" value="0" min="0" help="In target SRS by default, or in the SRS specified with -te_srs"/>
+                <param name="ymin" type="float" label="ymin" value="0" min="0" help="In target SRS by default, or in the SRS specified with -te_srs"/>
+                <param name="xmax" type="float" label="xmax" value="0" min="0" help="In target SRS by default, or in the SRS specified with -te_srs"/>
+                <param name="ymax" type="float" label="ymax" value="0" min="0" help="In target SRS by default, or in the SRS specified with -te_srs"/>
+            </when>
+        </conditional> 
+    </xml>
+
+    <xml name="gdal_param_r">
+        <conditional name="condi_resample">
+            <param label="Use a resampling method" help="-r resampling algorithm" name="resample" type="select">
+                <option value="no_resampling" selected="true">Don't use a resampling method</option>
+                <option value="resampling">Use a resampling method, option -r</option>
+            </param>
+            <when value="resampling">
+                <param name="r" type="select" label="Reseampling algorithm" >
+                    <option value="nearest" selected="true"/>
+                    <option value="bilinear"/>
+                    <option value="cubic"/>
+                    <option value="cubicspline"/>
+                    <option value="lanczos"/>
+                    <option value="average"/>
+                    <option value="mode"/>
+                    <option value="max"/>
+                    <option value="min"/>
+                    <option value="med">Median resampling</option>
+                    <option value="q1">First quartile resampling</option>
+                    <option value="q2">Third quartile resampling</option>
+                </param>
+            </when>
+            <when value="no_resampling">
+            </when>
+        </conditional>
+    </xml>
+
+    <xml name="gdal_param_tr">
+        <conditional name="condi_tr">
+            <param name="tr" type="select" label="Set the ouput file resolution" help="-tr xres yres. Set output file resolution (in target georeferenced units)"> 
+                <option value="no_tr" selected="true">Don't use the -tr option</option>
+                <option value="tr">Use the -tr option</option>
+            </param>
+            <when value="no_tr">
+            </when>
+            <when value="tr">
+                <param name="xres" type="float" label="xres" value="0" min="0"/>
+                <param name="yres" type="float" label="yres" value="0" min="0"/>
+            </when>
+        </conditional>
+    </xml>
+
+    <xml name="gdal_param_b">
+        <param name="b" type="text" label="Select an input band band for output" help="eg : -b band -b 1 -b 2 -b 3. Bands are numbered from 1. Multiple -b switches may be used to select a set of input bands to write to the output file, or to reorder bands." value=""/>
+    </xml>
+
+    <xml name="gdal_param_tap">
+        <param name="tap" label="Align the coordinates" help="-tap Target Aligned Pixel, align the coordinates of the extent of the output file to the values of the -tr, such that the aligned extent includes the minimum extent" type="boolean" truevalue="-tap" falsevalue="" checked="false" />
+    </xml>
+
+    <xml name="gdal_param_separate">
+        <param name="separate" type="boolean" truevalue="-separate" falsevalue="" checked="false" label="Place each input file into a separate band" help="-separate. In that case, only the first band of each dataset will be placed into a new band. Contrary to the default mode, it is not required that all bands have the same datatype" />
+    </xml>
+
+    <xml name="gdal_param_a_srs">
+        <param name="a_srs" type="text" label="Override the projection for the output file" help="-a_srs srs_def. The srs_def may be any of the usual GDAL/OGR forms, complete WKT, PROJ.4, EPSG:n or a file containing the WKT. No reprojection is done" value="" />
+    </xml>
+
+    <xml name="gdal_param_stats">
+        <param name="stats" type="boolean" truevalue="-stats" falsevalue="" checked="false" label="Force (re)computation of statistics"  help="-stats. Read and display image statistics. Force computation if no statistics are sto.red in an image."/>
+    </xml>
+    
+    <xml name="gdal_param_norat">
+        <param name="norat" type="boolean" truevalue="-norat" falsevalue="" checked="false" help="-norat. Do not copy source RAT into destination dataset." label="Suppress printing of raster attribute table."/>
+    </xml>
+
+    <xml name="gdal_param_of">
+        <param name="of" type="select" label="Output format -of" value="Gtiff" help="Select the output format. The default is GeoTIFF (GTiff). A short list of raster formats is currently enable in GalaxyE : GTiff, netCDF and VRT.">
+            <option value="GTiff">GTiff</option>
+            <option value="netCDF">Network Common Data Format - netCDF</option>
+            <option value="VRT">GDAL Virtual - VRT</option>
+        </param>
+    </xml>
+
+    <xml name="gdal_param_co">
+        <param name="co" type="text" label="Pass a creation option to the output format driver" help="-co NAME=VALUE. eg : COMPRESS=JPEG" value="" />
+    </xml>   
+
+    <xml name="gdal_param_ot">
+        <param name="ot" type="select" label="Datatype of the output bands" help="-ot Datatype">
+            <option value="byte">Byte</option>
+            <option value="int16">Int16</option>
+            <option value="uint16">UInt16</option>
+            <option value="uint32">UInt32</option>
+            <option value="int32">Int32</option>
+            <option value="float32">Float32</option>
+            <option value="float64">Float64</option>
+            <option value="cint16">CInt16</option>
+            <option value="cint32">CInt32</option>
+            <option value="cfloat32">CFloat32</option>
+            <option value="cfloat64">CFloat64</option>
+            <option value="" selected="true">Select a datatype for the output bands (default)</option>
+        </param>
+    </xml>
+
+<!-- need to upgrade gdal version to use
+    <xml name="gdal_param_oo">
+        <param name="oo" type="text" label="-oo NAME=VALUE" value="" />
+    </xml>
+-->
+
+    <xml name="gdal_input_raster_multiple">
+        <param type="data" name="input" format="gtiff,tiff,netcdf,VRT,txt,xml" help="Formats currently supported are : GTiff, netCDF and VRT" label="Gdal supported input file" multiple="true"/>
+    </xml>
+
+    <xml name="gdal_output_change_format">
+        <data name="output" format="GTiff" label="${on_string}.${of}">
+            <change_format>
+                <when input="of" value="GTiff" format="tiff"/>
+                <when input="of" value="netCDF" format="netcdf"/>
+                <when input="of" value="VRT" format="txt"/>
+            </change_format>
+        </data>
+    </xml>
+
+    <xml name="gdal_citation">
+        <citations>
+            <citation type="bibtex">
+                @Manual{,
+                title = {{GDAL/OGR} Geospatial Data Abstraction software Library},
+                author = {{GDAL/OGR contributors}},
+                organization = {Open Source Geospatial Foundation},
+                year = {2018},
+                url = {http://gdal.org},
+                }
+            </citation>
+        </citations>  
+    </xml>
+</macros>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ogrinfo.xml	Tue Feb 26 11:50:33 2019 -0500
@@ -0,0 +1,88 @@
+<tool id="gdal_ogrinfo" name="OGR Informations" version="@VERSION@">
+    <description>lists information about an OGR supported data source</description>
+    <macros>
+        <import>gdal_macros.xml</import>
+    </macros>
+    <expand macro="gdal_requirements" />
+    <command detect_errors="exit_code"><![CDATA[
+        ogrinfo -ro '$input1'  -al 
+            #if $settings.advanced=='advanced'
+                #if $settings.condi_sql.sql=='sql':
+                    #if str($settings.condi_sql.sql_statement).strip()!='':
+                        -sql '$settings.condi_sql.sql_statement'
+                    #end if
+                #end if
+                $settings.so
+            #end if
+        > '$output'
+    ]]></command>
+    <inputs>
+        <param type="data" name="input1" format="xml,txt,netcdf" label="Gdal supported vector input file" help="Currently supported format are GeoJSON GML KML and WFS"/>
+        <conditional name="settings">
+            <expand macro="gdal_advanced_params_select"/>
+            <when value="advanced">
+                <conditional name="condi_sql">
+                    <param name="sql" type="select" label="Use a sql query on the file" help="-sql. Execute the indicated SQL statement and return the result"> 
+                        <option value="no_sql" selected="true">Don't use the -sql option</option>
+                        <option value="sql">Use the -sql option</option>
+                    </param>
+                    <when value="no_sql">
+                    </when>
+                    <when value="sql">
+                        <param name="sql_statement" type="text" label="Execute the indicated SQL"  help="-sql statement eg : SELECT * FROM layer WHERE X>10." value="">
+                            <sanitizer sanitize="False"/>
+                            <validator type="regex" message="Type a valid SQL query">^(?ims)\s*select\s+.*\s+from\s+.*$</validator>
+                        </param>
+                    </when>
+                </conditional>
+                <param name="so" label="Summary Only" help="-so. Suppress listing of features, show only the summary information like projection, schema, feature count and extents" type="boolean" truevalue="-so" falsevalue="" checked="true"/>
+            </when>
+        </conditional>
+    </inputs>
+    <outputs>
+        <data name="output" format="txt" label="OGR Info file on ${on_string}"/>
+    </outputs>
+    <tests>
+        <test>
+            <param name="input1" value="custom.geo.json"/>
+            <param name="advanced" value="simple"/>
+            <output name="output" file="ogrinfo_test1_out2.txt" lines_diff="4"/>
+        </test>
+        <test>
+            <param name="input1" value="custom.geo.json"/>
+            <param name="advanced" value="advanced"/>
+            <param name="sql" value="sql"/>
+            <param name="sql_statement" value="SELECT * FROM OGRGeoJSON"/> <!-- WARNING the FROM here is fixed to pass travis test, the dataset number changes depending of the input -->
+            <param name="so" value="-so"/>
+            <output name="output" file="ogrinfo_test2_out2.txt" lines_diff="4"/>
+        </test>
+   </tests>
+    <help><![CDATA[
+========
+Ogrinfo
+========
+
+**What it does**
+
+The Ogrinfo program lists various information about an OGR supported vector dataset.
+
+|
+
+**How to use it**
+
+Select from history a suported vector file. 
+
+|
+
+**Advanced options and sources**
+
+To see complete details and help section please check the official gdal sources.
+
+http://www.gdal.org
+
+http://www.gdal.org/ogr_utilities.html
+
+http://download.osgeo.org/gdal/workshop/foss4ge2015/workshop_gdal.pdf
+    ]]></help>
+    <expand macro="gdal_citation"/>
+</tool>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/custom.geo.json	Tue Feb 26 11:50:33 2019 -0500
@@ -0,0 +1,1 @@
+{"type":"FeatureCollection","features":[{"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","brk_group":null,"abbrev":"Alb.","postal":"AL","formal_en":"Republic of Albania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Albania","name_alt":null,"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,"fips_10":null,"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,"filename":"ALB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[20.590247430104906,41.855404161133606],[20.463175083099202,41.51508901627533],[20.605181919037364,41.08622630468522],[21.0200403174764,40.84272695572588],[20.999989861747224,40.58000397395397],[20.674996779063633,40.43499990494303],[20.615000441172754,40.11000682225938],[20.15001590341052,39.62499766698397],[19.980000441170144,39.69499339452341],[19.960001661873207,39.91500580500605],[19.406081984136733,40.250773423822466],[19.319058872157143,40.72723012955356],[19.40354983895429,41.40956574153546],[19.540027296637106,41.71998607031276],[19.37176883309496,41.877547512370654],[19.304486118250793,42.19574514420782],[19.738051385179627,42.688247382165564],[19.801613396898688,42.50009349219084],[20.0707,42.58863],[20.283754510181893,42.32025950781508],[20.52295,42.21787],[20.590247430104906,41.855404161133606]]]}},{"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.","brk_group":null,"abbrev":"B.H.","postal":"BiH","formal_en":"Bosnia and Herzegovina","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bosnia and Herzegovina","name_alt":null,"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,"fips_10":null,"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,"filename":"BIH.geojson"},"geometry":{"type":"Polygon","coordinates":[[[19.00548628101012,44.86023366960916],[19.36803,44.863],[19.11761,44.42307000000011],[19.59976,44.03847],[19.454,43.56810000000013],[19.21852,43.52384],[19.03165,43.43253],[18.70648,43.20011],[18.56,42.65],[17.674921502358984,43.02856252702361],[17.297373488034452,43.44634064388736],[16.91615644701733,43.66772247982567],[16.456442905348865,44.04123973243128],[16.23966027188453,44.35114329688571],[15.750026075918981,44.81871165626256],[15.959367303133376,45.233776760430935],[16.318156772535872,45.00412669532591],[16.534939406000206,45.21160757097772],[17.002146030351014,45.233776760430935],[17.861783481526402,45.067740383477144],[18.553214145591653,45.08158966733145],[19.00548628101012,44.86023366960916]]]}},{"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","brk_group":null,"abbrev":"Bela.","postal":"BY","formal_en":"Republic of Belarus","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Belarus","name_alt":null,"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,"fips_10":null,"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,"filename":"BLR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[23.48412763844985,53.91249766704114],[24.450683628037037,53.905702216194754],[25.536353794056993,54.28242340760253],[25.7684326514798,54.84696259217509],[26.58827924979039,55.16717560487167],[26.494331495883753,55.615106919977634],[27.10245975109453,55.783313707087686],[28.176709425577993,56.16912995057881],[29.229513380660308,55.918344224666356],[29.371571893030673,55.670090643936184],[29.896294386522356,55.78946320253041],[30.873909132620007,55.55097646750341],[30.971835971813135,55.08154775656404],[30.757533807098717,54.81177094178432],[31.38447228366374,54.157056382862436],[31.79142418796224,53.97463857687212],[31.731272820774507,53.79402944601202],[32.405598585751164,53.618045355842035],[32.69364301934604,53.35142080343212],[32.304519484188226,53.1327261419729],[31.49764367038293,53.1674268662569],[31.305200636528014,53.07399587667321],[31.54001834486226,52.74205231384636],[31.785998162571587,52.101677964885454],[30.927549269338982,52.04235342061438],[30.619454380014844,51.822806098022376],[30.555117221811457,51.31950348571566],[30.157363722460897,51.41613841410147],[29.254938185347925,51.368234361366895],[28.99283532076353,51.602044379271476],[28.61761274589225,51.42771393493484],[28.24161502453657,51.57222707783907],[27.454066196408434,51.59230337178447],[26.337958611768556,51.83228872334793],[25.327787713327005,51.91065603291855],[24.553106316839518,51.888461005249184],[24.00507775238421,51.61744395609446],[23.52707075368437,51.57845408793023],[23.508002150168693,52.02364655212473],[23.199493849386187,52.486977444053664],[23.799198846133375,52.69109935160657],[23.80493493011778,53.089731350306074],[23.527535841575002,53.470121568406555],[23.48412763844985,53.91249766704114]]]}},{"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","brk_group":null,"abbrev":"Bulg.","postal":"BG","formal_en":"Republic of Bulgaria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bulgaria","name_alt":null,"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,"fips_10":null,"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,"filename":"BGR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[22.65714969248299,44.23492300066128],[22.944832391051847,43.82378530534713],[23.33230228037632,43.89701080990471],[24.100679152124172,43.74105133724785],[25.569271681426926,43.68844472917472],[26.065158725699746,43.94349376075126],[27.242399529740908,44.175986029632405],[27.970107049275075,43.81246816667521],[28.558081495891997,43.70746165625813],[28.03909508638472,43.293171698574184],[27.67389773937805,42.577892361006214],[27.99672041190539,42.00735871028779],[27.135739373490477,42.14148489030134],[26.117041863720797,41.82690460872456],[26.106138136507212,41.32889883072778],[25.197201368925445,41.23448598893053],[24.49264489105803,41.583896185872035],[23.692073601992348,41.30908091894385],[22.952377150166452,41.33799388281115],[22.88137373219743,41.99929718685026],[22.380525750424592,42.32025950781509],[22.54501183440962,42.46136200618804],[22.43659467946128,42.580321153323936],[22.60480146657133,42.898518785161144],[22.986018507588483,43.211161200526966],[22.50015669118028,43.64281443946099],[22.410446404721597,44.00806346289995],[22.65714969248299,44.23492300066128]]]}},{"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","brk_group":null,"abbrev":"Aust.","postal":"A","formal_en":"Republic of Austria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Austria","name_alt":null,"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,"fips_10":null,"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,"filename":"AUT.geojson"},"geometry":{"type":"Polygon","coordinates":[[[16.979666782304037,48.123497015976305],[16.90375410326726,47.71486562762833],[16.340584344150415,47.71290192320123],[16.534267612380376,47.49617096616912],[16.202298211337364,46.85238597267696],[16.011663852612656,46.6836107448117],[15.137091912504985,46.65870270444703],[14.63247155117483,46.43181732846955],[13.806475457421527,46.509306138691215],[12.376485223040817,46.76755910906985],[12.153088006243054,47.11539317482645],[11.16482791509327,46.94157949481273],[11.048555942436536,46.75135854754634],[10.44270145024663,46.89354625099743],[9.932448357796659,46.92072805438296],[9.479969516649021,47.10280996356337],[9.632931756232978,47.34760122332999],[9.59422610844635,47.52505809182027],[9.896068149463188,47.580196845075704],[10.402083774465211,47.30248769793916],[10.544504021861627,47.56639923765377],[11.426414015354737,47.523766181012974],[12.141357456112788,47.703083401065776],[12.620759718484491,47.67238760028441],[12.932626987365948,47.467645575544],[13.02585127122049,47.637583523135824],[12.884102817443903,48.28914581968792],[13.243357374737,48.416114813829054],[13.595945672264437,48.87717194273715],[14.33889773932472,48.5553052842072],[14.901447381254057,48.964401760445824],[15.253415561593982,49.039074205107575],[16.02964725105022,48.73389903420793],[16.49928266771877,48.78580801044511],[16.960288120194576,48.5969823268506],[16.879982944413,48.47001333270947],[16.979666782304037,48.123497015976305]]]}},{"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","brk_group":null,"abbrev":"Belg.","postal":"B","formal_en":"Kingdom of Belgium","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Belgium","name_alt":null,"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,"fips_10":null,"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,"filename":"BEL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[3.314971144228537,51.345780951536085],[4.047071160507527,51.26725861266857],[4.973991326526914,51.475023708698124],[5.606975945670001,51.037298488969775],[6.156658155958779,50.80372101501058],[6.043073357781111,50.128051662794235],[5.782417433300906,50.09032786722122],[5.674051954784829,49.529483547557504],[4.799221632515809,49.985373033236385],[4.286022983425084,49.907496649772554],[3.588184441755686,50.37899241800358],[3.123251580425801,50.780363267614575],[2.658422071960274,50.79684804951574],[2.513573032246143,51.14850617126183],[3.314971144228537,51.345780951536085]]]}},{"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","brk_group":null,"abbrev":"Switz.","postal":"CH","formal_en":"Swiss Confederation","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Switzerland","name_alt":null,"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,"fips_10":null,"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,"filename":"CHE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[9.59422610844635,47.52505809182027],[9.632931756232978,47.34760122332999],[9.479969516649021,47.10280996356337],[9.932448357796659,46.92072805438296],[10.44270145024663,46.89354625099743],[10.363378126678612,46.48357127540986],[9.92283654139038,46.31489940040919],[9.182881707403055,46.44021474871698],[8.966305779667806,46.036931871111186],[8.489952426801324,46.005150865251686],[8.31662967289438,46.16364248309086],[7.755992058959833,45.82449005795931],[7.273850945676656,45.776947740250776],[6.843592970414504,45.99114655210061],[6.500099724970425,46.42967275652944],[6.022609490593537,46.27298981382047],[6.037388950229001,46.725778713561866],[6.768713820023606,47.2877082383037],[6.736571079138059,47.541801255882845],[7.192202182655507,47.44976552997102],[7.46675906742223,47.62058197691181],[8.317301466514152,47.61357982033626],[8.522611932009765,47.830827541691285],[9.59422610844635,47.52505809182027]]]}},{"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.","brk_group":null,"abbrev":"Cz. Rep.","postal":"CZ","formal_en":"Czech Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Czech Republic","name_alt":null,"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,"fips_10":null,"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,"filename":"CZE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[16.960288120194576,48.5969823268506],[16.49928266771877,48.78580801044511],[16.02964725105022,48.73389903420793],[15.253415561593982,49.039074205107575],[14.901447381254057,48.964401760445824],[14.33889773932472,48.5553052842072],[13.595945672264437,48.87717194273715],[13.031328973043431,49.30706818297324],[12.521024204161192,49.547415269562734],[12.415190870827445,49.96912079528057],[12.240111118222558,50.266337795607285],[12.966836785543194,50.484076443069085],[13.338131951560285,50.73323436136435],[14.056227654688172,50.92691762959429],[14.307013380600637,51.117267767941414],[14.570718214586066,51.002339382524276],[15.01699588385867,51.10667409932158],[15.490972120839727,50.78472992614321],[16.23862674323857,50.69773265237984],[16.176253289462267,50.42260732685791],[16.719475945714436,50.21574656839354],[16.868769158605655,50.47397370055603],[17.55456709155112,50.36214590107641],[17.64944502123899,50.049038397819956],[18.392913852622172,49.98862864847075],[18.853144158613617,49.49622976337764],[18.554971144289482,49.49501536721878],[18.399993523846177,49.31500051533004],[18.170498488037964,49.271514797556435],[18.104972771891852,49.04398346617531],[17.913511590250465,48.996492824899086],[17.88648481616181,48.90347524677371],[17.545006951577108,48.80001902932537],[17.101984897538898,48.81696889911711],[16.960288120194576,48.5969823268506]]]}},{"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","brk_group":null,"abbrev":"Ger.","postal":"D","formal_en":"Federal Republic of Germany","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Germany","name_alt":null,"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,"fips_10":null,"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,"filename":"DEU.geojson"},"geometry":{"type":"Polygon","coordinates":[[[9.921906365609232,54.983104153048025],[9.9395797054529,54.596641954153256],[10.950112338920519,54.363607082733154],[10.939466993868448,54.00869334575258],[11.956252475643282,54.19648550070116],[12.518440382546714,54.47037059184799],[13.647467075259499,54.0755109727059],[14.119686313542559,53.75702912049103],[14.353315463934168,53.248171291713106],[14.074521111719434,52.98126251892535],[14.4375997250022,52.624850165408304],[14.685026482815713,52.089947414755216],[14.607098422919648,51.745188096719964],[15.016995883858781,51.10667409932171],[14.570718214586122,51.00233938252438],[14.307013380600665,51.11726776794137],[14.056227654688314,50.92691762959435],[13.338131951560397,50.73323436136428],[12.96683678554325,50.48407644306917],[12.240111118222671,50.26633779560723],[12.415190870827473,49.96912079528062],[12.521024204161336,49.54741526956275],[13.031328973043514,49.30706818297324],[13.595945672264577,48.877171942737164],[13.243357374737116,48.41611481382903],[12.884102817443873,48.28914581968786],[13.025851271220517,47.63758352313595],[12.932626987366064,47.467645575544],[12.620759718484521,47.672387600284424],[12.141357456112871,47.70308340106578],[11.426414015354851,47.52376618101306],[10.544504021861597,47.5663992376538],[10.402083774465325,47.30248769793916],[9.896068149463188,47.580196845075704],[9.594226108446376,47.5250580918202],[8.522611932009795,47.83082754169135],[8.317301466514095,47.61357982033627],[7.466759067422288,47.62058197691192],[7.593676385131062,48.33301911070373],[8.099278598674855,49.01778351500343],[6.658229607783709,49.20195831969164],[6.186320428094177,49.463802802114515],[6.242751092156993,49.90222565367873],[6.043073357781111,50.128051662794235],[6.156658155958779,50.80372101501058],[5.988658074577813,51.851615709025054],[6.589396599970826,51.852029120483394],[6.842869500362383,52.22844025329755],[7.092053256873896,53.14404328064489],[6.905139601274129,53.48216217713064],[7.100424838905268,53.69393219666267],[7.936239454793962,53.74829580343379],[8.121706170289485,53.52779246684429],[8.800734490604668,54.020785630908904],[8.572117954145368,54.39564647075405],[8.526229282270208,54.96274363872516],[9.282048780971136,54.83086538351631],[9.921906365609232,54.983104153048025]]]}},{"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","brk_group":null,"abbrev":"Den.","postal":"DK","formal_en":"Kingdom of Denmark","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Denmark","name_alt":null,"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,"fips_10":null,"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,"filename":"DNK.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.69000613775563,55.609990953180784],[12.089991082414741,54.80001455343793],[11.043543328504228,55.364863796604254],[10.903913608451631,55.77995473898875],[12.370904168353292,56.111407375708836],[12.69000613775563,55.609990953180784]]],[[[10.912181837618363,56.458621324277914],[10.667803989309988,56.08138336854722],[10.369992710011985,56.19000722922473],[9.649984978889307,55.469999498102055],[9.921906365609175,54.98310415304806],[9.282048780971136,54.83086538351616],[8.526229282270236,54.96274363872499],[8.120310906617588,55.517722683323626],[8.08997684086225,56.540011705137594],[8.256581658571264,56.8099693874303],[8.543437534223386,57.110002753316905],[9.42446902836761,57.17206614849948],[9.775558709358563,57.447940782289656],[10.580005730846153,57.73001658795485],[10.546105991262692,57.215732733786155],[10.250000034230226,56.89001618105047],[10.369992710011985,56.609981594460834],[10.912181837618363,56.458621324277914]]]]}},{"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","brk_group":null,"abbrev":"Est.","postal":"EST","formal_en":"Republic of Estonia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Estonia","name_alt":null,"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,"fips_10":null,"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,"filename":"EST.geojson"},"geometry":{"type":"Polygon","coordinates":[[[24.312862583114622,57.79342357037698],[24.42892785004216,58.38341339785328],[24.061198357853186,58.25737457949341],[23.42656009287668,58.612753404364625],[23.339795363058645,59.18724030215338],[24.604214308376182,59.46585378685502],[25.86418908051664,59.61109039981134],[26.949135776484525,59.445803331125774],[27.981114129353244,59.47538808861287],[28.13169925305175,59.30082510033092],[27.42016645682494,58.72458120384424],[27.71668582531572,57.79189911562437],[27.28818484875151,57.47452830670383],[26.463532342237787,57.47638865826633],[25.602809685984365,57.84752879498657],[25.16459354014927,57.97015696881519],[24.312862583114622,57.79342357037698]]]}},{"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","brk_group":null,"abbrev":"Sp.","postal":"E","formal_en":"Kingdom of Spain","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Spain","name_alt":null,"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,"fips_10":null,"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,"filename":"ESP.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-9.034817674180246,41.88057058365967],[-8.984433152695672,42.59277517350627],[-9.392883673530648,43.0266246608127],[-7.978189663108309,43.748337714200986],[-6.754491746436756,43.567909450853925],[-5.411886359061596,43.574239813809676],[-4.347842779955783,43.40344920508504],[-3.51753170410609,43.4559007838613],[-1.901351284177764,43.42280202897834],[-1.502770961910528,43.03401439063043],[0.338046909190581,42.57954600683954],[0.701590610363894,42.7957343613326],[1.826793247087153,42.34338471126569],[2.985998976258458,42.47301504166986],[3.039484083680549,41.892120266276905],[2.091841668312185,41.22608856868309],[0.810524529635188,41.01473196060934],[0.721331007499401,40.678318386389236],[0.106691521819869,40.12393362076202],[-0.278711310212941,39.30997813573272],[0.111290724293838,38.73851430923303],[-0.467123582349103,38.29236583104115],[-0.683389451490598,37.642353827457825],[-1.438382127274849,37.443063666324214],[-2.146452602538119,36.67414419203728],[-3.415780808923387,36.65889964451118],[-4.368900926114719,36.677839056946155],[-4.995219285492211,36.32470815687964],[-5.377159796561457,35.946850083961465],[-5.866432257500904,36.02981659600606],[-6.236693894872175,36.367677110330334],[-6.520190802425404,36.94291331638732],[-7.453725551778092,37.09778758396607],[-7.537105475281024,37.42890432387623],[-7.166507941099865,37.803894354802225],[-7.029281175148796,38.07576406508977],[-7.374092169616318,38.37305858006492],[-7.098036668313128,39.03007274022378],[-7.498632371439725,39.62957103124181],[-7.066591559263529,39.71189158788277],[-7.026413133156595,40.184524237624245],[-6.864019944679385,40.33087189387483],[-6.851126674822552,41.11108266861753],[-6.389087693700915,41.381815497394655],[-6.668605515967656,41.883386949219584],[-7.251308966490824,41.91834605566505],[-7.422512986673795,41.79207469335983],[-8.013174607769912,41.790886135417125],[-8.263856980817792,42.28046865495034],[-8.67194576662672,42.13468943945496],[-9.034817674180246,41.88057058365967]]]}},{"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","brk_group":null,"abbrev":"Fr.","postal":"F","formal_en":"French Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"France","name_alt":null,"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,"fips_10":null,"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,"filename":"FRA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-52.55642473001839,2.504705308437053],[-52.93965715189498,2.124857692875622],[-53.418465135295264,2.053389187016037],[-53.554839240113495,2.334896551925965],[-53.77852067728889,2.376702785650053],[-54.08806250671728,2.105556545414629],[-54.52475419779975,2.311848863123785],[-54.27122962097578,2.738747870286943],[-54.18428402364474,3.194172268075235],[-54.01150387227682,3.622569891774858],[-54.399542202356514,4.212611395683481],[-54.47863298197922,4.896755682795643],[-53.95804460307093,5.756548163267809],[-53.618452928264844,5.646529038918402],[-52.88214128275408,5.409850979021599],[-51.82334286152593,4.565768133966145],[-51.65779741067888,4.156232408053029],[-52.24933753112398,3.241094468596287],[-52.55642473001839,2.504705308437053]]],[[[9.560016310269134,42.15249197037957],[9.229752231491773,41.38000682226445],[8.77572309737536,41.58361196549444],[8.54421268070783,42.25651662858308],[8.746009148807588,42.62812185319396],[9.390000848028905,43.00998484961474],[9.560016310269134,42.15249197037957]]],[[[3.588184441755715,50.37899241800358],[4.28602298342514,49.907496649772554],[4.799221632515753,49.98537303323633],[5.674051954784885,49.52948354755745],[5.897759230176376,49.44266714130717],[6.186320428094206,49.46380280211446],[6.658229607783539,49.20195831969155],[8.099278598674772,49.01778351500337],[7.593676385131062,48.33301911070373],[7.46675906742223,47.620581976911865],[7.192202182655535,47.44976552997099],[6.736571079138088,47.54180125588289],[6.768713820023634,47.28770823830368],[6.037388950228972,46.72577871356191],[6.022609490593567,46.272989813820516],[6.500099724970454,46.42967275652944],[6.843592970414562,45.99114655210067],[6.802355177445662,45.70857982032867],[7.096652459347837,45.333098863295874],[6.749955275101711,45.02851797136759],[7.007562290076663,44.25476675066139],[7.549596388386163,44.12790110938482],[7.435184767291843,43.69384491634918],[6.529245232783068,43.12889232031836],[4.556962517931396,43.39965098731158],[3.10041059735272,43.075200507167125],[2.985998976258486,42.47301504166989],[1.826793247087181,42.34338471126566],[0.701590610363922,42.79573436133265],[0.338046909190581,42.579546006839564],[-1.502770961910471,43.03401439063049],[-1.901351284177735,43.42280202897834],[-1.384225226232957,44.02261037859017],[-1.193797573237362,46.014917710954876],[-2.225724249673789,47.06436269793821],[-2.963276129559574,47.570326646507965],[-4.491554938159481,47.95495433205642],[-4.592349819344747,48.68416046812695],[-3.295813971357745,48.901692409859635],[-1.616510789384932,48.644421291694584],[-1.933494025063254,49.776341864615766],[-0.98946895995536,49.347375800160876],[1.338761020522753,50.12717316344526],[1.6390010921385,50.946606350297515],[2.513573032246171,51.14850617126185],[2.658422071960331,50.79684804951566],[3.123251580425716,50.78036326761452],[3.588184441755715,50.37899241800358]]]]}},{"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","brk_group":null,"abbrev":"U.K.","postal":"GB","formal_en":"United Kingdom of Great Britain and Northern Ireland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"United Kingdom","name_alt":null,"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,"fips_10":null,"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,"filename":"GBR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-5.661948614921897,54.55460317648385],[-6.197884894220977,53.86756500916334],[-6.953730231137996,54.073702297575636],[-7.572167934591079,54.05995636658599],[-7.366030646178785,54.595840969452695],[-7.572167934591079,55.1316222194549],[-6.733847011736145,55.1728600124238],[-5.661948614921897,54.55460317648385]]],[[[-3.005004848635281,58.63500010846633],[-4.073828497728016,57.55302480735525],[-3.055001796877661,57.69001902936095],[-1.959280564776918,57.68479970969951],[-2.219988165689301,56.87001740175353],[-3.119003058271118,55.973793036515474],[-2.085009324543023,55.90999848085127],[-2.005675679673857,55.80490285035023],[-1.11499101399221,54.62498647726539],[-0.4304849918542,54.46437612570216],[0.184981316742039,53.32501414653103],[0.469976840831777,52.92999949809197],[1.681530795914739,52.739520168664],[1.559987827164377,52.09999848083601],[1.050561557630914,51.806760565795685],[1.449865349950301,51.28942780212196],[0.550333693045502,50.765738837275876],[-0.78751746255864,50.77498891865622],[-2.489997524414377,50.50001862243124],[-2.956273972984036,50.696879991247016],[-3.617448085942328,50.22835561787272],[-4.542507900399244,50.34183706318566],[-5.245023159191135,49.95999990498108],[-5.776566941745301,50.15967763935682],[-4.309989793301838,51.21000112568916],[-3.414850633142123,51.42600861266925],[-3.422719467108323,51.42684816740609],[-4.984367234710874,51.593466091510976],[-5.267295701508885,51.99140045837458],[-4.222346564134853,52.301355699261364],[-4.770013393564113,52.840004991255626],[-4.579999152026915,53.49500377055517],[-3.093830673788659,53.404547400669685],[-3.092079637047106,53.404440822963544],[-2.945008510744344,53.984999701546684],[-3.614700825433034,54.600936773292574],[-3.63000545898933,54.615012925833014],[-4.844169073903004,54.790971177786844],[-5.082526617849226,55.06160065369937],[-4.719112107756644,55.50847260194348],[-5.047980922862109,55.78398550070752],[-5.586397670911139,55.31114614523682],[-5.644998745130181,56.275014960344805],[-6.149980841486354,56.78500967063354],[-5.786824713555291,57.81884837506465],[-5.009998745127575,58.63001333275005],[-4.211494513353557,58.55084503847917],[-3.005004848635281,58.63500010846633]]]]}},{"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","brk_group":null,"abbrev":"Fin.","postal":"FIN","formal_en":"Republic of Finland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Finland","name_alt":null,"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,"fips_10":null,"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,"filename":"FIN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[28.591929559043194,69.06477692328666],[28.445943637818658,68.36461294216404],[29.977426385220607,67.69829702419266],[29.054588657352326,66.94428620062193],[30.21765,65.80598],[29.544429559046986,64.94867157659048],[30.44468468600371,64.20445343693909],[30.035872430142714,63.55281362573855],[31.51609215671112,62.86768748641288],[31.139991082490894,62.35769277612441],[30.211107212044446,61.78002777774969],[28.069997592895277,60.503516547275844],[26.25517296723697,60.4239606797625],[24.496623976344523,60.05731639265165],[22.869694858499457,59.846373196036225],[22.290763787533592,60.39192129174154],[21.322244093519316,60.72016998965952],[21.544866163832694,61.7053294948718],[21.05921105315369,62.60739329695874],[21.536029493910803,63.18973501245587],[22.442744174903993,63.81781037053129],[24.730511508897536,64.90234365504082],[25.398067661243942,65.11142650009373],[25.294043003040404,65.53434642197045],[23.903378533633802,66.00692739527962],[23.565879754335583,66.39605093043743],[23.53947309743444,67.93600861273525],[21.978534783626117,68.6168456081807],[20.645592889089528,69.10624726020087],[21.244936150810673,69.37044302029307],[22.356237827247412,68.84174144151491],[23.66204959483076,68.89124746365054],[24.735679152126725,68.64955678982146],[25.68921268077636,69.09211375596904],[26.17962202322624,69.82529897732614],[27.732292107867863,70.16419302029625],[29.01557295097197,69.76649119737799],[28.591929559043194,69.06477692328666]]]}},{"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","brk_group":null,"abbrev":"Greece","postal":"GR","formal_en":"Hellenic Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Greece","name_alt":null,"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,"fips_10":null,"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,"filename":"GRC.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.699980096133004,35.70500438083553],[24.24666507334868,35.368022365860156],[25.02501549652888,35.42499563246198],[25.769207797964185,35.35401805270908],[25.745023227651586,35.179997666966216],[26.290002882601723,35.29999034274792],[26.16499759288766,35.004995429009796],[24.724982130642303,34.91998769788961],[24.735007358506945,35.08499054619759],[23.51497846852811,35.27999156345098],[23.699980096133004,35.70500438083553]]],[[[26.604195590936282,41.562114569661105],[26.29460208507578,40.93626129817426],[26.056942172965506,40.824123440100834],[25.447677036244187,40.85254547786147],[24.92584842296094,40.94706167252323],[23.714811232200816,40.687129218095116],[24.407998894964066,40.1249929876241],[23.899967889102584,39.96200552017558],[23.3429993018608,39.96099782974579],[22.81398766448896,40.476005153966554],[22.62629886240478,40.25656118423919],[22.849747755634805,39.65931081802577],[23.3500272966526,39.19001129816726],[22.973099399515547,38.97090322524966],[23.530016310324953,38.51000112563847],[24.025024855248944,38.21999298761645],[24.040011020613605,37.655014553369426],[23.115002882589152,37.92001129816222],[23.409971958111072,37.409990749657396],[22.774971958108633,37.30501007745656],[23.15422529469862,36.422505804992056],[22.490028110451107,36.41000010837746],[21.670026482843696,36.8449864771942],[21.295010613701574,37.644989325504696],[21.120034213961333,38.31032339126273],[20.730032179454582,38.769985256498785],[20.217712029712857,39.340234686839636],[20.15001590341052,39.62499766698403],[20.615000441172782,40.11000682225943],[20.674996779063633,40.434999904943055],[20.99998986174728,40.58000397395397],[21.02004031747643,40.84272695572588],[21.674160597426976,40.93127452245798],[22.05537763844427,41.14986583105269],[22.597308383889015,41.130487168943205],[22.76177,41.3048],[22.952377150166566,41.33799388281122],[23.692073601992462,41.30908091894386],[24.49264489105803,41.58389618587205],[25.197201368925533,41.23448598893066],[26.106138136507184,41.32889883072784],[26.117041863720914,41.82690460872473],[26.604195590936282,41.562114569661105]]]]}},{"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","brk_group":null,"abbrev":"Cro.","postal":"HR","formal_en":"Republic of Croatia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Croatia","name_alt":null,"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,"fips_10":null,"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,"filename":"HRV.geojson"},"geometry":{"type":"Polygon","coordinates":[[[18.829838087650046,45.908877671891844],[19.072768995854176,45.52151113543209],[19.39047570158459,45.236515611342384],[19.00548628101012,44.86023366960916],[18.553214145591653,45.08158966733145],[17.861783481526402,45.067740383477144],[17.002146030351014,45.233776760430935],[16.534939406000206,45.21160757097772],[16.318156772535872,45.00412669532591],[15.959367303133376,45.233776760430935],[15.750026075918981,44.81871165626256],[16.23966027188453,44.35114329688571],[16.456442905348865,44.04123973243128],[16.91615644701733,43.66772247982567],[17.297373488034452,43.44634064388736],[17.674921502358984,43.02856252702361],[18.56,42.65],[18.450016310304818,42.47999136002932],[17.509970330483327,42.849994615239154],[16.930005730871642,43.20999848080038],[16.015384555737683,43.50721548112722],[15.174453973052096,44.243191229827914],[15.376250441151795,44.31791535092208],[14.920309279040508,44.73848399512946],[14.901602410550877,45.07606028907611],[14.258747592839995,45.233776760430935],[13.952254672917034,44.80212352149687],[13.656975538801191,45.13693512631596],[13.67940311041582,45.48414907488501],[13.715059848697251,45.500323798192426],[14.4119682145855,45.46616567644742],[14.595109490627918,45.63494090431282],[14.935243767972963,45.471695054702764],[15.327674594797427,45.452316392593325],[15.323953891672431,45.731782538427694],[15.671529575267641,45.8341535507979],[15.768732944408612,46.23810822202353],[16.564808383864943,46.50375092221981],[16.882515089595415,46.38063182228444],[17.630066359129557,45.9517691106941],[18.45606245288286,45.75948110613615],[18.829838087650046,45.908877671891844]]]}},{"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","brk_group":null,"abbrev":"Hun.","postal":"HU","formal_en":"Republic of Hungary","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Hungary","name_alt":null,"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,"fips_10":null,"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,"filename":"HUN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[16.202298211337364,46.85238597267696],[16.534267612380376,47.49617096616912],[16.340584344150415,47.71290192320123],[16.90375410326726,47.71486562762833],[16.979666782304037,48.123497015976305],[17.48847293464982,47.86746613218621],[17.857132602620027,47.758428860050365],[18.696512892336926,47.880953681014404],[18.77702477384767,48.081768296900634],[19.17436486173989,48.11137889260387],[19.661363559658497,48.26661489520866],[19.769470656013112,48.202691148463614],[20.239054396249347,48.32756724709692],[20.473562045989866,48.56285004332181],[20.801293979584926,48.623854071642384],[21.872236362401736,48.31997081155002],[22.08560835133485,48.42226430927179],[22.640819939878753,48.15023956968735],[22.710531447040495,47.88219391538941],[22.099767693782834,47.6724392767167],[21.62651492685387,46.99423777931816],[21.02195234547125,46.3160879583519],[20.220192498462836,46.127468980486555],[19.596044549241583,46.17172984474454],[18.82983808764996,45.90887767189193],[18.45606245288286,45.759481106136136],[17.630066359129557,45.95176911069419],[16.8825150895953,46.38063182228444],[16.564808383864857,46.50375092221983],[16.370504998447416,46.8413272161665],[16.202298211337364,46.85238597267696]]]}},{"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","brk_group":null,"abbrev":"Italy","postal":"I","formal_en":"Italian Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Italy","name_alt":null,"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,"fips_10":null,"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,"filename":"ITA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[15.520376010813834,38.23115509699147],[15.160242954171736,37.44404551853782],[15.309897902089006,37.1342194687318],[15.099988234119449,36.6199872909954],[14.335228712632016,36.996630967754754],[13.826732618879928,37.10453135838019],[12.431003859108813,37.61294993748381],[12.570943637755136,38.12638113051968],[13.741156447004585,38.03496552179536],[14.76124922044616,38.143873602850505],[15.520376010813834,38.23115509699147]]],[[[9.210011834356266,41.20999136002422],[9.809975213264977,40.5000088567661],[9.669518670295673,39.177376410471794],[9.21481774255949,39.240473334300134],[8.80693566247973,38.90661774347847],[8.428302443077115,39.17184703221662],[8.38825320805094,40.378310858718805],[8.15999840661766,40.95000722916379],[8.709990675500109,40.89998444270523],[9.210011834356266,41.20999136002422]]],[[[12.376485223040843,46.76755910906987],[13.806475457421556,46.50930613869119],[13.698109978905478,46.016778062517375],[13.937630242578335,45.591015936864665],[13.141606479554298,45.73669179949541],[12.328581170306306,45.38177806251485],[12.383874952858605,44.88537425391908],[12.261453484759159,44.600482082694015],[12.589237094786483,44.091365871754476],[13.526905958722494,43.5877273626379],[14.029820997787027,42.76100779883248],[15.142569614327956,41.955139675456905],[15.926191033601896,41.96131500911574],[16.169897088290412,41.74029490820342],[15.889345737377797,41.5410822617182],[16.785001661860576,41.179605617836586],[17.519168735431208,40.87714345963224],[18.376687452882575,40.35562490494266],[18.4802470231954,40.168866278639825],[18.293385044028096,39.81077444107325],[17.738380161213286,40.2776710068303],[16.869595981522338,40.44223460546385],[16.448743116937322,39.79540070246648],[17.1714896989715,39.42469981542072],[17.05284061042934,38.9028712021373],[16.635088331781844,38.8435724960824],[16.100960727613057,37.98589874933418],[15.684086948314501,37.90884918878703],[15.687962680736321,38.214592800441864],[15.891981235424707,38.750942491199226],[16.109332309644312,38.96454702407769],[15.718813510814641,39.544072374014945],[15.413612501698822,40.04835683853517],[14.998495721098237,40.17294871679093],[14.70326826341477,40.604550279292624],[14.060671827865264,40.78634796809544],[13.627985060285397,41.188287258461656],[12.88808190273042,41.25308950455562],[12.10668257004491,41.70453481705741],[11.191906365614187,42.35542531998967],[10.511947869517797,42.931462510747224],[10.200028924204048,43.920006822274615],[9.702488234097814,44.03627879493132],[8.88894616052687,44.36633616797954],[8.428560825238577,44.23122813575242],[7.850766635783201,43.76714793555524],[7.435184767291843,43.69384491634918],[7.549596388386163,44.12790110938482],[7.007562290076663,44.25476675066139],[6.749955275101711,45.02851797136759],[7.096652459347837,45.333098863295874],[6.802355177445662,45.70857982032867],[6.843592970414562,45.99114655210067],[7.273850945676685,45.77694774025076],[7.755992058959833,45.82449005795928],[8.31662967289438,46.163642483090854],[8.489952426801295,46.00515086525175],[8.966305779667834,46.036931871111165],[9.182881707403112,46.44021474871698],[9.922836541390353,46.31489940040919],[10.363378126678668,46.483571275409844],[10.442701450246602,46.893546250997446],[11.048555942436508,46.7513585475464],[11.164827915093326,46.94157949481274],[12.153088006243081,47.11539317482644],[12.376485223040843,46.76755910906987]]]]}},{"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","brk_group":null,"abbrev":"Iceland","postal":"IS","formal_en":"Republic of Iceland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Iceland","name_alt":null,"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,"fips_10":null,"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,"filename":"ISL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-14.508695441129236,66.45589223903141],[-14.739637417041605,65.8087482774403],[-13.60973222497981,65.12667104761987],[-14.909833746794902,64.36408193628868],[-17.794438035543422,63.67874909123385],[-18.656245896874992,63.49638296167582],[-19.97275468594276,63.64363495549153],[-22.762971971110158,63.960178941495386],[-21.778484259517683,64.40211579045551],[-23.95504391121911,64.89112986923348],[-22.184402635170358,65.0849681667603],[-22.227423265053332,65.37859365504272],[-24.326184047939336,65.61118927678847],[-23.65051469572309,66.26251902939522],[-22.134922451250883,66.41046865504687],[-20.57628373867955,65.73211212835143],[-19.05684160000159,66.27660085719477],[-17.79862382655905,65.99385325790978],[-16.167818976292125,66.52679230413587],[-14.508695441129236,66.45589223903141]]]}},{"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","brk_group":null,"abbrev":"Ire.","postal":"IRL","formal_en":"Ireland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ireland","name_alt":null,"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,"fips_10":null,"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,"filename":"IRL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-6.197884894220991,53.86756500916336],[-6.03298539877761,53.15316417094435],[-6.788856573910849,52.260117906292336],[-8.56161658368356,51.669301255899356],[-9.977085740590269,51.82045482035307],[-9.16628251793078,52.86462881124268],[-9.688524542672454,53.8813626165853],[-8.327987433292009,54.66451894796863],[-7.572167934591064,55.13162221945487],[-7.366030646178785,54.59584096945272],[-7.572167934591064,54.059956366586],[-6.953730231138067,54.073702297575636],[-6.197884894220991,53.86756500916336]]]}},{"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","brk_group":null,"abbrev":"Lith.","postal":"LT","formal_en":"Republic of Lithuania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lithuania","name_alt":null,"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,"fips_10":null,"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,"filename":"LTU.geojson"},"geometry":{"type":"Polygon","coordinates":[[[22.731098667092652,54.327536932993326],[22.65105187347254,54.582740993866736],[22.75776370615526,54.85657440858138],[22.315723504330577,55.015298570365864],[21.268448927503467,55.190481675835315],[21.055800408622414,56.03107636171106],[22.201156853939494,56.33780182557948],[23.878263787539964,56.273671373105266],[24.860684441840757,56.37252838807963],[25.000934279080894,56.16453074810484],[25.533046502390334,56.10029694276603],[26.494331495883753,55.615106919977634],[26.58827924979039,55.16717560487167],[25.7684326514798,54.84696259217509],[25.536353794056993,54.28242340760253],[24.450683628037037,53.905702216194754],[23.48412763844985,53.91249766704114],[23.24398725758951,54.22056671814914],[22.731098667092652,54.327536932993326]]]}},{"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","brk_group":null,"abbrev":"Lux.","postal":"L","formal_en":"Grand Duchy of Luxembourg","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Luxembourg","name_alt":null,"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,"fips_10":null,"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,"filename":"LUX.geojson"},"geometry":{"type":"Polygon","coordinates":[[[6.043073357781111,50.128051662794235],[6.242751092156993,49.90222565367873],[6.186320428094177,49.463802802114515],[5.897759230176405,49.44266714130703],[5.674051954784829,49.529483547557504],[5.782417433300906,50.09032786722122],[6.043073357781111,50.128051662794235]]]}},{"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","brk_group":null,"abbrev":"Lat.","postal":"LV","formal_en":"Republic of Latvia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Latvia","name_alt":null,"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,"fips_10":null,"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,"filename":"LVA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[21.055800408622414,56.03107636171106],[21.09042361825797,56.78387278912293],[21.581866489353672,57.41187063254993],[22.524341261492875,57.75337433535076],[23.318452996522097,57.00623647727487],[24.12072960785343,57.02569265403277],[24.312862583114622,57.79342357037698],[25.16459354014927,57.97015696881519],[25.602809685984365,57.84752879498657],[26.463532342237787,57.47638865826633],[27.28818484875151,57.47452830670383],[27.77001590344093,57.24425812441123],[27.855282016722526,56.75932648378429],[28.176709425577993,56.16912995057881],[27.10245975109453,55.783313707087686],[26.494331495883753,55.615106919977634],[25.533046502390334,56.10029694276603],[25.000934279080894,56.16453074810484],[24.860684441840757,56.37252838807963],[23.878263787539964,56.273671373105266],[22.201156853939494,56.33780182557948],[21.055800408622414,56.03107636171106]]]}},{"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","brk_group":null,"abbrev":"Mda.","postal":"MD","formal_en":"Republic of Moldova","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Moldova","name_alt":null,"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,"fips_10":null,"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,"filename":"MDA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[26.619336785597795,48.22072622333347],[26.857823520624805,48.368210761094495],[27.522537469195154,48.467119452501116],[28.259546746541844,48.15556224221342],[28.670891147585163,48.1181485052341],[29.12269819511303,47.84909516050646],[29.05086795422733,47.51022695575249],[29.41513512545274,47.34664520933257],[29.559674106573112,46.928582872091326],[29.908851759569302,46.67436066343146],[29.838210076626297,46.52532583270169],[30.02465864433537,46.42393667254503],[29.75997195813639,46.34998769793536],[29.170653924279886,46.3792623968287],[29.072106967899295,46.517677720722496],[28.862972446414062,46.43788930926383],[28.93371748222162,46.2588304713725],[28.659987420371575,45.93998688413164],[28.485269402792767,45.5969070501459],[28.233553501099042,45.48828318946837],[28.0544429867754,45.944586086605625],[28.160017937947714,46.37156260841722],[28.128030226359044,46.810476386088254],[27.551166212684848,47.40511709247083],[27.233872918412743,47.82677094175638],[26.924176059687568,48.123264472030996],[26.619336785597795,48.22072622333347]]]}},{"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","brk_group":null,"abbrev":"Mont.","postal":"ME","formal_en":"Montenegro","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Montenegro","name_alt":null,"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,"fips_10":null,"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,"filename":"MNE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[19.801613396898688,42.50009349219084],[19.738051385179627,42.688247382165564],[19.3044900000001,42.19574],[19.37177000000014,41.87755],[19.16246,41.95502],[18.88214,42.28151],[18.45,42.48],[18.56,42.65],[18.70648,43.20011],[19.03165,43.43253],[19.21852,43.52384],[19.48389,43.35229],[19.63,43.21377997027054],[19.95857,43.10604],[20.3398,42.89852],[20.25758,42.81275000000011],[20.0707,42.58863],[19.801613396898688,42.50009349219084]]]}},{"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","brk_group":null,"abbrev":"Kos.","postal":"KO","formal_en":"Republic of Kosovo","formal_fr":null,"note_adm0":null,"note_brk":"Self admin.; Claimed by Serbia","name_sort":"Kosovo","name_alt":null,"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,"fips_10":null,"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,"filename":"KOS.geojson"},"geometry":{"type":"Polygon","coordinates":[[[20.76216,42.05186],[20.71731000000011,41.84711],[20.59023,41.85541],[20.52295,42.21787],[20.28374,42.3202500000001],[20.0707,42.58863],[20.25758,42.81275000000011],[20.49679,42.88469],[20.63508,43.21671],[20.81448,43.27205],[20.95651,43.13094],[21.143395,43.06868500000012],[21.27421,42.90959],[21.43866,42.86255],[21.63302,42.67717],[21.77505,42.6827],[21.66292,42.43922],[21.54332,42.3202500000001],[21.57663598940212,42.24522439706186],[21.35270000000014,42.2068],[20.76216,42.05186]]]}},{"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","brk_group":null,"abbrev":"Neth.","postal":"NL","formal_en":"Kingdom of the Netherlands","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Netherlands","name_alt":null,"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,"fips_10":null,"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,"filename":"NLD.geojson"},"geometry":{"type":"Polygon","coordinates":[[[6.074182570020923,53.510403347378144],[6.905139601274129,53.48216217713064],[7.092053256873896,53.14404328064489],[6.842869500362383,52.22844025329755],[6.589396599970826,51.852029120483394],[5.988658074577813,51.851615709025054],[6.156658155958779,50.80372101501058],[5.606975945670001,51.037298488969775],[4.973991326526914,51.475023708698124],[4.047071160507527,51.26725861266857],[3.314971144228537,51.34575511331991],[3.830288527043137,51.62054454203195],[4.705997348661185,53.09179840759776],[6.074182570020923,53.510403347378144]]]}},{"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","brk_group":null,"abbrev":"Mkd.","postal":"MK","formal_en":"Former Yugoslav Republic of Macedonia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Macedonia, FYR","name_alt":null,"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,"fips_10":null,"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,"filename":"MKD.geojson"},"geometry":{"type":"Polygon","coordinates":[[[20.59023,41.85541],[20.71731000000011,41.84711],[20.76216,42.05186],[21.35270000000014,42.2068],[21.57663598940212,42.24522439706186],[21.917080000000112,42.30364],[22.38052575042468,42.32025950781508],[22.881373732197346,41.999297186850356],[22.952377150166512,41.33799388281119],[22.76177,41.3048],[22.597308383889015,41.130487168943205],[22.05537763844427,41.14986583105269],[21.674160597426976,40.93127452245795],[21.0200403174764,40.84272695572588],[20.60518,41.08622],[20.46315,41.5150900000001],[20.59023,41.85541]]]}},{"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","brk_group":null,"abbrev":"Pol.","postal":"PL","formal_en":"Republic of Poland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Poland","name_alt":null,"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,"fips_10":null,"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,"filename":"POL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[15.01699588385867,51.10667409932158],[14.607098422919535,51.745188096719964],[14.685026482815688,52.0899474147552],[14.4375997250022,52.62485016540838],[14.074521111719491,52.98126251892543],[14.353315463934138,53.24817129171297],[14.119686313542587,53.75702912049103],[14.802900424873458,54.05070628520575],[16.36347700365573,54.513158677785725],[17.622831658608675,54.85153595643291],[18.62085859546164,54.68260569927078],[18.696254510175464,54.43871877706929],[19.660640089606403,54.42608388937393],[20.892244500418624,54.31252492941253],[22.731098667092652,54.327536932993326],[23.24398725758951,54.22056671814914],[23.48412763844985,53.91249766704114],[23.527535841575002,53.470121568406555],[23.80493493011778,53.089731350306074],[23.799198846133375,52.69109935160657],[23.199493849386187,52.486977444053664],[23.508002150168693,52.02364655212473],[23.52707075368437,51.57845408793023],[24.029985792748903,50.70540660257518],[23.922757195743262,50.42488108987875],[23.426508416444392,50.30850576435745],[22.518450148211603,49.47677358661974],[22.776418898212626,49.02739533140962],[22.558137648211755,49.085738023467144],[21.607808058364213,49.47010732685409],[20.887955356538413,49.32877228453583],[20.41583947111985,49.43145335549977],[19.825022820726872,49.21712535256923],[19.320712517990472,49.571574001659194],[18.909574822676316,49.435845852244576],[18.853144158613617,49.49622976337764],[18.392913852622172,49.98862864847075],[17.64944502123899,50.049038397819956],[17.55456709155112,50.36214590107641],[16.868769158605655,50.47397370055603],[16.719475945714436,50.21574656839354],[16.176253289462267,50.42260732685791],[16.23862674323857,50.69773265237984],[15.490972120839727,50.78472992614321],[15.01699588385867,51.10667409932158]]]}},{"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","brk_group":null,"abbrev":"Rom.","postal":"RO","formal_en":"Romania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Romania","name_alt":null,"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,"fips_10":null,"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,"filename":"ROU.geojson"},"geometry":{"type":"Polygon","coordinates":[[[22.710531447040495,47.88219391538941],[23.142236362406802,48.09634105080695],[23.76095828623741,47.985598456405455],[24.40205610525038,47.98187775328042],[24.866317172960578,47.73752574318831],[25.20774336111299,47.89105642352747],[25.9459411964024,47.987148749374214],[26.19745039236693,48.22088125263035],[26.619336785597795,48.22072622333347],[26.924176059687568,48.123264472030996],[27.233872918412743,47.82677094175638],[27.551166212684848,47.40511709247083],[28.128030226359044,46.810476386088254],[28.160017937947714,46.37156260841722],[28.0544429867754,45.944586086605625],[28.233553501099042,45.48828318946837],[28.679779493939378,45.304030870131704],[29.149724969201653,45.46492544207245],[29.603289015427432,45.293308010431126],[29.626543409958767,45.03539093686239],[29.141611769331835,44.82021027279904],[28.837857700320203,44.913873806328056],[28.558081495891997,43.70746165625813],[27.970107049275075,43.81246816667521],[27.242399529740908,44.175986029632405],[26.065158725699746,43.94349376075126],[25.569271681426926,43.68844472917472],[24.100679152124172,43.74105133724785],[23.33230228037632,43.89701080990471],[22.944832391051847,43.82378530534713],[22.65714969248299,44.23492300066128],[22.4740084164406,44.40922760678177],[22.705725538837356,44.57800283464702],[22.459022251075936,44.7025171982543],[22.14508792490281,44.47842234962059],[21.562022739353605,44.7689472519655],[21.483526238702233,45.18117015235778],[20.874312778413355,45.416375433934235],[20.762174920339987,45.734573065771436],[20.220192498462836,46.127468980486555],[21.02195234547125,46.3160879583519],[21.62651492685387,46.99423777931816],[22.099767693782834,47.6724392767167],[22.710531447040495,47.88219391538941]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Russia","sov_a3":"RUS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Russia","adm0_a3":"RUS","geou_dif":0,"geounit":"Russia","gu_a3":"RUS","su_dif":0,"subunit":"Russia","su_a3":"RUS","brk_diff":0,"name":"Russia","name_long":"Russian Federation","brk_a3":"RUS","brk_name":"Russia","brk_group":null,"abbrev":"Rus.","postal":"RUS","formal_en":"Russian Federation","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Russian Federation","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":7,"mapcolor13":7,"pop_est":140041247,"gdp_md_est":2266000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"RU","iso_a3":"RUS","iso_n3":"643","un_a3":"643","wb_a2":"RU","wb_a3":"RUS","woe_id":-99,"adm0_a3_is":"RUS","adm0_a3_us":"RUS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":18,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"RUS.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[143.64800744036287,50.74760040954151],[144.65414757708564,48.976390692737596],[143.17392785051723,49.30655141865037],[142.5586682476501,47.861575018904915],[143.53349246640406,46.83672801369249],[143.5052771343726,46.13790761980948],[142.74770063697392,46.74076487892657],[142.0920300640545,45.96675527605879],[141.90692508358504,46.80592886004655],[142.0184428244709,47.780132961612935],[141.90444461483506,48.85918854429956],[142.13580000220568,49.61516307229746],[142.1799833518153,50.95234243428192],[141.59407596249002,51.93543488220254],[141.68254601457366,53.30196645772878],[142.60693403541075,53.762145087287905],[142.2097489768154,54.22547597921687],[142.654786411713,54.36588084575388],[142.91461551327657,53.704577541714734],[143.26084760963207,52.74076040303905],[143.23526777564766,51.75666026468875],[143.64800744036287,50.74760040954151]]],[[[22.731098667092652,54.327536932993326],[20.892244500418652,54.312524929412575],[19.660640089606403,54.426083889373984],[19.888481479581344,54.8661603867715],[21.2684489275035,55.19048167583528],[22.315723504330606,55.0152985703659],[22.757763706155288,54.85657440858142],[22.651051873472568,54.58274099386671],[22.731098667092652,54.327536932993326]]],[[[-175.01425,66.58435],[-174.33983,66.33556],[-174.57182,67.06219],[-171.85731,66.91308],[-169.89958,65.97724],[-170.89107,65.54139],[-172.53025,65.43791],[-172.555,64.46079],[-172.95533,64.25269],[-173.89184,64.2826],[-174.65392,64.63125],[-175.98353,64.92288],[-176.20716,65.35667],[-177.22266,65.52024],[-178.35993,65.39052],[-178.90332,65.74044],[-178.68611,66.11211],[-179.88377,65.87456],[-179.43268,65.40411],[-180,64.97970870219837],[-180,68.96363636363635],[-177.55,68.2],[-174.92825,67.20589],[-175.01425,66.58435]]],[[[180.00000000000014,70.83219920854668],[178.9034250000001,70.78114],[178.7253,71.0988],[180.00000000000014,71.51571433642826],[180.00000000000014,70.83219920854668]]],[[[-178.69378,70.89302],[-180,70.83219920854668],[-180,71.51571433642826],[-179.871875,71.55762],[-179.02433,71.55553],[-177.577945,71.26948],[-177.663575,71.13277],[-178.69378,70.89302]]],[[[143.60385,73.21244],[142.08763,73.20544],[140.038155,73.31692],[139.86312,73.36983],[140.81171,73.76506],[142.06207,73.85758],[143.48283,73.47525],[143.60385,73.21244]]],[[[150.73167,75.08406],[149.575925,74.68892],[147.977465,74.778355],[146.11919,75.17298],[146.358485,75.49682],[148.22223,75.345845],[150.73167,75.08406]]],[[[145.086285,75.562625],[144.3,74.82],[140.61381,74.84768],[138.95544,74.61148],[136.97439,75.26167],[137.51176,75.94917],[138.831075,76.13676],[141.471615,76.09289],[145.086285,75.562625]]],[[[57.5356925799924,70.72046397570216],[56.94497928246395,70.63274323188668],[53.6773751157842,70.76265778266847],[53.41201663596539,71.2066616889202],[51.60189456564572,71.47475901965049],[51.45575361512422,72.01488108996514],[52.47827518088357,72.22944163684096],[52.444168735570855,72.77473135038485],[54.42761355979766,73.62754751249759],[53.50828982932515,73.74981395130015],[55.90245893740766,74.62748647734533],[55.631932814359715,75.08141225859717],[57.86864383324885,75.60939036732321],[61.170044386647504,76.25188345000814],[64.49836836127022,76.43905548776928],[66.2109770038551,76.80978221303124],[68.15705976753483,76.93969676381292],[68.85221113472512,76.54481130645462],[68.18057254422766,76.23364166940911],[64.637326287703,75.73775462513623],[61.58350752141476,75.2608845079468],[58.47708214705338,74.30905630156283],[56.98678551618801,73.33304352486624],[55.419335971910954,72.37126760526598],[55.622837762276305,71.54059479439033],[57.5356925799924,70.72046397570216]]],[[[106.97013000000013,76.97419],[107.24000000000015,76.48],[108.1538,76.72335000000015],[111.07726000000017,76.71],[113.33151,76.22224],[114.13417,75.84764],[113.88539,75.32779000000014],[112.77918,75.03186],[110.1512500000002,74.47673],[109.4,74.18],[110.64,74.04],[112.11919,73.78774000000011],[113.01954000000026,73.97693000000015],[113.52958000000032,73.33505000000011],[113.96881,73.59488],[115.56782,73.75285],[118.77633000000023,73.58772],[119.02,73.12],[123.20066000000011,72.97122],[123.25777000000018,73.73503000000011],[125.38000000000018,73.56],[126.97644,73.56549],[128.59126,73.03871],[129.05157,72.39872],[128.46000000000012,71.98],[129.7159900000002,71.19304],[131.28858000000028,70.78699000000012],[132.25350000000017,71.83630000000011],[133.85766000000032,71.38642000000016],[135.56193,71.65525000000014],[137.49755,71.34763],[138.23409000000018,71.62803],[139.86983000000012,71.48783000000014],[139.14791,72.4161900000001],[140.46817,72.84941000000013],[149.5,72.2],[150.3511800000002,71.60643],[152.96890000000022,70.84222],[157.00688,71.03141],[158.99779,70.86672],[159.83031000000025,70.45324],[159.70866,69.72198],[160.94053000000034,69.4372800000001],[162.27907000000013,69.64204],[164.05248000000014,69.66823],[165.94037000000023,69.47199],[167.83567,69.58269],[169.5776300000002,68.6938],[170.81688000000028,69.01363],[170.0082000000002,69.65276],[170.4534500000003,70.09703],[173.64391000000026,69.81743],[175.72403000000023,69.87725000000023],[178.6,69.4],[180.00000000000014,68.96363636363657],[180.00000000000014,64.97970870219848],[179.99281,64.97433],[178.70720000000026,64.53493],[177.41128000000018,64.60821],[178.31300000000024,64.07593],[178.9082500000002,63.251970000000135],[179.37034,62.982620000000104],[179.48636,62.56894],[179.22825000000014,62.30410000000015],[177.3643,62.5219],[174.56929000000022,61.76915],[173.68013,61.65261],[172.15,60.95],[170.6985000000001,60.33618],[170.3308500000003,59.88177],[168.90046,60.57355],[166.29498000000032,59.788550000000214],[165.84000000000023,60.16],[164.87674,59.7316],[163.53929000000014,59.86871],[163.21711000000025,59.21101],[162.0173300000001,58.24328],[162.05297,57.83912],[163.19191,57.61503000000011],[163.05794000000017,56.159240000000125],[162.12958000000023,56.12219],[161.70146,55.285680000000156],[162.11749000000017,54.85514],[160.36877000000032,54.34433],[160.02173000000022,53.20257],[158.5309400000002,52.958680000000236],[158.23118,51.94269],[156.7897900000003,51.01105],[156.42000000000016,51.7],[155.99182,53.15895],[155.43366000000012,55.38103000000012],[155.91442000000032,56.767920000000146],[156.75815,57.3647],[156.8103500000001,57.83204],[158.3643300000002,58.05575],[160.15064000000012,59.31477000000012],[161.87204,60.34300000000013],[163.66969,61.1409],[164.47355000000013,62.55061],[163.2584200000002,62.46627],[162.65791,61.6425],[160.1214800000001,60.54423],[159.30232,61.77396],[156.7206800000001,61.43442],[154.21806000000035,59.75818000000013],[155.04375,59.14495],[152.81185,58.88385],[151.26573000000025,58.78089],[151.33815000000013,59.50396],[149.78371,59.65573000000014],[148.54481,59.16448],[145.48722,59.33637],[142.19782000000018,59.03998],[138.95848000000032,57.08805],[135.12619,54.72959],[136.70171,54.603550000000126],[137.19342,53.97732],[138.1647,53.755010000000254],[138.80463,54.25455000000011],[139.90151,54.18968000000018],[141.34531,53.08957000000012],[141.37923,52.23877],[140.5974200000002,51.2396700000001],[140.51308,50.04553000000013],[140.06193000000022,48.44671000000017],[138.5547200000002,46.99965],[138.21971,46.30795],[136.86232,45.14350000000019],[135.5153500000002,43.989],[134.86939000000027,43.39821],[133.53687000000028,42.81147],[132.90627000000015,42.79849],[132.27807000000027,43.28456000000011],[130.93587000000014,42.55274],[130.78,42.22000000000019],[130.64000000000019,42.395],[130.6338664084098,42.90301463477056],[131.144687941615,42.92998973242695],[131.28855512911562,44.111519680348266],[131.02519000000026,44.96796],[131.8834542176596,45.32116160743652],[133.09712000000022,45.14409],[133.7696439963132,46.116926988299156],[134.1123500000002,47.21248000000014],[134.50081,47.578450000000146],[135.0263114767868,48.47822988544391],[133.37359581922803,48.18344167743484],[132.50669000000013,47.78896],[130.98726000000013,47.79013],[130.58229332898267,48.729687404976204],[129.3978178244205,49.440600084015614],[127.65740000000038,49.76027],[127.28745568248493,50.73979726826545],[126.93915652883786,51.3538941514059],[126.56439904185699,51.7842554795327],[125.94634891164647,52.79279857035695],[125.06821129771045,53.161044826868924],[123.57147,53.4588],[122.24574791879307,53.43172597921369],[121.00308475147037,53.25140106873124],[120.1770886577169,52.75388621684121],[120.725789015792,52.51622630473091],[120.7382,51.96411],[120.18208000000018,51.64355],[119.27939,50.58292],[119.28846072802585,50.14288279886196],[117.8792444194265,49.51098338479704],[116.67880089728621,49.888531399121405],[115.48569542853144,49.80517731383475],[114.96210981655038,50.14024730081513],[114.36245649623534,50.248302720737485],[112.89773969935439,49.54356537535699],[111.58123091028668,49.37796824807767],[110.66201053267886,49.13012807880585],[109.40244917199672,49.29296051695769],[108.47516727095127,49.28254771585071],[107.86817589725112,49.79370514586588],[106.88880415245532,50.27429596618029],[105.8865914245869,50.406019192092174],[104.62158,50.275320000000164],[103.67654544476036,50.089966132195144],[102.25589000000011,50.51056000000011],[102.06521,51.25991],[100.88948042196265,51.51685578063842],[99.98173221232356,51.63400625264395],[98.8614905131005,52.04736603454671],[97.82573978067452,51.01099518493325],[98.23176150919173,50.42240062112873],[97.25976000000023,49.72605],[95.81402000000017,49.977460000000114],[94.81594933469879,50.01343333597088],[94.14756635943561,50.48053660745716],[93.10421,50.49529],[92.23471154171969,50.80217072204175],[90.71366743364078,50.331811835321105],[88.80556684769559,49.47052073831247],[87.75126427607685,49.29719798440556],[87.35997033076269,49.21498078062916],[86.82935672398966,49.82667470966813],[85.5412699726825,49.69285858824816],[85.11555952346211,50.11730296487763],[84.41637739455304,50.311399644565824],[83.93511478061893,50.88924551045358],[83.38300377801247,51.069182847693895],[81.94598554883994,50.81219594990633],[80.56844689323546,51.38833649352844],[80.03555952344172,50.864750881547224],[77.80091556184433,53.40441498474754],[76.52517947785478,54.177003485727134],[76.89110029491346,54.49052440044193],[74.38482000000013,53.54685000000011],[73.42567874542053,53.489810289109755],[73.50851606638437,54.035616766976595],[72.22415001820221,54.37665538188679],[71.1801310566095,54.133285224008254],[70.86526655465516,55.169733588270105],[69.06816694527289,55.3852501491435],[68.1691003762589,54.97039175070438],[65.6668700000001,54.601250000000164],[65.17853356309595,54.35422781027208],[61.43660000000013,54.00625],[60.97806644068325,53.66499339457914],[61.699986199800634,52.97999644633427],[60.739993117114544,52.71998647725775],[60.92726850774025,52.447548326215006],[59.96753380721557,51.960420437215674],[61.58800337102414,51.272658799843185],[61.33742435084101,50.79907013610426],[59.93280724471557,50.842194118851836],[59.64228234237057,50.545442206415714],[58.36332000000013,51.06364],[56.77798,51.04355],[55.71694000000011,50.62171000000015],[54.532878452376195,51.02623973245937],[52.32872358583106,51.718652248738096],[50.76664839051219,51.69276235615987],[48.702381626181044,50.60512848571284],[48.577841424357615,49.874759629915644],[47.549480421749394,50.454698391311126],[46.75159630716277,49.35600576435374],[47.0436715024766,49.152038886097586],[46.46644575377629,48.39415233010493],[47.31524000000016,47.71585],[48.05725,47.74377],[48.694733514201886,47.0756281601779],[48.593250000000154,46.561040000000105],[49.101160000000135,46.39933],[48.64541000000011,45.80629],[47.67591,45.64149000000012],[46.68201,44.6092000000001],[47.59094,43.66016000000013],[47.49252,42.98658],[48.58437000000018,41.80888],[47.98728315612604,41.4058192001944],[47.81566572448466,41.151416124021345],[47.373315464066394,41.21973236751114],[46.686070591016716,41.827137152669906],[46.40495079934894,41.860675157227426],[45.7764,42.09244000000024],[45.470279168485916,42.50278066667005],[44.53762291848207,42.711992702803684],[43.93121000000011,42.5549600000001],[43.755990000000196,42.74083],[42.39440000000016,43.2203],[40.92219000000014,43.38215000000014],[40.07696495947985,43.553104153002494],[39.955008579271095,43.434997666999294],[38.68,44.28],[37.53912000000011,44.65721],[36.67546000000013,45.24469],[37.40317,45.4045100000001],[38.23295,46.24087],[37.67372,46.63657],[39.14767,47.04475000000013],[39.12120000000013,47.26336],[38.22353803889948,47.10218984637598],[38.25511233902981,47.54640045835697],[38.77057,47.82562000000024],[39.738277622238996,47.89893707945208],[39.89562000000015,48.23241],[39.67465,48.783820000000134],[40.08078901546949,49.30742991799937],[40.069040000000115,49.60105],[38.59498823421356,49.92646190042373],[38.010631137857075,49.91566152607473],[37.39345950699524,50.38395335550368],[36.626167840325394,50.225590928745135],[35.35611616388812,50.57719737405915],[35.37791,50.77394],[35.02218305841794,51.2075723333715],[34.2248157081544,51.255993150428935],[34.14197838719061,51.566413479206204],[34.39173058445723,51.768881740925906],[33.75269982273588,52.33507457133166],[32.71576053236716,52.23846548116216],[32.41205813978777,52.28869497334977],[32.15944000000022,52.061250000000115],[31.78597,52.10168],[31.54001834486226,52.74205231384644],[31.30520063652798,53.0739958766733],[31.49764,53.16743000000014],[32.304519484188376,53.132726141972846],[32.693643019346126,53.35142080343214],[32.405598585751164,53.618045355842014],[31.731272820774592,53.79402944601202],[31.791424187962406,53.974638576872195],[31.384472283663822,54.15705638286238],[30.75753380709878,54.811770941784395],[30.971835971813245,55.081547756564134],[30.87390913262007,55.55097646750351],[29.89629438652244,55.7894632025305],[29.37157189303079,55.67009064393628],[29.22951338066039,55.91834422466641],[28.17670942557794,56.16912995057879],[27.855282016722526,56.75932648378438],[27.770015903440992,57.244258124411196],[27.288184848751655,57.47452830670392],[27.71668582531578,57.79189911562445],[27.420150000000202,58.72457000000014],[28.131699253051863,59.300825100331],[27.98112,59.47537],[29.1177,60.02805000000012],[28.07,60.50352000000015],[30.211107212044652,61.78002777774969],[31.139991082491036,62.357692776124445],[31.51609215671127,62.867687486412905],[30.035872430142803,63.552813625738565],[30.444684686003736,64.20445343693908],[29.544429559047018,64.94867157659056],[30.21765,65.80598],[29.054588657352383,66.94428620062203],[29.977426385220696,67.69829702419275],[28.44594363781877,68.36461294216399],[28.591929559043365,69.0647769232867],[29.39955,69.15692000000018],[31.10108000000011,69.55811],[32.13272000000026,69.90595000000025],[33.77547,69.30142000000012],[36.51396,69.06342],[40.292340000000166,67.9324],[41.059870000000124,67.4571300000001],[41.12595000000019,66.79158000000012],[40.01583,66.26618000000013],[38.38295,65.9995300000001],[33.918710000000175,66.75961],[33.18444,66.63253],[34.81477,65.90015000000014],[34.87857425307877,65.4362128770482],[34.94391000000015,64.41437000000016],[36.23129,64.10945],[37.01273000000012,63.84983000000011],[37.14197000000016,64.33471],[36.539579035089815,64.76446],[37.17604000000014,65.14322000000013],[39.59345,64.52079000000018],[40.43560000000011,64.76446],[39.76260000000016,65.49682],[42.0930900000001,66.47623],[43.01604000000012,66.41858],[43.94975000000014,66.06908],[44.53226,66.75634000000014],[43.69839,67.35245],[44.18795000000014,67.95051],[43.45282,68.57079],[46.25000000000014,68.25],[46.82134000000016,67.68997],[45.55517,67.56652],[45.5620200000001,67.01005000000019],[46.34915000000015,66.6676700000001],[47.894160000000255,66.88455000000016],[48.13876,67.52238],[50.22766000000016,67.99867000000013],[53.71743000000018,68.85738000000012],[54.47171,68.80815],[53.48582000000013,68.20131],[54.72628,68.09702],[55.44268000000014,68.43866],[57.317020000000156,68.46628],[58.80200000000021,68.88082],[59.94142000000019,68.2784400000001],[61.07784000000018,68.94069],[60.03,69.52],[60.55,69.85],[63.50400000000016,69.54739],[64.888115,69.23483500000013],[68.51216000000014,68.09233000000017],[69.18068,68.61563000000012],[68.16444,69.14436],[68.13522,69.35649],[66.93008000000012,69.45461000000012],[67.25976,69.92873],[66.72492000000014,70.70889000000014],[66.69466,71.02897000000024],[68.54006000000011,71.93450000000024],[69.19636000000011,72.84336000000016],[69.94,73.04000000000013],[72.58754,72.7762900000001],[72.79603,72.22006],[71.8481100000001,71.40898],[72.47011,71.09019],[72.79188,70.39114],[72.56470000000022,69.02085],[73.66787,68.4079],[73.2387,67.7404],[71.28000000000011,66.32000000000016],[72.42301000000018,66.17267000000018],[72.82077,66.53267],[73.92099000000016,66.78946000000013],[74.1865100000002,67.28429],[75.052,67.76047000000017],[74.46926000000016,68.32899],[74.93584000000013,68.98918],[73.84236,69.07146],[73.60187000000022,69.62763],[74.3998,70.63175],[73.1011,71.44717000000026],[74.89082000000022,72.12119],[74.65926,72.83227],[75.15801000000019,72.85497000000011],[75.68351,72.30056000000013],[75.28898000000012,71.33556],[76.35911,71.15287000000015],[75.90313000000017,71.87401],[77.57665000000011,72.26717],[79.65202000000014,72.32011],[81.5,71.75],[80.61071000000013,72.58285000000012],[80.51109,73.6482],[82.25,73.85000000000011],[84.65526,73.80591000000018],[86.82230000000024,73.93688],[86.00956,74.45967000000014],[87.16682000000017,75.11643],[88.31571000000011,75.14393],[90.26,75.64],[92.90058,75.77333],[93.23421000000016,76.0472],[95.86000000000016,76.14],[96.67821,75.91548],[98.92254000000023,76.44689],[100.75967000000023,76.43028],[101.03532,76.86189],[101.99084000000013,77.2875400000002],[104.3516000000001,77.69792],[106.06664000000013,77.37389],[104.70500000000024,77.1274],[106.97013000000013,76.97419]]],[[[105.07547,78.30689],[99.43814,77.921],[101.2649,79.23399],[102.08635,79.34641],[102.837815,79.28129],[105.37243,78.71334],[105.07547,78.30689]]],[[[51.13618655783128,80.54728017854093],[49.79368452332071,80.4154277615482],[48.89441124857754,80.3395667589437],[48.754936557821765,80.17546824820084],[47.586119012244154,80.01018117951533],[46.502825962109654,80.24724681265437],[47.07245527526291,80.55942414012945],[44.846958042181114,80.58980988231718],[46.79913862487123,80.77191762971364],[48.318477410684665,80.78400991486996],[48.522806023966695,80.51456899690015],[49.09718956889091,80.75398590770843],[50.03976769389462,80.91888540315182],[51.52293297710369,80.6997256538019],[51.13618655783128,80.54728017854093]]],[[[99.93976,78.88094],[97.75794,78.7562],[94.97259,79.044745],[93.31288,79.4265],[92.5454,80.14379],[91.18107,80.34146],[93.77766,81.0246],[95.940895,81.2504],[97.88385,80.746975],[100.186655,79.780135],[99.93976,78.88094]]]]}},{"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","brk_group":null,"abbrev":"Port.","postal":"P","formal_en":"Portuguese Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Portugal","name_alt":null,"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,"fips_10":null,"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,"filename":"PRT.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-9.034817674180246,41.88057058365967],[-8.67194576662672,42.13468943945496],[-8.263856980817792,42.28046865495034],[-8.013174607769912,41.790886135417125],[-7.422512986673795,41.79207469335983],[-7.251308966490824,41.91834605566505],[-6.668605515967656,41.883386949219584],[-6.389087693700915,41.381815497394655],[-6.851126674822552,41.11108266861753],[-6.864019944679385,40.33087189387483],[-7.026413133156595,40.184524237624245],[-7.066591559263529,39.71189158788277],[-7.498632371439725,39.62957103124181],[-7.098036668313128,39.03007274022378],[-7.374092169616318,38.37305858006492],[-7.029281175148796,38.07576406508977],[-7.166507941099865,37.803894354802225],[-7.537105475281024,37.42890432387623],[-7.453725551778092,37.09778758396607],[-7.855613165711985,36.83826854099627],[-8.382816127953689,36.97888011326246],[-8.898856980820327,36.86880931248078],[-8.746101446965554,37.65134552667661],[-8.839997524439879,38.26624339451761],[-9.287463751655224,38.3584858261586],[-9.526570603869715,38.73742910415491],[-9.446988898140232,39.39206614842837],[-9.048305223008427,39.75509308527877],[-8.977353481471681,40.15930613866581],[-8.768684047877102,40.76063894303019],[-8.79085323733031,41.18433401139126],[-8.99078935386757,41.54345937760364],[-9.034817674180246,41.88057058365967]]]}},{"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","brk_group":null,"abbrev":"Nor.","postal":"N","formal_en":"Kingdom of Norway","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Norway","name_alt":null,"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,"fips_10":null,"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,"filename":"NOR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[28.165547316202915,71.18547435168051],[31.29341840996548,70.45378774685992],[30.005435011522792,70.1862588568849],[31.10107872897512,69.55808014594486],[29.399580519332886,69.15691600206307],[28.591929559043194,69.0647769232867],[29.01557295097197,69.76649119737797],[27.73229210786789,70.16419302029628],[26.1796220232263,69.82529897732616],[25.68921268077639,69.09211375596902],[24.73567915212672,68.64955678982145],[23.662049594830762,68.89124746365053],[22.356237827247412,68.84174144151494],[21.24493615081073,69.37044302029312],[20.64559288908958,69.10624726020085],[20.025268995857914,69.06513865831272],[19.878559604581255,68.40719432237262],[17.99386844246439,68.56739126247734],[17.729181756265348,68.01055186631623],[16.76887861498554,68.01393667263139],[16.108712192456835,67.3024555528369],[15.108411492583059,66.19386688909543],[13.55568973150909,64.78702769638147],[13.919905226302205,64.44542064071611],[13.57191613124877,64.04911408146967],[12.57993533697393,64.06621898055835],[11.93056928879423,63.128317572676984],[11.992064243221535,61.800362453856565],[12.631146681375242,61.29357168237009],[12.3003658382749,60.11793284773006],[11.468271925511175,59.432393296946],[11.027368605196926,58.856149400459394],[10.356556837616097,59.46980703392538],[8.382000359743643,58.31328847923328],[7.048748406613299,58.07888418235728],[5.665835402050419,58.58815542259367],[5.308234490590735,59.66323191999382],[4.992078077829007,61.970998033284275],[5.912900424837885,62.614472968182696],[8.553411085655766,63.45400828719647],[10.527709181366788,64.48603831649748],[12.358346795306375,65.87972585719316],[14.761145867581604,67.81064158799515],[16.43592736172897,68.56320547146169],[19.184028354578516,69.81744415961782],[21.378416375420613,70.25516937934606],[23.023742303161583,70.20207184516626],[24.546543409938522,71.03049673123724],[26.370049676221807,70.98626170519537],[28.165547316202915,71.18547435168051]]],[[[24.72412,77.85385],[22.49032,77.44493],[20.72601,77.67704],[21.41611,77.93504],[20.8119,78.25463],[22.88426,78.45494],[23.28134,78.07954],[24.72412,77.85385]]],[[[18.25183,79.70175],[21.54383,78.95611],[19.02737,78.5626],[18.47172,77.82669],[17.59441,77.63796],[17.1182,76.80941],[15.91315,76.77045],[13.76259,77.38035],[14.66956,77.73565],[13.1706,78.02493],[11.22231,78.8693],[10.44453,79.65239],[13.17077,80.01046],[13.71852,79.66039],[15.14282,79.67431],[15.52255,80.01608],[16.99085,80.05086],[18.25183,79.70175]]],[[[25.447625359811894,80.40734039989451],[27.4075057309135,80.05640574820046],[25.92465050629818,79.51783397085455],[23.02446577321362,79.4000117052291],[20.075188429451885,79.56682322866726],[19.897266473070914,79.84236196564751],[18.462263624757924,79.85988027619442],[17.368015170977458,80.31889618602702],[20.455992059010697,80.59815562613224],[21.9079447771154,80.35767934846209],[22.919252557067438,80.65714427359349],[25.447625359811894,80.40734039989451]]]]}},{"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","brk_group":null,"abbrev":"Serb.","postal":"RS","formal_en":"Republic of Serbia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Serbia","name_alt":null,"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,"fips_10":null,"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,"filename":"SRB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[20.87431277841341,45.41637543393432],[21.48352623870221,45.18117015235788],[21.562022739353722,44.76894725196564],[22.145087924902896,44.47842234962059],[22.459022251075965,44.70251719825444],[22.70572553883744,44.57800283464701],[22.474008416440654,44.40922760678177],[22.657149692483074,44.234923000661354],[22.410446404721597,44.008063462900054],[22.500156691180223,43.642814439461006],[22.986018507588483,43.2111612005271],[22.60480146657136,42.898518785161116],[22.43659467946139,42.58032115332394],[22.54501183440965,42.46136200618804],[22.38052575042468,42.32025950781508],[21.917080000000112,42.30364],[21.57663598940212,42.24522439706186],[21.54332,42.3202500000001],[21.66292,42.43922],[21.77505,42.6827],[21.63302,42.67717],[21.43866,42.86255],[21.27421,42.90959],[21.143395,43.06868500000012],[20.95651,43.13094],[20.81448,43.27205],[20.63508,43.21671],[20.49679,42.88469],[20.25758,42.81275000000011],[20.3398,42.89852],[19.95857,43.10604],[19.63,43.21377997027054],[19.48389,43.35229],[19.21852,43.52384],[19.454,43.56810000000013],[19.59976,44.03847],[19.11761,44.42307000000011],[19.36803,44.863],[19.00548,44.86023],[19.39047570158459,45.236515611342384],[19.072768995854176,45.52151113543209],[18.82982,45.90888],[19.59604454924164,46.171729844744554],[20.220192498462893,46.12746898048658],[20.762174920339987,45.734573065771485],[20.87431277841341,45.41637543393432]]]}},{"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","brk_group":null,"abbrev":"Svk.","postal":"SK","formal_en":"Slovak Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Slovak Republic","name_alt":null,"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,"fips_10":null,"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,"filename":"SVK.geojson"},"geometry":{"type":"Polygon","coordinates":[[[18.853144158613617,49.49622976337764],[18.909574822676316,49.435845852244576],[19.320712517990472,49.571574001659194],[19.825022820726872,49.21712535256923],[20.41583947111985,49.43145335549977],[20.887955356538413,49.32877228453583],[21.607808058364213,49.47010732685409],[22.558137648211755,49.085738023467144],[22.28084191253356,48.82539215758067],[22.08560835133485,48.42226430927179],[21.872236362401736,48.31997081155002],[20.801293979584926,48.623854071642384],[20.473562045989866,48.56285004332181],[20.239054396249347,48.32756724709692],[19.769470656013112,48.202691148463614],[19.661363559658497,48.26661489520866],[19.17436486173989,48.11137889260387],[18.77702477384767,48.081768296900634],[18.696512892336926,47.880953681014404],[17.857132602620027,47.758428860050365],[17.48847293464982,47.86746613218621],[16.979666782304037,48.123497015976305],[16.879982944413,48.47001333270947],[16.960288120194576,48.5969823268506],[17.101984897538898,48.81696889911711],[17.545006951577108,48.80001902932537],[17.88648481616181,48.90347524677371],[17.913511590250465,48.996492824899086],[18.104972771891852,49.04398346617531],[18.170498488037964,49.271514797556435],[18.399993523846177,49.31500051533004],[18.554971144289482,49.49501536721878],[18.853144158613617,49.49622976337764]]]}},{"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","brk_group":null,"abbrev":"Slo.","postal":"SLO","formal_en":"Republic of Slovenia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Slovenia","name_alt":null,"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,"fips_10":null,"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,"filename":"SVN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[13.806475457421527,46.509306138691215],[14.63247155117483,46.43181732846955],[15.137091912504985,46.65870270444703],[16.011663852612656,46.6836107448117],[16.202298211337364,46.85238597267696],[16.370504998447416,46.8413272161665],[16.564808383864857,46.50375092221983],[15.768732944408551,46.23810822202345],[15.671529575267556,45.83415355079788],[15.323953891672403,45.73178253842768],[15.327674594797427,45.45231639259323],[14.935243767972935,45.471695054702685],[14.595109490627804,45.634940904312714],[14.411968214585414,45.46616567644746],[13.715059848697221,45.50032379819237],[13.937630242578306,45.59101593686462],[13.698109978905478,46.01677806251735],[13.806475457421527,46.509306138691215]]]}},{"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","brk_group":null,"abbrev":"Swe.","postal":"S","formal_en":"Kingdom of Sweden","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sweden","name_alt":null,"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,"fips_10":null,"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,"filename":"SWE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[22.183173455501926,65.72374054632017],[21.21351687997722,65.02600535751527],[21.369631381930958,64.41358795842429],[19.77887576669022,63.60955434839504],[17.84777916837521,62.74940013289681],[17.119554884518124,61.34116567651097],[17.83134606290639,60.63658336042741],[18.78772179533209,60.081914374422595],[17.86922488777634,58.9537661810587],[16.829185011470088,58.71982697207339],[16.447709588291474,57.041118069071885],[15.879785597403783,56.10430186626866],[14.666681349352075,56.200885118222175],[14.100721062891465,55.40778107362265],[12.942910597392057,55.36173737245058],[12.625100538797028,56.30708018658197],[11.787942335668674,57.44181712506307],[11.027368605196866,58.85614940045936],[11.468271925511146,59.43239329694604],[12.3003658382749,60.11793284773003],[12.631146681375183,61.293571682370136],[11.992064243221563,61.80036245385656],[11.93056928879423,63.12831757267698],[12.579935336973932,64.06621898055833],[13.571916131248711,64.04911408146971],[13.919905226302204,64.44542064071608],[13.55568973150909,64.78702769638151],[15.108411492583002,66.19386688909547],[16.108712192456778,67.30245555283689],[16.768878614985482,68.01393667263139],[17.729181756265348,68.01055186631628],[17.993868442464333,68.56739126247736],[19.878559604581255,68.40719432237258],[20.025268995857886,69.0651386583127],[20.645592889089528,69.10624726020087],[21.978534783626117,68.6168456081807],[23.53947309743444,67.93600861273525],[23.565879754335583,66.39605093043743],[23.903378533633802,66.00692739527962],[22.183173455501926,65.72374054632017]]]}},{"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","brk_group":null,"abbrev":"Ukr.","postal":"UA","formal_en":"Ukraine","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ukraine","name_alt":null,"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,"fips_10":null,"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,"filename":"UKR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[31.785998162571587,52.101677964885454],[32.15941206231267,52.06126699483322],[32.41205813978763,52.28869497334975],[32.71576053236697,52.23846548116205],[33.7526998227357,52.335074571331695],[34.39173058445701,51.76888174092579],[34.14197838719039,51.56641347920623],[34.22481570815427,51.25599315042895],[35.02218305841788,51.20757233337145],[35.37792361831512,50.77395539001034],[35.35611616388795,50.577197374059054],[36.62616784032534,50.225590928745135],[37.39345950699507,50.38395335550359],[38.010631137856905,49.91566152607463],[38.59498823421342,49.92646190042363],[40.06905846533911,49.6010554062817],[40.08078901546935,49.307429917999286],[39.67466393408753,48.78381846780187],[39.89563235856758,48.23240509703143],[39.738277622238826,47.89893707945198],[38.7705847511412,47.825608222029814],[38.25511233902975,47.546400458356814],[38.22353803889942,47.10218984637588],[37.42513715998999,47.022220567404204],[36.75985477066439,46.698700263040934],[35.82368452326483,46.64596446388707],[34.96234174982388,46.27319651954964],[35.020787794745985,45.65121898048466],[35.51000857925317,45.40999339454619],[36.52999799983016,45.46998973243706],[36.33471276219916,45.113215643893966],[35.23999922052812,44.939996242851606],[33.882511020652885,44.36147858334407],[33.326420932760044,44.56487702084489],[33.54692426934946,45.03477081967489],[32.4541744321055,45.32746613217608],[32.630804477679135,45.519185695978905],[33.58816206231839,45.85156850848024],[33.29856733575471,46.080598456397844],[31.74414025241518,46.333347886737386],[31.675307244602408,46.70624502215554],[30.748748813609097,46.583100084004],[30.377608676888883,46.03241018328567],[29.603289015427432,45.293308010431126],[29.149724969201653,45.46492544207245],[28.679779493939378,45.304030870131704],[28.233553501099042,45.48828318946837],[28.485269402792767,45.5969070501459],[28.659987420371575,45.93998688413164],[28.93371748222162,46.2588304713725],[28.862972446414062,46.43788930926383],[29.072106967899295,46.517677720722496],[29.170653924279886,46.3792623968287],[29.75997195813639,46.34998769793536],[30.02465864433537,46.42393667254503],[29.838210076626297,46.52532583270169],[29.908851759569302,46.67436066343146],[29.559674106573112,46.928582872091326],[29.41513512545274,47.34664520933257],[29.05086795422733,47.51022695575249],[29.12269819511303,47.84909516050646],[28.670891147585163,48.1181485052341],[28.259546746541844,48.15556224221342],[27.522537469195154,48.467119452501116],[26.857823520624805,48.368210761094495],[26.619336785597795,48.22072622333347],[26.19745039236693,48.22088125263035],[25.9459411964024,47.987148749374214],[25.20774336111299,47.89105642352747],[24.866317172960578,47.73752574318831],[24.40205610525038,47.98187775328042],[23.76095828623741,47.985598456405455],[23.142236362406802,48.09634105080695],[22.710531447040495,47.88219391538941],[22.640819939878753,48.15023956968735],[22.08560835133485,48.42226430927179],[22.28084191253356,48.82539215758067],[22.558137648211755,49.085738023467144],[22.776418898212626,49.02739533140962],[22.518450148211603,49.47677358661974],[23.426508416444392,50.30850576435745],[23.922757195743262,50.42488108987875],[24.029985792748903,50.70540660257518],[23.52707075368437,51.57845408793023],[24.00507775238421,51.61744395609446],[24.553106316839518,51.888461005249184],[25.327787713327005,51.91065603291855],[26.337958611768556,51.83228872334793],[27.454066196408434,51.59230337178447],[28.24161502453657,51.57222707783907],[28.61761274589225,51.42771393493484],[28.99283532076353,51.602044379271476],[29.254938185347925,51.368234361366895],[30.157363722460897,51.41613841410147],[30.555117221811457,51.31950348571566],[30.619454380014844,51.822806098022376],[30.927549269338982,52.04235342061438],[31.785998162571587,52.101677964885454]]]}}]}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/ogrinfo_test1_out2.txt	Tue Feb 26 11:50:33 2019 -0500
@@ -0,0 +1,2695 @@
+INFO: Open of `/tmp/tmposJdsx/files/000/dataset_5.dat'
+      using driver `GeoJSON' successful.
+
+Layer name: OGRGeoJSON
+Geometry: Unknown (any)
+Feature Count: 39
+Extent: (-180.000000, 2.053389) - (180.000000, 81.250400)
+Layer SRS WKT:
+GEOGCS["WGS 84",
+    DATUM["WGS_1984",
+        SPHEROID["WGS 84",6378137,298.257223563,
+            AUTHORITY["EPSG","7030"]],
+        AUTHORITY["EPSG","6326"]],
+    PRIMEM["Greenwich",0,
+        AUTHORITY["EPSG","8901"]],
+    UNIT["degree",0.0174532925199433,
+        AUTHORITY["EPSG","9122"]],
+    AUTHORITY["EPSG","4326"]]
+scalerank: Integer (0.0)
+featurecla: String (0.0)
+labelrank: Integer (0.0)
+sovereignt: String (0.0)
+sov_a3: String (0.0)
+adm0_dif: Integer (0.0)
+level: Integer (0.0)
+type: String (0.0)
+admin: String (0.0)
+adm0_a3: String (0.0)
+geou_dif: Integer (0.0)
+geounit: String (0.0)
+gu_a3: String (0.0)
+su_dif: Integer (0.0)
+subunit: String (0.0)
+su_a3: String (0.0)
+brk_diff: Integer (0.0)
+name: String (0.0)
+name_long: String (0.0)
+brk_a3: String (0.0)
+brk_name: String (0.0)
+brk_group: String (0.0)
+abbrev: String (0.0)
+postal: String (0.0)
+formal_en: String (0.0)
+formal_fr: String (0.0)
+note_adm0: String (0.0)
+note_brk: String (0.0)
+name_sort: String (0.0)
+name_alt: String (0.0)
+mapcolor7: Integer (0.0)
+mapcolor8: Integer (0.0)
+mapcolor9: Integer (0.0)
+mapcolor13: Integer (0.0)
+pop_est: Integer (0.0)
+gdp_md_est: Integer (0.0)
+pop_year: Integer (0.0)
+lastcensus: Integer (0.0)
+gdp_year: Integer (0.0)
+economy: String (0.0)
+income_grp: String (0.0)
+wikipedia: Integer (0.0)
+fips_10: String (0.0)
+iso_a2: String (0.0)
+iso_a3: String (0.0)
+iso_n3: String (0.0)
+un_a3: String (0.0)
+wb_a2: String (0.0)
+wb_a3: String (0.0)
+woe_id: Integer (0.0)
+adm0_a3_is: String (0.0)
+adm0_a3_us: String (0.0)
+adm0_a3_un: Integer (0.0)
+adm0_a3_wb: Integer (0.0)
+continent: String (0.0)
+region_un: String (0.0)
+subregion: String (0.0)
+region_wb: String (0.0)
+name_len: Integer (0.0)
+long_len: Integer (0.0)
+abbrev_len: Integer (0.0)
+tiny: Integer (0.0)
+homepart: Integer (0.0)
+filename: String (0.0)
+OGRFeature(OGRGeoJSON):0
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 6
+  sovereignt (String) = Albania
+  sov_a3 (String) = ALB
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Albania
+  adm0_a3 (String) = ALB
+  geou_dif (Integer) = 0
+  geounit (String) = Albania
+  gu_a3 (String) = ALB
+  su_dif (Integer) = 0
+  subunit (String) = Albania
+  su_a3 (String) = ALB
+  brk_diff (Integer) = 0
+  name (String) = Albania
+  name_long (String) = Albania
+  brk_a3 (String) = ALB
+  brk_name (String) = Albania
+  brk_group (String) = (null)
+  abbrev (String) = Alb.
+  postal (String) = AL
+  formal_en (String) = Republic of Albania
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Albania
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 1
+  mapcolor8 (Integer) = 4
+  mapcolor9 (Integer) = 1
+  mapcolor13 (Integer) = 6
+  pop_est (Integer) = 3639453
+  gdp_md_est (Integer) = 21810
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2001
+  gdp_year (Integer) = -99
+  economy (String) = 6. Developing region
+  income_grp (String) = 4. Lower middle income
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = AL
+  iso_a3 (String) = ALB
+  iso_n3 (String) = 008
+  un_a3 (String) = 008
+  wb_a2 (String) = AL
+  wb_a3 (String) = ALB
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = ALB
+  adm0_a3_us (String) = ALB
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Southern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 7
+  long_len (Integer) = 7
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = ALB.geojson
+  POLYGON ((20.5902474301049 41.8554041611336,20.4631750830992 41.5150890162753,20.6051819190374 41.0862263046852,21.0200403174764 40.8427269557259,20.9999898617472 40.580003973954,20.6749967790636 40.434999904943,20.6150004411728 40.1100068222594,20.1500159034105 39.624997666984,19.9800004411701 39.6949933945234,19.9600016618732 39.915005805006,19.4060819841367 40.2507734238225,19.3190588721571 40.7272301295536,19.4035498389543 41.4095657415355,19.5400272966371 41.7199860703128,19.371768833095 41.8775475123707,19.3044861182508 42.1957451442078,19.7380513851796 42.6882473821656,19.8016133968987 42.5000934921908,20.0707 42.58863,20.2837545101819 42.3202595078151,20.52295 42.21787,20.5902474301049 41.8554041611336))
+
+OGRFeature(OGRGeoJSON):1
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 5
+  sovereignt (String) = Bosnia and Herzegovina
+  sov_a3 (String) = BIH
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Bosnia and Herzegovina
+  adm0_a3 (String) = BIH
+  geou_dif (Integer) = 0
+  geounit (String) = Bosnia and Herzegovina
+  gu_a3 (String) = BIH
+  su_dif (Integer) = 0
+  subunit (String) = Bosnia and Herzegovina
+  su_a3 (String) = BIH
+  brk_diff (Integer) = 0
+  name (String) = Bosnia and Herz.
+  name_long (String) = Bosnia and Herzegovina
+  brk_a3 (String) = BIH
+  brk_name (String) = Bosnia and Herz.
+  brk_group (String) = (null)
+  abbrev (String) = B.H.
+  postal (String) = BiH
+  formal_en (String) = Bosnia and Herzegovina
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Bosnia and Herzegovina
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 1
+  mapcolor8 (Integer) = 1
+  mapcolor9 (Integer) = 1
+  mapcolor13 (Integer) = 2
+  pop_est (Integer) = 4613414
+  gdp_md_est (Integer) = 29700
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 1991
+  gdp_year (Integer) = -99
+  economy (String) = 6. Developing region
+  income_grp (String) = 3. Upper middle income
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = BA
+  iso_a3 (String) = BIH
+  iso_n3 (String) = 070
+  un_a3 (String) = 070
+  wb_a2 (String) = BA
+  wb_a3 (String) = BIH
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = BIH
+  adm0_a3_us (String) = BIH
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Southern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 16
+  long_len (Integer) = 22
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = BIH.geojson
+  POLYGON ((19.0054862810101 44.8602336696092,19.36803 44.863,19.11761 44.42307,19.59976 44.03847,19.454 43.5681,19.21852 43.52384,19.03165 43.43253,18.70648 43.20011,18.56 42.65,17.674921502359 43.0285625270236,17.2973734880345 43.4463406438874,16.9161564470173 43.6677224798257,16.4564429053489 44.0412397324313,16.2396602718845 44.3511432968857,15.750026075919 44.8187116562626,15.9593673031334 45.2337767604309,16.3181567725359 45.0041266953259,16.5349394060002 45.2116075709777,17.002146030351 45.2337767604309,17.8617834815264 45.0677403834771,18.5532141455917 45.0815896673314,19.0054862810101 44.8602336696092))
+
+OGRFeature(OGRGeoJSON):2
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 4
+  sovereignt (String) = Belarus
+  sov_a3 (String) = BLR
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Belarus
+  adm0_a3 (String) = BLR
+  geou_dif (Integer) = 0
+  geounit (String) = Belarus
+  gu_a3 (String) = BLR
+  su_dif (Integer) = 0
+  subunit (String) = Belarus
+  su_a3 (String) = BLR
+  brk_diff (Integer) = 0
+  name (String) = Belarus
+  name_long (String) = Belarus
+  brk_a3 (String) = BLR
+  brk_name (String) = Belarus
+  brk_group (String) = (null)
+  abbrev (String) = Bela.
+  postal (String) = BY
+  formal_en (String) = Republic of Belarus
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Belarus
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 1
+  mapcolor8 (Integer) = 1
+  mapcolor9 (Integer) = 5
+  mapcolor13 (Integer) = 11
+  pop_est (Integer) = 9648533
+  gdp_md_est (Integer) = 114100
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2009
+  gdp_year (Integer) = -99
+  economy (String) = 6. Developing region
+  income_grp (String) = 3. Upper middle income
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = BY
+  iso_a3 (String) = BLR
+  iso_n3 (String) = 112
+  un_a3 (String) = 112
+  wb_a2 (String) = BY
+  wb_a3 (String) = BLR
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = BLR
+  adm0_a3_us (String) = BLR
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Eastern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 7
+  long_len (Integer) = 7
+  abbrev_len (Integer) = 5
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = BLR.geojson
+  POLYGON ((23.4841276384498 53.9124976670411,24.450683628037 53.9057022161948,25.536353794057 54.2824234076025,25.7684326514798 54.8469625921751,26.5882792497904 55.1671756048717,26.4943314958838 55.6151069199776,27.1024597510945 55.7833137070877,28.176709425578 56.1691299505788,29.2295133806603 55.9183442246664,29.3715718930307 55.6700906439362,29.8962943865224 55.7894632025304,30.87390913262 55.5509764675034,30.9718359718131 55.081547756564,30.7575338070987 54.8117709417843,31.3844722836637 54.1570563828624,31.7914241879622 53.9746385768721,31.7312728207745 53.794029446012,32.4055985857512 53.618045355842,32.693643019346 53.3514208034321,32.3045194841882 53.1327261419729,31.4976436703829 53.1674268662569,31.305200636528 53.0739958766732,31.5400183448623 52.7420523138464,31.7859981625716 52.1016779648855,30.927549269339 52.0423534206144,30.6194543800148 51.8228060980224,30.5551172218115 51.3195034857157,30.1573637224609 51.4161384141015,29.2549381853479 51.3682343613669,28.9928353207635 51.6020443792715,28.6176127458922 51.4277139349348,28.2416150245366 51.5722270778391,27.4540661964084 51.5923033717845,26.3379586117686 51.8322887233479,25.327787713327 51.9106560329186,24.5531063168395 51.8884610052492,24.0050777523842 51.6174439560945,23.5270707536844 51.5784540879302,23.5080021501687 52.0236465521247,23.1994938493862 52.4869774440537,23.7991988461334 52.6910993516066,23.8049349301178 53.0897313503061,23.527535841575 53.4701215684066,23.4841276384498 53.9124976670411))
+
+OGRFeature(OGRGeoJSON):3
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 4
+  sovereignt (String) = Bulgaria
+  sov_a3 (String) = BGR
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Bulgaria
+  adm0_a3 (String) = BGR
+  geou_dif (Integer) = 0
+  geounit (String) = Bulgaria
+  gu_a3 (String) = BGR
+  su_dif (Integer) = 0
+  subunit (String) = Bulgaria
+  su_a3 (String) = BGR
+  brk_diff (Integer) = 0
+  name (String) = Bulgaria
+  name_long (String) = Bulgaria
+  brk_a3 (String) = BGR
+  brk_name (String) = Bulgaria
+  brk_group (String) = (null)
+  abbrev (String) = Bulg.
+  postal (String) = BG
+  formal_en (String) = Republic of Bulgaria
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Bulgaria
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 4
+  mapcolor8 (Integer) = 5
+  mapcolor9 (Integer) = 1
+  mapcolor13 (Integer) = 8
+  pop_est (Integer) = 7204687
+  gdp_md_est (Integer) = 93750
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 3. Upper middle income
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = BG
+  iso_a3 (String) = BGR
+  iso_n3 (String) = 100
+  un_a3 (String) = 100
+  wb_a2 (String) = BG
+  wb_a3 (String) = BGR
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = BGR
+  adm0_a3_us (String) = BGR
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Eastern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 8
+  long_len (Integer) = 8
+  abbrev_len (Integer) = 5
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = BGR.geojson
+  POLYGON ((22.657149692483 44.2349230006613,22.9448323910518 43.8237853053471,23.3323022803763 43.8970108099047,24.1006791521242 43.7410513372479,25.5692716814269 43.6884447291747,26.0651587256997 43.9434937607513,27.2423995297409 44.1759860296324,27.9701070492751 43.8124681666752,28.558081495892 43.7074616562581,28.0390950863847 43.2931716985742,27.673897739378 42.5778923610062,27.9967204119054 42.0073587102878,27.1357393734905 42.1414848903013,26.1170418637208 41.8269046087246,26.1061381365072 41.3288988307278,25.1972013689254 41.2344859889305,24.492644891058 41.583896185872,23.6920736019923 41.3090809189438,22.9523771501665 41.3379938828111,22.8813737321974 41.9992971868503,22.3805257504246 42.3202595078151,22.5450118344096 42.461362006188,22.4365946794613 42.5803211533239,22.6048014665713 42.8985187851611,22.9860185075885 43.211161200527,22.5001566911803 43.642814439461,22.4104464047216 44.0080634628999,22.657149692483 44.2349230006613))
+
+OGRFeature(OGRGeoJSON):4
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 4
+  sovereignt (String) = Austria
+  sov_a3 (String) = AUT
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Austria
+  adm0_a3 (String) = AUT
+  geou_dif (Integer) = 0
+  geounit (String) = Austria
+  gu_a3 (String) = AUT
+  su_dif (Integer) = 0
+  subunit (String) = Austria
+  su_a3 (String) = AUT
+  brk_diff (Integer) = 0
+  name (String) = Austria
+  name_long (String) = Austria
+  brk_a3 (String) = AUT
+  brk_name (String) = Austria
+  brk_group (String) = (null)
+  abbrev (String) = Aust.
+  postal (String) = A
+  formal_en (String) = Republic of Austria
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Austria
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 3
+  mapcolor8 (Integer) = 1
+  mapcolor9 (Integer) = 3
+  mapcolor13 (Integer) = 4
+  pop_est (Integer) = 8210281
+  gdp_md_est (Integer) = 329500
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = AT
+  iso_a3 (String) = AUT
+  iso_n3 (String) = 040
+  un_a3 (String) = 040
+  wb_a2 (String) = AT
+  wb_a3 (String) = AUT
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = AUT
+  adm0_a3_us (String) = AUT
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Western Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 7
+  long_len (Integer) = 7
+  abbrev_len (Integer) = 5
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = AUT.geojson
+  POLYGON ((16.979666782304 48.1234970159763,16.9037541032673 47.7148656276283,16.3405843441504 47.7129019232012,16.5342676123804 47.4961709661691,16.2022982113374 46.852385972677,16.0116638526127 46.6836107448117,15.137091912505 46.658702704447,14.6324715511748 46.4318173284695,13.8064754574215 46.5093061386912,12.3764852230408 46.7675591090699,12.1530880062431 47.1153931748265,11.1648279150933 46.9415794948127,11.0485559424365 46.7513585475463,10.4427014502466 46.8935462509974,9.93244835779666 46.920728054383,9.47996951664902 47.1028099635634,9.63293175623298 47.34760122333,9.59422610844635 47.5250580918203,9.89606814946319 47.5801968450757,10.4020837744652 47.3024876979392,10.5445040218616 47.5663992376538,11.4264140153547 47.523766181013,12.1413574561128 47.7030834010658,12.6207597184845 47.6723876002844,12.9326269873659 47.467645575544,13.0258512712205 47.6375835231358,12.8841028174439 48.2891458196879,13.243357374737 48.4161148138291,13.5959456722644 48.8771719427371,14.3388977393247 48.5553052842072,14.9014473812541 48.9644017604458,15.253415561594 49.0390742051076,16.0296472510502 48.7338990342079,16.4992826677188 48.7858080104451,16.9602881201946 48.5969823268506,16.879982944413 48.4700133327095,16.979666782304 48.1234970159763))
+
+OGRFeature(OGRGeoJSON):5
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 2
+  sovereignt (String) = Belgium
+  sov_a3 (String) = BEL
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Belgium
+  adm0_a3 (String) = BEL
+  geou_dif (Integer) = 0
+  geounit (String) = Belgium
+  gu_a3 (String) = BEL
+  su_dif (Integer) = 0
+  subunit (String) = Belgium
+  su_a3 (String) = BEL
+  brk_diff (Integer) = 0
+  name (String) = Belgium
+  name_long (String) = Belgium
+  brk_a3 (String) = BEL
+  brk_name (String) = Belgium
+  brk_group (String) = (null)
+  abbrev (String) = Belg.
+  postal (String) = B
+  formal_en (String) = Kingdom of Belgium
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Belgium
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 3
+  mapcolor8 (Integer) = 2
+  mapcolor9 (Integer) = 1
+  mapcolor13 (Integer) = 8
+  pop_est (Integer) = 10414336
+  gdp_md_est (Integer) = 389300
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = BE
+  iso_a3 (String) = BEL
+  iso_n3 (String) = 056
+  un_a3 (String) = 056
+  wb_a2 (String) = BE
+  wb_a3 (String) = BEL
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = BEL
+  adm0_a3_us (String) = BEL
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Western Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 7
+  long_len (Integer) = 7
+  abbrev_len (Integer) = 5
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = BEL.geojson
+  POLYGON ((3.31497114422854 51.3457809515361,4.04707116050753 51.2672586126686,4.97399132652691 51.4750237086981,5.60697594567 51.0372984889698,6.15665815595878 50.8037210150106,6.04307335778111 50.1280516627942,5.78241743330091 50.0903278672212,5.67405195478483 49.5294835475575,4.79922163251581 49.9853730332364,4.28602298342508 49.9074966497726,3.58818444175569 50.3789924180036,3.1232515804258 50.7803632676146,2.65842207196027 50.7968480495157,2.51357303224614 51.1485061712618,3.31497114422854 51.3457809515361))
+
+OGRFeature(OGRGeoJSON):6
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 4
+  sovereignt (String) = Switzerland
+  sov_a3 (String) = CHE
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Switzerland
+  adm0_a3 (String) = CHE
+  geou_dif (Integer) = 0
+  geounit (String) = Switzerland
+  gu_a3 (String) = CHE
+  su_dif (Integer) = 0
+  subunit (String) = Switzerland
+  su_a3 (String) = CHE
+  brk_diff (Integer) = 0
+  name (String) = Switzerland
+  name_long (String) = Switzerland
+  brk_a3 (String) = CHE
+  brk_name (String) = Switzerland
+  brk_group (String) = (null)
+  abbrev (String) = Switz.
+  postal (String) = CH
+  formal_en (String) = Swiss Confederation
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Switzerland
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 5
+  mapcolor8 (Integer) = 2
+  mapcolor9 (Integer) = 7
+  mapcolor13 (Integer) = 3
+  pop_est (Integer) = 7604467
+  gdp_md_est (Integer) = 316700
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2010
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = CH
+  iso_a3 (String) = CHE
+  iso_n3 (String) = 756
+  un_a3 (String) = 756
+  wb_a2 (String) = CH
+  wb_a3 (String) = CHE
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = CHE
+  adm0_a3_us (String) = CHE
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Western Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 11
+  long_len (Integer) = 11
+  abbrev_len (Integer) = 6
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = CHE.geojson
+  POLYGON ((9.59422610844635 47.5250580918203,9.63293175623298 47.34760122333,9.47996951664902 47.1028099635634,9.93244835779666 46.920728054383,10.4427014502466 46.8935462509974,10.3633781266786 46.4835712754099,9.92283654139038 46.3148994004092,9.18288170740306 46.440214748717,8.96630577966781 46.0369318711112,8.48995242680132 46.0051508652517,8.31662967289438 46.1636424830909,7.75599205895983 45.8244900579593,7.27385094567666 45.7769477402508,6.8435929704145 45.9911465521006,6.50009972497042 46.4296727565294,6.02260949059354 46.2729898138205,6.037388950229 46.7257787135619,6.76871382002361 47.2877082383037,6.73657107913806 47.5418012558828,7.19220218265551 47.449765529971,7.46675906742223 47.6205819769118,8.31730146651415 47.6135798203363,8.52261193200976 47.8308275416913,9.59422610844635 47.5250580918203))
+
+OGRFeature(OGRGeoJSON):7
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 5
+  sovereignt (String) = Czech Republic
+  sov_a3 (String) = CZE
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Czech Republic
+  adm0_a3 (String) = CZE
+  geou_dif (Integer) = 0
+  geounit (String) = Czech Republic
+  gu_a3 (String) = CZE
+  su_dif (Integer) = 0
+  subunit (String) = Czech Republic
+  su_a3 (String) = CZE
+  brk_diff (Integer) = 0
+  name (String) = Czech Rep.
+  name_long (String) = Czech Republic
+  brk_a3 (String) = CZE
+  brk_name (String) = Czech Rep.
+  brk_group (String) = (null)
+  abbrev (String) = Cz. Rep.
+  postal (String) = CZ
+  formal_en (String) = Czech Republic
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Czech Republic
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 1
+  mapcolor8 (Integer) = 1
+  mapcolor9 (Integer) = 2
+  mapcolor13 (Integer) = 6
+  pop_est (Integer) = 10211904
+  gdp_md_est (Integer) = 265200
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = CZ
+  iso_a3 (String) = CZE
+  iso_n3 (String) = 203
+  un_a3 (String) = 203
+  wb_a2 (String) = CZ
+  wb_a3 (String) = CZE
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = CZE
+  adm0_a3_us (String) = CZE
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Eastern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 10
+  long_len (Integer) = 14
+  abbrev_len (Integer) = 8
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = CZE.geojson
+  POLYGON ((16.9602881201946 48.5969823268506,16.4992826677188 48.7858080104451,16.0296472510502 48.7338990342079,15.253415561594 49.0390742051076,14.9014473812541 48.9644017604458,14.3388977393247 48.5553052842072,13.5959456722644 48.8771719427371,13.0313289730434 49.3070681829732,12.5210242041612 49.5474152695627,12.4151908708274 49.9691207952806,12.2401111182226 50.2663377956073,12.9668367855432 50.4840764430691,13.3381319515603 50.7332343613644,14.0562276546882 50.9269176295943,14.3070133806006 51.1172677679414,14.5707182145861 51.0023393825243,15.0169958838587 51.1066740993216,15.4909721208397 50.7847299261432,16.2386267432386 50.6977326523798,16.1762532894623 50.4226073268579,16.7194759457144 50.2157465683935,16.8687691586057 50.473973700556,17.5545670915511 50.3621459010764,17.649445021239 50.04903839782,18.3929138526222 49.9886286484708,18.8531441586136 49.4962297633776,18.5549711442895 49.4950153672188,18.3999935238462 49.31500051533,18.170498488038 49.2715147975564,18.1049727718919 49.0439834661753,17.9135115902505 48.9964928248991,17.8864848161618 48.9034752467737,17.5450069515771 48.8000190293254,17.1019848975389 48.8169688991171,16.9602881201946 48.5969823268506))
+
+OGRFeature(OGRGeoJSON):8
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 2
+  sovereignt (String) = Germany
+  sov_a3 (String) = DEU
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Germany
+  adm0_a3 (String) = DEU
+  geou_dif (Integer) = 0
+  geounit (String) = Germany
+  gu_a3 (String) = DEU
+  su_dif (Integer) = 0
+  subunit (String) = Germany
+  su_a3 (String) = DEU
+  brk_diff (Integer) = 0
+  name (String) = Germany
+  name_long (String) = Germany
+  brk_a3 (String) = DEU
+  brk_name (String) = Germany
+  brk_group (String) = (null)
+  abbrev (String) = Ger.
+  postal (String) = D
+  formal_en (String) = Federal Republic of Germany
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Germany
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 2
+  mapcolor8 (Integer) = 5
+  mapcolor9 (Integer) = 5
+  mapcolor13 (Integer) = 1
+  pop_est (Integer) = 82329758
+  gdp_md_est (Integer) = 2918000
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 1. Developed region: G7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = DE
+  iso_a3 (String) = DEU
+  iso_n3 (String) = 276
+  un_a3 (String) = 276
+  wb_a2 (String) = DE
+  wb_a3 (String) = DEU
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = DEU
+  adm0_a3_us (String) = DEU
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Western Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 7
+  long_len (Integer) = 7
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = DEU.geojson
+  POLYGON ((9.92190636560923 54.983104153048,9.9395797054529 54.5966419541533,10.9501123389205 54.3636070827332,10.9394669938684 54.0086933457526,11.9562524756433 54.1964855007012,12.5184403825467 54.470370591848,13.6474670752595 54.0755109727059,14.1196863135426 53.757029120491,14.3533154639342 53.2481712917131,14.0745211117194 52.9812625189253,14.4375997250022 52.6248501654083,14.6850264828157 52.0899474147552,14.6070984229196 51.74518809672,15.0169958838588 51.1066740993217,14.5707182145861 51.0023393825244,14.3070133806007 51.1172677679414,14.0562276546883 50.9269176295943,13.3381319515604 50.7332343613643,12.9668367855433 50.4840764430692,12.2401111182227 50.2663377956072,12.4151908708275 49.9691207952806,12.5210242041613 49.5474152695627,13.0313289730435 49.3070681829732,13.5959456722646 48.8771719427372,13.2433573747371 48.416114813829,12.8841028174439 48.2891458196879,13.0258512712205 47.637583523136,12.9326269873661 47.467645575544,12.6207597184845 47.6723876002844,12.1413574561129 47.7030834010658,11.4264140153549 47.5237661810131,10.5445040218616 47.5663992376538,10.4020837744653 47.3024876979392,9.89606814946319 47.5801968450757,9.59422610844638 47.5250580918202,8.5226119320098 47.8308275416913,8.3173014665141 47.6135798203363,7.46675906742229 47.6205819769119,7.59367638513106 48.3330191107037,8.09927859867486 49.0177835150034,6.65822960778371 49.2019583196916,6.18632042809418 49.4638028021145,6.24275109215699 49.9022256536787,6.04307335778111 50.1280516627942,6.15665815595878 50.8037210150106,5.98865807457781 51.8516157090251,6.58939659997083 51.8520291204834,6.84286950036238 52.2284402532975,7.0920532568739 53.1440432806449,6.90513960127413 53.4821621771306,7.10042483890527 53.6939321966627,7.93623945479396 53.7482958034338,8.12170617028949 53.5277924668443,8.80073449060467 54.0207856309089,8.57211795414537 54.3956464707541,8.52622928227021 54.9627436387252,9.28204878097114 54.8308653835163,9.92190636560923 54.983104153048))
+
+OGRFeature(OGRGeoJSON):9
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 4
+  sovereignt (String) = Denmark
+  sov_a3 (String) = DN1
+  adm0_dif (Integer) = 1
+  level (Integer) = 2
+  type (String) = Country
+  admin (String) = Denmark
+  adm0_a3 (String) = DNK
+  geou_dif (Integer) = 0
+  geounit (String) = Denmark
+  gu_a3 (String) = DNK
+  su_dif (Integer) = 0
+  subunit (String) = Denmark
+  su_a3 (String) = DNK
+  brk_diff (Integer) = 0
+  name (String) = Denmark
+  name_long (String) = Denmark
+  brk_a3 (String) = DNK
+  brk_name (String) = Denmark
+  brk_group (String) = (null)
+  abbrev (String) = Den.
+  postal (String) = DK
+  formal_en (String) = Kingdom of Denmark
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Denmark
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 4
+  mapcolor8 (Integer) = 1
+  mapcolor9 (Integer) = 3
+  mapcolor13 (Integer) = 12
+  pop_est (Integer) = 5500510
+  gdp_md_est (Integer) = 203600
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = DK
+  iso_a3 (String) = DNK
+  iso_n3 (String) = 208
+  un_a3 (String) = 208
+  wb_a2 (String) = DK
+  wb_a3 (String) = DNK
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = DNK
+  adm0_a3_us (String) = DNK
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Northern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 7
+  long_len (Integer) = 7
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = DNK.geojson
+  MULTIPOLYGON (((12.6900061377556 55.6099909531808,12.0899910824147 54.8000145534379,11.0435433285042 55.3648637966043,10.9039136084516 55.7799547389887,12.3709041683533 56.1114073757088,12.6900061377556 55.6099909531808)),((10.9121818376184 56.4586213242779,10.66780398931 56.0813833685472,10.369992710012 56.1900072292247,9.64998497888931 55.4699994981021,9.92190636560917 54.9831041530481,9.28204878097114 54.8308653835162,8.52622928227024 54.962743638725,8.12031090661759 55.5177226833236,8.08997684086225 56.5400117051376,8.25658165857126 56.8099693874303,8.54343753422339 57.1100027533169,9.42446902836761 57.1720661484995,9.77555870935856 57.4479407822897,10.5800057308462 57.7300165879549,10.5461059912627 57.2157327337862,10.2500000342302 56.8900161810505,10.369992710012 56.6099815944608,10.9121818376184 56.4586213242779)))
+
+OGRFeature(OGRGeoJSON):10
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 6
+  sovereignt (String) = Estonia
+  sov_a3 (String) = EST
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Estonia
+  adm0_a3 (String) = EST
+  geou_dif (Integer) = 0
+  geounit (String) = Estonia
+  gu_a3 (String) = EST
+  su_dif (Integer) = 0
+  subunit (String) = Estonia
+  su_a3 (String) = EST
+  brk_diff (Integer) = 0
+  name (String) = Estonia
+  name_long (String) = Estonia
+  brk_a3 (String) = EST
+  brk_name (String) = Estonia
+  brk_group (String) = (null)
+  abbrev (String) = Est.
+  postal (String) = EST
+  formal_en (String) = Republic of Estonia
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Estonia
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 3
+  mapcolor8 (Integer) = 2
+  mapcolor9 (Integer) = 1
+  mapcolor13 (Integer) = 10
+  pop_est (Integer) = 1299371
+  gdp_md_est (Integer) = 27410
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2000
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = EE
+  iso_a3 (String) = EST
+  iso_n3 (String) = 233
+  un_a3 (String) = 233
+  wb_a2 (String) = EE
+  wb_a3 (String) = EST
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = EST
+  adm0_a3_us (String) = EST
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Northern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 7
+  long_len (Integer) = 7
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = EST.geojson
+  POLYGON ((24.3128625831146 57.793423570377,24.4289278500422 58.3834133978533,24.0611983578532 58.2573745794934,23.4265600928767 58.6127534043646,23.3397953630586 59.1872403021534,24.6042143083762 59.465853786855,25.8641890805166 59.6110903998113,26.9491357764845 59.4458033311258,27.9811141293532 59.4753880886129,28.1316992530517 59.3008251003309,27.4201664568249 58.7245812038442,27.7166858253157 57.7918991156244,27.2881848487515 57.4745283067038,26.4635323422378 57.4763886582663,25.6028096859844 57.8475287949866,25.1645935401493 57.9701569688152,24.3128625831146 57.793423570377))
+
+OGRFeature(OGRGeoJSON):11
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 2
+  sovereignt (String) = Spain
+  sov_a3 (String) = ESP
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Spain
+  adm0_a3 (String) = ESP
+  geou_dif (Integer) = 0
+  geounit (String) = Spain
+  gu_a3 (String) = ESP
+  su_dif (Integer) = 0
+  subunit (String) = Spain
+  su_a3 (String) = ESP
+  brk_diff (Integer) = 0
+  name (String) = Spain
+  name_long (String) = Spain
+  brk_a3 (String) = ESP
+  brk_name (String) = Spain
+  brk_group (String) = (null)
+  abbrev (String) = Sp.
+  postal (String) = E
+  formal_en (String) = Kingdom of Spain
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Spain
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 4
+  mapcolor8 (Integer) = 5
+  mapcolor9 (Integer) = 5
+  mapcolor13 (Integer) = 5
+  pop_est (Integer) = 40525002
+  gdp_md_est (Integer) = 1403000
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2001
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = ES
+  iso_a3 (String) = ESP
+  iso_n3 (String) = 724
+  un_a3 (String) = 724
+  wb_a2 (String) = ES
+  wb_a3 (String) = ESP
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = ESP
+  adm0_a3_us (String) = ESP
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Southern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 5
+  long_len (Integer) = 5
+  abbrev_len (Integer) = 3
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = ESP.geojson
+  POLYGON ((-9.03481767418025 41.8805705836597,-8.98443315269567 42.5927751735063,-9.39288367353065 43.0266246608127,-7.97818966310831 43.748337714201,-6.75449174643676 43.5679094508539,-5.4118863590616 43.5742398138097,-4.34784277995578 43.403449205085,-3.51753170410609 43.4559007838613,-1.90135128417776 43.4228020289783,-1.50277096191053 43.0340143906304,0.338046909190581 42.5795460068395,0.701590610363894 42.7957343613326,1.82679324708715 42.3433847112657,2.98599897625846 42.4730150416699,3.03948408368055 41.8921202662769,2.09184166831219 41.2260885686831,0.810524529635188 41.0147319606093,0.721331007499401 40.6783183863892,0.106691521819869 40.123933620762,-0.278711310212941 39.3099781357327,0.111290724293838 38.738514309233,-0.467123582349103 38.2923658310412,-0.683389451490598 37.6423538274578,-1.43838212727485 37.4430636663242,-2.14645260253812 36.6741441920373,-3.41578080892339 36.6588996445112,-4.36890092611472 36.6778390569462,-4.99521928549221 36.3247081568796,-5.37715979656146 35.9468500839615,-5.8664322575009 36.0298165960061,-6.23669389487218 36.3676771103303,-6.5201908024254 36.9429133163873,-7.45372555177809 37.0977875839661,-7.53710547528102 37.4289043238762,-7.16650794109986 37.8038943548022,-7.0292811751488 38.0757640650898,-7.37409216961632 38.3730585800649,-7.09803666831313 39.0300727402238,-7.49863237143972 39.6295710312418,-7.06659155926353 39.7118915878828,-7.02641313315659 40.1845242376242,-6.86401994467939 40.3308718938748,-6.85112667482255 41.1110826686175,-6.38908769370092 41.3818154973947,-6.66860551596766 41.8833869492196,-7.25130896649082 41.918346055665,-7.4225129866738 41.7920746933598,-8.01317460776991 41.7908861354171,-8.26385698081779 42.2804686549503,-8.67194576662672 42.134689439455,-9.03481767418025 41.8805705836597))
+
+OGRFeature(OGRGeoJSON):12
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 2
+  sovereignt (String) = France
+  sov_a3 (String) = FR1
+  adm0_dif (Integer) = 1
+  level (Integer) = 2
+  type (String) = Country
+  admin (String) = France
+  adm0_a3 (String) = FRA
+  geou_dif (Integer) = 0
+  geounit (String) = France
+  gu_a3 (String) = FRA
+  su_dif (Integer) = 0
+  subunit (String) = France
+  su_a3 (String) = FRA
+  brk_diff (Integer) = 0
+  name (String) = France
+  name_long (String) = France
+  brk_a3 (String) = FRA
+  brk_name (String) = France
+  brk_group (String) = (null)
+  abbrev (String) = Fr.
+  postal (String) = F
+  formal_en (String) = French Republic
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = France
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 7
+  mapcolor8 (Integer) = 5
+  mapcolor9 (Integer) = 9
+  mapcolor13 (Integer) = 11
+  pop_est (Integer) = 64057792
+  gdp_md_est (Integer) = 2128000
+  pop_year (Integer) = -99
+  lastcensus (Integer) = -99
+  gdp_year (Integer) = -99
+  economy (String) = 1. Developed region: G7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = FR
+  iso_a3 (String) = FRA
+  iso_n3 (String) = 250
+  un_a3 (String) = 250
+  wb_a2 (String) = FR
+  wb_a3 (String) = FRA
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = FRA
+  adm0_a3_us (String) = FRA
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Western Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 6
+  long_len (Integer) = 6
+  abbrev_len (Integer) = 3
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = FRA.geojson
+  MULTIPOLYGON (((-52.5564247300184 2.50470530843705,-52.939657151895 2.12485769287562,-53.4184651352953 2.05338918701604,-53.5548392401135 2.33489655192597,-53.7785206772889 2.37670278565005,-54.0880625067173 2.10555654541463,-54.5247541977998 2.31184886312378,-54.2712296209758 2.73874787028694,-54.1842840236447 3.19417226807523,-54.0115038722768 3.62256989177486,-54.3995422023565 4.21261139568348,-54.4786329819792 4.89675568279564,-53.9580446030709 5.75654816326781,-53.6184529282648 5.6465290389184,-52.8821412827541 5.4098509790216,-51.8233428615259 4.56576813396615,-51.6577974106789 4.15623240805303,-52.249337531124 3.24109446859629,-52.5564247300184 2.50470530843705)),((9.56001631026913 42.1524919703796,9.22975223149177 41.3800068222644,8.77572309737536 41.5836119654944,8.54421268070783 42.2565166285831,8.74600914880759 42.628121853194,9.3900008480289 43.0099848496147,9.56001631026913 42.1524919703796)),((3.58818444175572 50.3789924180036,4.28602298342514 49.9074966497726,4.79922163251575 49.9853730332363,5.67405195478489 49.5294835475574,5.89775923017638 49.4426671413072,6.18632042809421 49.4638028021145,6.65822960778354 49.2019583196915,8.09927859867477 49.0177835150034,7.59367638513106 48.3330191107037,7.46675906742223 47.6205819769119,7.19220218265554 47.449765529971,6.73657107913809 47.5418012558829,6.76871382002363 47.2877082383037,6.03738895022897 46.7257787135619,6.02260949059357 46.2729898138205,6.50009972497045 46.4296727565294,6.84359297041456 45.9911465521007,6.80235517744566 45.7085798203287,7.09665245934784 45.3330988632959,6.74995527510171 45.0285179713676,7.00756229007666 44.2547667506614,7.54959638838616 44.1279011093848,7.43518476729184 43.6938449163492,6.52924523278307 43.1288923203184,4.5569625179314 43.3996509873116,3.10041059735272 43.0752005071671,2.98599897625849 42.4730150416699,1.82679324708718 42.3433847112657,0.701590610363922 42.7957343613326,0.338046909190581 42.5795460068396,-1.50277096191047 43.0340143906305,-1.90135128417773 43.4228020289783,-1.38422522623296 44.0226103785902,-1.19379757323736 46.0149177109549,-2.22572424967379 47.0643626979382,-2.96327612955957 47.570326646508,-4.49155493815948 47.9549543320564,-4.59234981934475 48.6841604681269,-3.29581397135774 48.9016924098596,-1.61651078938493 48.6444212916946,-1.93349402506325 49.7763418646158,-0.98946895995536 49.3473758001609,1.33876102052275 50.1271731634453,1.6390010921385 50.9466063502975,2.51357303224617 51.1485061712619,2.65842207196033 50.7968480495157,3.12325158042572 50.7803632676145,3.58818444175572 50.3789924180036)))
+
+OGRFeature(OGRGeoJSON):13
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 2
+  sovereignt (String) = United Kingdom
+  sov_a3 (String) = GB1
+  adm0_dif (Integer) = 1
+  level (Integer) = 2
+  type (String) = Country
+  admin (String) = United Kingdom
+  adm0_a3 (String) = GBR
+  geou_dif (Integer) = 0
+  geounit (String) = United Kingdom
+  gu_a3 (String) = GBR
+  su_dif (Integer) = 0
+  subunit (String) = United Kingdom
+  su_a3 (String) = GBR
+  brk_diff (Integer) = 0
+  name (String) = United Kingdom
+  name_long (String) = United Kingdom
+  brk_a3 (String) = GBR
+  brk_name (String) = United Kingdom
+  brk_group (String) = (null)
+  abbrev (String) = U.K.
+  postal (String) = GB
+  formal_en (String) = United Kingdom of Great Britain and Northern Ireland
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = United Kingdom
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 6
+  mapcolor8 (Integer) = 6
+  mapcolor9 (Integer) = 6
+  mapcolor13 (Integer) = 3
+  pop_est (Integer) = 62262000
+  gdp_md_est (Integer) = 1977704
+  pop_year (Integer) = 0
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = 2009
+  economy (String) = 1. Developed region: G7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = GB
+  iso_a3 (String) = GBR
+  iso_n3 (String) = 826
+  un_a3 (String) = 826
+  wb_a2 (String) = GB
+  wb_a3 (String) = GBR
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = GBR
+  adm0_a3_us (String) = GBR
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Northern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 14
+  long_len (Integer) = 14
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = GBR.geojson
+  MULTIPOLYGON (((-5.6619486149219 54.5546031764839,-6.19788489422098 53.8675650091633,-6.953730231138 54.0737022975756,-7.57216793459108 54.059956366586,-7.36603064617878 54.5958409694527,-7.57216793459108 55.1316222194549,-6.73384701173615 55.1728600124238,-5.6619486149219 54.5546031764839)),((-3.00500484863528 58.6350001084663,-4.07382849772802 57.5530248073552,-3.05500179687766 57.6900190293609,-1.95928056477692 57.6847997096995,-2.2199881656893 56.8700174017535,-3.11900305827112 55.9737930365155,-2.08500932454302 55.9099984808513,-2.00567567967386 55.8049028503502,-1.11499101399221 54.6249864772654,-0.4304849918542 54.4643761257022,0.184981316742039 53.325014146531,0.469976840831777 52.929999498092,1.68153079591474 52.739520168664,1.55998782716438 52.099998480836,1.05056155763091 51.8067605657957,1.4498653499503 51.289427802122,0.550333693045502 50.7657388372759,-0.78751746255864 50.7749889186562,-2.48999752441438 50.5000186224312,-2.95627397298404 50.696879991247,-3.61744808594233 50.2283556178727,-4.54250790039924 50.3418370631857,-5.24502315919113 49.9599999049811,-5.7765669417453 50.1596776393568,-4.30998979330184 51.2100011256892,-3.41485063314212 51.4260086126692,-3.42271946710832 51.4268481674061,-4.98436723471087 51.593466091511,-5.26729570150888 51.9914004583746,-4.22234656413485 52.3013556992614,-4.77001339356411 52.8400049912556,-4.57999915202692 53.4950037705552,-3.09383067378866 53.4045474006697,-3.09207963704711 53.4044408229635,-2.94500851074434 53.9849997015467,-3.61470082543303 54.6009367732926,-3.63000545898933 54.615012925833,-4.844169073903 54.7909711777868,-5.08252661784923 55.0616006536994,-4.71911210775664 55.5084726019435,-5.04798092286211 55.7839855007075,-5.58639767091114 55.3111461452368,-5.64499874513018 56.2750149603448,-6.14998084148635 56.7850096706335,-5.78682471355529 57.8188483750646,-5.00999874512758 58.6300133327501,-4.21149451335356 58.5508450384792,-3.00500484863528 58.6350001084663)))
+
+OGRFeature(OGRGeoJSON):14
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 3
+  sovereignt (String) = Finland
+  sov_a3 (String) = FI1
+  adm0_dif (Integer) = 1
+  level (Integer) = 2
+  type (String) = Country
+  admin (String) = Finland
+  adm0_a3 (String) = FIN
+  geou_dif (Integer) = 0
+  geounit (String) = Finland
+  gu_a3 (String) = FIN
+  su_dif (Integer) = 0
+  subunit (String) = Finland
+  su_a3 (String) = FIN
+  brk_diff (Integer) = 0
+  name (String) = Finland
+  name_long (String) = Finland
+  brk_a3 (String) = FIN
+  brk_name (String) = Finland
+  brk_group (String) = (null)
+  abbrev (String) = Fin.
+  postal (String) = FIN
+  formal_en (String) = Republic of Finland
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Finland
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 4
+  mapcolor8 (Integer) = 1
+  mapcolor9 (Integer) = 4
+  mapcolor13 (Integer) = 6
+  pop_est (Integer) = 5250275
+  gdp_md_est (Integer) = 193500
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2010
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = FI
+  iso_a3 (String) = FIN
+  iso_n3 (String) = 246
+  un_a3 (String) = 246
+  wb_a2 (String) = FI
+  wb_a3 (String) = FIN
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = FIN
+  adm0_a3_us (String) = FIN
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Northern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 7
+  long_len (Integer) = 7
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = FIN.geojson
+  POLYGON ((28.5919295590432 69.0647769232867,28.4459436378187 68.364612942164,29.9774263852206 67.6982970241927,29.0545886573523 66.9442862006219,30.21765 65.80598,29.544429559047 64.9486715765905,30.4446846860037 64.2044534369391,30.0358724301427 63.5528136257386,31.5160921567111 62.8676874864129,31.1399910824909 62.3576927761244,30.2111072120444 61.7800277777497,28.0699975928953 60.5035165472758,26.255172967237 60.4239606797625,24.4966239763445 60.0573163926517,22.8696948584995 59.8463731960362,22.2907637875336 60.3919212917415,21.3222440935193 60.7201699896595,21.5448661638327 61.7053294948718,21.0592110531537 62.6073932969587,21.5360294939108 63.1897350124559,22.442744174904 63.8178103705313,24.7305115088975 64.9023436550408,25.3980676612439 65.1114265000937,25.2940430030404 65.5343464219705,23.9033785336338 66.0069273952796,23.5658797543356 66.3960509304374,23.5394730974344 67.9360086127353,21.9785347836261 68.6168456081807,20.6455928890895 69.1062472602009,21.2449361508107 69.3704430202931,22.3562378272474 68.8417414415149,23.6620495948308 68.8912474636505,24.7356791521267 68.6495567898215,25.6892126807764 69.092113755969,26.1796220232262 69.8252989773261,27.7322921078679 70.1641930202963,29.015572950972 69.766491197378,28.5919295590432 69.0647769232867))
+
+OGRFeature(OGRGeoJSON):15
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 3
+  sovereignt (String) = Greece
+  sov_a3 (String) = GRC
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Greece
+  adm0_a3 (String) = GRC
+  geou_dif (Integer) = 0
+  geounit (String) = Greece
+  gu_a3 (String) = GRC
+  su_dif (Integer) = 0
+  subunit (String) = Greece
+  su_a3 (String) = GRC
+  brk_diff (Integer) = 0
+  name (String) = Greece
+  name_long (String) = Greece
+  brk_a3 (String) = GRC
+  brk_name (String) = Greece
+  brk_group (String) = (null)
+  abbrev (String) = Greece
+  postal (String) = GR
+  formal_en (String) = Hellenic Republic
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Greece
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 2
+  mapcolor8 (Integer) = 2
+  mapcolor9 (Integer) = 2
+  mapcolor13 (Integer) = 9
+  pop_est (Integer) = 10737428
+  gdp_md_est (Integer) = 343000
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = GR
+  iso_a3 (String) = GRC
+  iso_n3 (String) = 300
+  un_a3 (String) = 300
+  wb_a2 (String) = GR
+  wb_a3 (String) = GRC
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = GRC
+  adm0_a3_us (String) = GRC
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Southern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 6
+  long_len (Integer) = 6
+  abbrev_len (Integer) = 6
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = GRC.geojson
+  MULTIPOLYGON (((23.699980096133 35.7050043808355,24.2466650733487 35.3680223658602,25.0250154965289 35.424995632462,25.7692077979642 35.3540180527091,25.7450232276516 35.1799976669662,26.2900028826017 35.2999903427479,26.1649975928877 35.0049954290098,24.7249821306423 34.9199876978896,24.7350073585069 35.0849905461976,23.5149784685281 35.279991563451,23.699980096133 35.7050043808355)),((26.6041955909363 41.5621145696611,26.2946020850758 40.9362612981743,26.0569421729655 40.8241234401008,25.4476770362442 40.8525454778615,24.9258484229609 40.9470616725232,23.7148112322008 40.6871292180951,24.4079988949641 40.1249929876241,23.8999678891026 39.9620055201756,23.3429993018608 39.9609978297458,22.813987664489 40.4760051539666,22.6262988624048 40.2565611842392,22.8497477556348 39.6593108180258,23.3500272966526 39.1900112981673,22.9730993995155 38.9709032252497,23.530016310325 38.5100011256385,24.0250248552489 38.2199929876165,24.0400110206136 37.6550145533694,23.1150028825892 37.9200112981622,23.4099719581111 37.4099907496574,22.7749719581086 37.3050100774566,23.1542252946986 36.4225058049921,22.4900281104511 36.4100001083775,21.6700264828437 36.8449864771942,21.2950106137016 37.6449893255047,21.1200342139613 38.3103233912627,20.7300321794546 38.7699852564988,20.2177120297129 39.3402346868396,20.1500159034105 39.624997666984,20.6150004411728 40.1100068222594,20.6749967790636 40.4349999049431,20.9999898617473 40.580003973954,21.0200403174764 40.8427269557259,21.674160597427 40.931274522458,22.0553776384443 41.1498658310527,22.597308383889 41.1304871689432,22.76177 41.3048,22.9523771501666 41.3379938828112,23.6920736019925 41.3090809189439,24.492644891058 41.583896185872,25.1972013689255 41.2344859889307,26.1061381365072 41.3288988307278,26.1170418637209 41.8269046087247,26.6041955909363 41.5621145696611)))
+
+OGRFeature(OGRGeoJSON):16
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 6
+  sovereignt (String) = Croatia
+  sov_a3 (String) = HRV
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Croatia
+  adm0_a3 (String) = HRV
+  geou_dif (Integer) = 0
+  geounit (String) = Croatia
+  gu_a3 (String) = HRV
+  su_dif (Integer) = 0
+  subunit (String) = Croatia
+  su_a3 (String) = HRV
+  brk_diff (Integer) = 0
+  name (String) = Croatia
+  name_long (String) = Croatia
+  brk_a3 (String) = HRV
+  brk_name (String) = Croatia
+  brk_group (String) = (null)
+  abbrev (String) = Cro.
+  postal (String) = HR
+  formal_en (String) = Republic of Croatia
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Croatia
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 5
+  mapcolor8 (Integer) = 4
+  mapcolor9 (Integer) = 5
+  mapcolor13 (Integer) = 1
+  pop_est (Integer) = 4489409
+  gdp_md_est (Integer) = 82390
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 2. High income: nonOECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = HR
+  iso_a3 (String) = HRV
+  iso_n3 (String) = 191
+  un_a3 (String) = 191
+  wb_a2 (String) = HR
+  wb_a3 (String) = HRV
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = HRV
+  adm0_a3_us (String) = HRV
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Southern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 7
+  long_len (Integer) = 7
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = HRV.geojson
+  POLYGON ((18.82983808765 45.9088776718918,19.0727689958542 45.5215111354321,19.3904757015846 45.2365156113424,19.0054862810101 44.8602336696092,18.5532141455917 45.0815896673314,17.8617834815264 45.0677403834771,17.002146030351 45.2337767604309,16.5349394060002 45.2116075709777,16.3181567725359 45.0041266953259,15.9593673031334 45.2337767604309,15.750026075919 44.8187116562626,16.2396602718845 44.3511432968857,16.4564429053489 44.0412397324313,16.9161564470173 43.6677224798257,17.2973734880345 43.4463406438874,17.674921502359 43.0285625270236,18.56 42.65,18.4500163103048 42.4799913600293,17.5099703304833 42.8499946152392,16.9300057308716 43.2099984808004,16.0153845557377 43.5072154811272,15.1744539730521 44.2431912298279,15.3762504411518 44.3179153509221,14.9203092790405 44.7384839951295,14.9016024105509 45.0760602890761,14.25874759284 45.2337767604309,13.952254672917 44.8021235214969,13.6569755388012 45.136935126316,13.6794031104158 45.484149074885,13.7150598486973 45.5003237981924,14.4119682145855 45.4661656764474,14.5951094906279 45.6349409043128,14.935243767973 45.4716950547028,15.3276745947974 45.4523163925933,15.3239538916724 45.7317825384277,15.6715295752676 45.8341535507979,15.7687329444086 46.2381082220235,16.5648083838649 46.5037509222198,16.8825150895954 46.3806318222844,17.6300663591296 45.9517691106941,18.4560624528829 45.7594811061361,18.82983808765 45.9088776718918))
+
+OGRFeature(OGRGeoJSON):17
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 5
+  sovereignt (String) = Hungary
+  sov_a3 (String) = HUN
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Hungary
+  adm0_a3 (String) = HUN
+  geou_dif (Integer) = 0
+  geounit (String) = Hungary
+  gu_a3 (String) = HUN
+  su_dif (Integer) = 0
+  subunit (String) = Hungary
+  su_a3 (String) = HUN
+  brk_diff (Integer) = 0
+  name (String) = Hungary
+  name_long (String) = Hungary
+  brk_a3 (String) = HUN
+  brk_name (String) = Hungary
+  brk_group (String) = (null)
+  abbrev (String) = Hun.
+  postal (String) = HU
+  formal_en (String) = Republic of Hungary
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Hungary
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 4
+  mapcolor8 (Integer) = 6
+  mapcolor9 (Integer) = 1
+  mapcolor13 (Integer) = 5
+  pop_est (Integer) = 9905596
+  gdp_md_est (Integer) = 196600
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2001
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = HU
+  iso_a3 (String) = HUN
+  iso_n3 (String) = 348
+  un_a3 (String) = 348
+  wb_a2 (String) = HU
+  wb_a3 (String) = HUN
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = HUN
+  adm0_a3_us (String) = HUN
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Eastern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 7
+  long_len (Integer) = 7
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = HUN.geojson
+  POLYGON ((16.2022982113374 46.852385972677,16.5342676123804 47.4961709661691,16.3405843441504 47.7129019232012,16.9037541032673 47.7148656276283,16.979666782304 48.1234970159763,17.4884729346498 47.8674661321862,17.85713260262 47.7584288600504,18.6965128923369 47.8809536810144,18.7770247738477 48.0817682969006,19.1743648617399 48.1113788926039,19.6613635596585 48.2666148952087,19.7694706560131 48.2026911484636,20.2390543962493 48.3275672470969,20.4735620459899 48.5628500433218,20.8012939795849 48.6238540716424,21.8722363624017 48.31997081155,22.0856083513349 48.4222643092718,22.6408199398788 48.1502395696874,22.7105314470405 47.8821939153894,22.0997676937828 47.6724392767167,21.6265149268539 46.9942377793182,21.0219523454712 46.3160879583519,20.2201924984628 46.1274689804866,19.5960445492416 46.1717298447445,18.82983808765 45.9088776718919,18.4560624528829 45.7594811061361,17.6300663591296 45.9517691106942,16.8825150895953 46.3806318222844,16.5648083838649 46.5037509222198,16.3705049984474 46.8413272161665,16.2022982113374 46.852385972677))
+
+OGRFeature(OGRGeoJSON):18
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 2
+  sovereignt (String) = Italy
+  sov_a3 (String) = ITA
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Italy
+  adm0_a3 (String) = ITA
+  geou_dif (Integer) = 0
+  geounit (String) = Italy
+  gu_a3 (String) = ITA
+  su_dif (Integer) = 0
+  subunit (String) = Italy
+  su_a3 (String) = ITA
+  brk_diff (Integer) = 0
+  name (String) = Italy
+  name_long (String) = Italy
+  brk_a3 (String) = ITA
+  brk_name (String) = Italy
+  brk_group (String) = (null)
+  abbrev (String) = Italy
+  postal (String) = I
+  formal_en (String) = Italian Republic
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Italy
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 6
+  mapcolor8 (Integer) = 7
+  mapcolor9 (Integer) = 8
+  mapcolor13 (Integer) = 7
+  pop_est (Integer) = 58126212
+  gdp_md_est (Integer) = 1823000
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2012
+  gdp_year (Integer) = -99
+  economy (String) = 1. Developed region: G7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = IT
+  iso_a3 (String) = ITA
+  iso_n3 (String) = 380
+  un_a3 (String) = 380
+  wb_a2 (String) = IT
+  wb_a3 (String) = ITA
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = ITA
+  adm0_a3_us (String) = ITA
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Southern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 5
+  long_len (Integer) = 5
+  abbrev_len (Integer) = 5
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = ITA.geojson
+  MULTIPOLYGON (((15.5203760108138 38.2311550969915,15.1602429541717 37.4440455185378,15.309897902089 37.1342194687318,15.0999882341194 36.6199872909954,14.335228712632 36.9966309677548,13.8267326188799 37.1045313583802,12.4310038591088 37.6129499374838,12.5709436377551 38.1263811305197,13.7411564470046 38.0349655217954,14.7612492204462 38.1438736028505,15.5203760108138 38.2311550969915)),((9.21001183435627 41.2099913600242,9.80997521326498 40.5000088567661,9.66951867029567 39.1773764104718,9.21481774255949 39.2404733343001,8.80693566247973 38.9066177434785,8.42830244307711 39.1718470322166,8.38825320805094 40.3783108587188,8.15999840661766 40.9500072291638,8.70999067550011 40.8999844427052,9.21001183435627 41.2099913600242)),((12.3764852230408 46.7675591090699,13.8064754574216 46.5093061386912,13.6981099789055 46.0167780625174,13.9376302425783 45.5910159368647,13.1416064795543 45.7366917994954,12.3285811703063 45.3817780625148,12.3838749528586 44.8853742539191,12.2614534847592 44.600482082694,12.5892370947865 44.0913658717545,13.5269059587225 43.5877273626379,14.029820997787 42.7610077988325,15.142569614328 41.9551396754569,15.9261910336019 41.9613150091157,16.1698970882904 41.7402949082034,15.8893457373778 41.5410822617182,16.7850016618606 41.1796056178366,17.5191687354312 40.8771434596322,18.3766874528826 40.3556249049427,18.4802470231954 40.1688662786398,18.2933850440281 39.8107744410732,17.7383801612133 40.2776710068303,16.8695959815223 40.4422346054639,16.4487431169373 39.7954007024665,17.1714896989715 39.4246998154207,17.0528406104293 38.9028712021373,16.6350883317818 38.8435724960824,16.1009607276131 37.9858987493342,15.6840869483145 37.908849188787,15.6879626807363 38.2145928004419,15.8919812354247 38.7509424911992,16.1093323096443 38.9645470240777,15.7188135108146 39.5440723740149,15.4136125016988 40.0483568385352,14.9984957210982 40.1729487167909,14.7032682634148 40.6045502792926,14.0606718278653 40.7863479680954,13.6279850602854 41.1882872584617,12.8880819027304 41.2530895045556,12.1066825700449 41.7045348170574,11.1919063656142 42.3554253199897,10.5119478695178 42.9314625107472,10.200028924204 43.9200068222746,9.70248823409781 44.0362787949313,8.88894616052687 44.3663361679795,8.42856082523858 44.2312281357524,7.8507666357832 43.7671479355552,7.43518476729184 43.6938449163492,7.54959638838616 44.1279011093848,7.00756229007666 44.2547667506614,6.74995527510171 45.0285179713676,7.09665245934784 45.3330988632959,6.80235517744566 45.7085798203287,6.84359297041456 45.9911465521007,7.27385094567668 45.7769477402508,7.75599205895983 45.8244900579593,8.31662967289438 46.1636424830909,8.4899524268013 46.0051508652517,8.96630577966783 46.0369318711112,9.18288170740311 46.440214748717,9.92283654139035 46.3148994004092,10.3633781266787 46.4835712754098,10.4427014502466 46.8935462509974,11.0485559424365 46.7513585475464,11.1648279150933 46.9415794948127,12.1530880062431 47.1153931748264,12.3764852230408 46.7675591090699)))
+
+OGRFeature(OGRGeoJSON):19
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 3
+  sovereignt (String) = Iceland
+  sov_a3 (String) = ISL
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Iceland
+  adm0_a3 (String) = ISL
+  geou_dif (Integer) = 0
+  geounit (String) = Iceland
+  gu_a3 (String) = ISL
+  su_dif (Integer) = 0
+  subunit (String) = Iceland
+  su_a3 (String) = ISL
+  brk_diff (Integer) = 0
+  name (String) = Iceland
+  name_long (String) = Iceland
+  brk_a3 (String) = ISL
+  brk_name (String) = Iceland
+  brk_group (String) = (null)
+  abbrev (String) = Iceland
+  postal (String) = IS
+  formal_en (String) = Republic of Iceland
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Iceland
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 1
+  mapcolor8 (Integer) = 4
+  mapcolor9 (Integer) = 4
+  mapcolor13 (Integer) = 9
+  pop_est (Integer) = 306694
+  gdp_md_est (Integer) = 12710
+  pop_year (Integer) = -99
+  lastcensus (Integer) = -99
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = IS
+  iso_a3 (String) = ISL
+  iso_n3 (String) = 352
+  un_a3 (String) = 352
+  wb_a2 (String) = IS
+  wb_a3 (String) = ISL
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = ISL
+  adm0_a3_us (String) = ISL
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Northern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 7
+  long_len (Integer) = 7
+  abbrev_len (Integer) = 7
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = ISL.geojson
+  POLYGON ((-14.5086954411292 66.4558922390314,-14.7396374170416 65.8087482774403,-13.6097322249798 65.1266710476199,-14.9098337467949 64.3640819362887,-17.7944380355434 63.6787490912338,-18.656245896875 63.4963829616758,-19.9727546859428 63.6436349554915,-22.7629719711102 63.9601789414954,-21.7784842595177 64.4021157904555,-23.9550439112191 64.8911298692335,-22.1844026351704 65.0849681667603,-22.2274232650533 65.3785936550427,-24.3261840479393 65.6111892767885,-23.6505146957231 66.2625190293952,-22.1349224512509 66.4104686550469,-20.5762837386795 65.7321121283514,-19.0568416000016 66.2766008571948,-17.7986238265591 65.9938532579098,-16.1678189762921 66.5267923041359,-14.5086954411292 66.4558922390314))
+
+OGRFeature(OGRGeoJSON):20
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 3
+  sovereignt (String) = Ireland
+  sov_a3 (String) = IRL
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Ireland
+  adm0_a3 (String) = IRL
+  geou_dif (Integer) = 0
+  geounit (String) = Ireland
+  gu_a3 (String) = IRL
+  su_dif (Integer) = 0
+  subunit (String) = Ireland
+  su_a3 (String) = IRL
+  brk_diff (Integer) = 0
+  name (String) = Ireland
+  name_long (String) = Ireland
+  brk_a3 (String) = IRL
+  brk_name (String) = Ireland
+  brk_group (String) = (null)
+  abbrev (String) = Ire.
+  postal (String) = IRL
+  formal_en (String) = Ireland
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Ireland
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 2
+  mapcolor8 (Integer) = 3
+  mapcolor9 (Integer) = 2
+  mapcolor13 (Integer) = 2
+  pop_est (Integer) = 4203200
+  gdp_md_est (Integer) = 188400
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = IE
+  iso_a3 (String) = IRL
+  iso_n3 (String) = 372
+  un_a3 (String) = 372
+  wb_a2 (String) = IE
+  wb_a3 (String) = IRL
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = IRL
+  adm0_a3_us (String) = IRL
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Northern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 7
+  long_len (Integer) = 7
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = IRL.geojson
+  POLYGON ((-6.19788489422099 53.8675650091634,-6.03298539877761 53.1531641709444,-6.78885657391085 52.2601179062923,-8.56161658368356 51.6693012558994,-9.97708574059027 51.8204548203531,-9.16628251793078 52.8646288112427,-9.68852454267245 53.8813626165853,-8.32798743329201 54.6645189479686,-7.57216793459106 55.1316222194549,-7.36603064617878 54.5958409694527,-7.57216793459106 54.059956366586,-6.95373023113807 54.0737022975756,-6.19788489422099 53.8675650091634))
+
+OGRFeature(OGRGeoJSON):21
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 5
+  sovereignt (String) = Lithuania
+  sov_a3 (String) = LTU
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Lithuania
+  adm0_a3 (String) = LTU
+  geou_dif (Integer) = 0
+  geounit (String) = Lithuania
+  gu_a3 (String) = LTU
+  su_dif (Integer) = 0
+  subunit (String) = Lithuania
+  su_a3 (String) = LTU
+  brk_diff (Integer) = 0
+  name (String) = Lithuania
+  name_long (String) = Lithuania
+  brk_a3 (String) = LTU
+  brk_name (String) = Lithuania
+  brk_group (String) = (null)
+  abbrev (String) = Lith.
+  postal (String) = LT
+  formal_en (String) = Republic of Lithuania
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Lithuania
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 6
+  mapcolor8 (Integer) = 3
+  mapcolor9 (Integer) = 3
+  mapcolor13 (Integer) = 9
+  pop_est (Integer) = 3555179
+  gdp_md_est (Integer) = 63330
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 3. Upper middle income
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = LT
+  iso_a3 (String) = LTU
+  iso_n3 (String) = 440
+  un_a3 (String) = 440
+  wb_a2 (String) = LT
+  wb_a3 (String) = LTU
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = LTU
+  adm0_a3_us (String) = LTU
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Northern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 9
+  long_len (Integer) = 9
+  abbrev_len (Integer) = 5
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = LTU.geojson
+  POLYGON ((22.7310986670927 54.3275369329933,22.6510518734725 54.5827409938667,22.7577637061553 54.8565744085814,22.3157235043306 55.0152985703659,21.2684489275035 55.1904816758353,21.0558004086224 56.0310763617111,22.2011568539395 56.3378018255795,23.87826378754 56.2736713731053,24.8606844418408 56.3725283880796,25.0009342790809 56.1645307481048,25.5330465023903 56.100296942766,26.4943314958838 55.6151069199776,26.5882792497904 55.1671756048717,25.7684326514798 54.8469625921751,25.536353794057 54.2824234076025,24.450683628037 53.9057022161948,23.4841276384498 53.9124976670411,23.2439872575895 54.2205667181491,22.7310986670927 54.3275369329933))
+
+OGRFeature(OGRGeoJSON):22
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 6
+  sovereignt (String) = Luxembourg
+  sov_a3 (String) = LUX
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Luxembourg
+  adm0_a3 (String) = LUX
+  geou_dif (Integer) = 0
+  geounit (String) = Luxembourg
+  gu_a3 (String) = LUX
+  su_dif (Integer) = 0
+  subunit (String) = Luxembourg
+  su_a3 (String) = LUX
+  brk_diff (Integer) = 0
+  name (String) = Luxembourg
+  name_long (String) = Luxembourg
+  brk_a3 (String) = LUX
+  brk_name (String) = Luxembourg
+  brk_group (String) = (null)
+  abbrev (String) = Lux.
+  postal (String) = L
+  formal_en (String) = Grand Duchy of Luxembourg
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Luxembourg
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 1
+  mapcolor8 (Integer) = 7
+  mapcolor9 (Integer) = 3
+  mapcolor13 (Integer) = 7
+  pop_est (Integer) = 491775
+  gdp_md_est (Integer) = 39370
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = LU
+  iso_a3 (String) = LUX
+  iso_n3 (String) = 442
+  un_a3 (String) = 442
+  wb_a2 (String) = LU
+  wb_a3 (String) = LUX
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = LUX
+  adm0_a3_us (String) = LUX
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Western Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 10
+  long_len (Integer) = 10
+  abbrev_len (Integer) = 4
+  tiny (Integer) = 5
+  homepart (Integer) = 1
+  filename (String) = LUX.geojson
+  POLYGON ((6.04307335778111 50.1280516627942,6.24275109215699 49.9022256536787,6.18632042809418 49.4638028021145,5.8977592301764 49.442667141307,5.67405195478483 49.5294835475575,5.78241743330091 50.0903278672212,6.04307335778111 50.1280516627942))
+
+OGRFeature(OGRGeoJSON):23
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 5
+  sovereignt (String) = Latvia
+  sov_a3 (String) = LVA
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Latvia
+  adm0_a3 (String) = LVA
+  geou_dif (Integer) = 0
+  geounit (String) = Latvia
+  gu_a3 (String) = LVA
+  su_dif (Integer) = 0
+  subunit (String) = Latvia
+  su_a3 (String) = LVA
+  brk_diff (Integer) = 0
+  name (String) = Latvia
+  name_long (String) = Latvia
+  brk_a3 (String) = LVA
+  brk_name (String) = Latvia
+  brk_group (String) = (null)
+  abbrev (String) = Lat.
+  postal (String) = LV
+  formal_en (String) = Republic of Latvia
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Latvia
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 4
+  mapcolor8 (Integer) = 7
+  mapcolor9 (Integer) = 6
+  mapcolor13 (Integer) = 13
+  pop_est (Integer) = 2231503
+  gdp_md_est (Integer) = 38860
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 3. Upper middle income
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = LV
+  iso_a3 (String) = LVA
+  iso_n3 (String) = 428
+  un_a3 (String) = 428
+  wb_a2 (String) = LV
+  wb_a3 (String) = LVA
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = LVA
+  adm0_a3_us (String) = LVA
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Northern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 6
+  long_len (Integer) = 6
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = LVA.geojson
+  POLYGON ((21.0558004086224 56.0310763617111,21.090423618258 56.7838727891229,21.5818664893537 57.4118706325499,22.5243412614929 57.7533743353508,23.3184529965221 57.0062364772749,24.1207296078534 57.0256926540328,24.3128625831146 57.793423570377,25.1645935401493 57.9701569688152,25.6028096859844 57.8475287949866,26.4635323422378 57.4763886582663,27.2881848487515 57.4745283067038,27.7700159034409 57.2442581244112,27.8552820167225 56.7593264837843,28.176709425578 56.1691299505788,27.1024597510945 55.7833137070877,26.4943314958838 55.6151069199776,25.5330465023903 56.100296942766,25.0009342790809 56.1645307481048,24.8606844418408 56.3725283880796,23.87826378754 56.2736713731053,22.2011568539395 56.3378018255795,21.0558004086224 56.0310763617111))
+
+OGRFeature(OGRGeoJSON):24
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 6
+  sovereignt (String) = Moldova
+  sov_a3 (String) = MDA
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Moldova
+  adm0_a3 (String) = MDA
+  geou_dif (Integer) = 0
+  geounit (String) = Moldova
+  gu_a3 (String) = MDA
+  su_dif (Integer) = 0
+  subunit (String) = Moldova
+  su_a3 (String) = MDA
+  brk_diff (Integer) = 0
+  name (String) = Moldova
+  name_long (String) = Moldova
+  brk_a3 (String) = MDA
+  brk_name (String) = Moldova
+  brk_group (String) = (null)
+  abbrev (String) = Mda.
+  postal (String) = MD
+  formal_en (String) = Republic of Moldova
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Moldova
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 3
+  mapcolor8 (Integer) = 5
+  mapcolor9 (Integer) = 4
+  mapcolor13 (Integer) = 12
+  pop_est (Integer) = 4320748
+  gdp_md_est (Integer) = 10670
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2004
+  gdp_year (Integer) = -99
+  economy (String) = 6. Developing region
+  income_grp (String) = 4. Lower middle income
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = MD
+  iso_a3 (String) = MDA
+  iso_n3 (String) = 498
+  un_a3 (String) = 498
+  wb_a2 (String) = MD
+  wb_a3 (String) = MDA
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = MDA
+  adm0_a3_us (String) = MDA
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Eastern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 7
+  long_len (Integer) = 7
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = MDA.geojson
+  POLYGON ((26.6193367855978 48.2207262233335,26.8578235206248 48.3682107610945,27.5225374691952 48.4671194525011,28.2595467465418 48.1555622422134,28.6708911475852 48.1181485052341,29.122698195113 47.8490951605065,29.0508679542273 47.5102269557525,29.4151351254527 47.3466452093326,29.5596741065731 46.9285828720913,29.9088517595693 46.6743606634315,29.8382100766263 46.5253258327017,30.0246586443354 46.423936672545,29.7599719581364 46.3499876979354,29.1706539242799 46.3792623968287,29.0721069678993 46.5176777207225,28.8629724464141 46.4378893092638,28.9337174822216 46.2588304713725,28.6599874203716 45.9399868841316,28.4852694027928 45.5969070501459,28.233553501099 45.4882831894684,28.0544429867754 45.9445860866056,28.1600179379477 46.3715626084172,28.128030226359 46.8104763860883,27.5511662126848 47.4051170924708,27.2338729184127 47.8267709417564,26.9241760596876 48.123264472031,26.6193367855978 48.2207262233335))
+
+OGRFeature(OGRGeoJSON):25
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 6
+  sovereignt (String) = Montenegro
+  sov_a3 (String) = MNE
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Montenegro
+  adm0_a3 (String) = MNE
+  geou_dif (Integer) = 0
+  geounit (String) = Montenegro
+  gu_a3 (String) = MNE
+  su_dif (Integer) = 0
+  subunit (String) = Montenegro
+  su_a3 (String) = MNE
+  brk_diff (Integer) = 0
+  name (String) = Montenegro
+  name_long (String) = Montenegro
+  brk_a3 (String) = MNE
+  brk_name (String) = Montenegro
+  brk_group (String) = (null)
+  abbrev (String) = Mont.
+  postal (String) = ME
+  formal_en (String) = Montenegro
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Montenegro
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 4
+  mapcolor8 (Integer) = 1
+  mapcolor9 (Integer) = 4
+  mapcolor13 (Integer) = 5
+  pop_est (Integer) = 672180
+  gdp_md_est (Integer) = 6816
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 6. Developing region
+  income_grp (String) = 3. Upper middle income
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = ME
+  iso_a3 (String) = MNE
+  iso_n3 (String) = 499
+  un_a3 (String) = 499
+  wb_a2 (String) = ME
+  wb_a3 (String) = MNE
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = MNE
+  adm0_a3_us (String) = MNE
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Southern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 10
+  long_len (Integer) = 10
+  abbrev_len (Integer) = 5
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = MNE.geojson
+  POLYGON ((19.8016133968987 42.5000934921908,19.7380513851796 42.6882473821656,19.30449 42.19574,19.37177 41.87755,19.16246 41.95502,18.88214 42.28151,18.45 42.48,18.56 42.65,18.70648 43.20011,19.03165 43.43253,19.21852 43.52384,19.48389 43.35229,19.63 43.2137799702705,19.95857 43.10604,20.3398 42.89852,20.25758 42.81275,20.0707 42.58863,19.8016133968987 42.5000934921908))
+
+OGRFeature(OGRGeoJSON):26
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 6
+  sovereignt (String) = Kosovo
+  sov_a3 (String) = KOS
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Kosovo
+  adm0_a3 (String) = KOS
+  geou_dif (Integer) = 0
+  geounit (String) = Kosovo
+  gu_a3 (String) = KOS
+  su_dif (Integer) = 0
+  subunit (String) = Kosovo
+  su_a3 (String) = KOS
+  brk_diff (Integer) = 1
+  name (String) = Kosovo
+  name_long (String) = Kosovo
+  brk_a3 (String) = B57
+  brk_name (String) = Kosovo
+  brk_group (String) = (null)
+  abbrev (String) = Kos.
+  postal (String) = KO
+  formal_en (String) = Republic of Kosovo
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = Self admin.; Claimed by Serbia
+  name_sort (String) = Kosovo
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 2
+  mapcolor8 (Integer) = 2
+  mapcolor9 (Integer) = 3
+  mapcolor13 (Integer) = 11
+  pop_est (Integer) = 1804838
+  gdp_md_est (Integer) = 5352
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 1981
+  gdp_year (Integer) = -99
+  economy (String) = 6. Developing region
+  income_grp (String) = 4. Lower middle income
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = -99
+  iso_a3 (String) = -99
+  iso_n3 (String) = -99
+  un_a3 (String) = -099
+  wb_a2 (String) = KV
+  wb_a3 (String) = KSV
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = SRB
+  adm0_a3_us (String) = KOS
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Southern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 6
+  long_len (Integer) = 6
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = KOS.geojson
+  POLYGON ((20.76216 42.05186,20.71731 41.84711,20.59023 41.85541,20.52295 42.21787,20.28374 42.32025,20.0707 42.58863,20.25758 42.81275,20.49679 42.88469,20.63508 43.21671,20.81448 43.27205,20.95651 43.13094,21.143395 43.068685,21.27421 42.90959,21.43866 42.86255,21.63302 42.67717,21.77505 42.6827,21.66292 42.43922,21.54332 42.32025,21.5766359894021 42.2452243970619,21.3527 42.2068,20.76216 42.05186))
+
+OGRFeature(OGRGeoJSON):27
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 5
+  sovereignt (String) = Netherlands
+  sov_a3 (String) = NL1
+  adm0_dif (Integer) = 1
+  level (Integer) = 2
+  type (String) = Country
+  admin (String) = Netherlands
+  adm0_a3 (String) = NLD
+  geou_dif (Integer) = 0
+  geounit (String) = Netherlands
+  gu_a3 (String) = NLD
+  su_dif (Integer) = 0
+  subunit (String) = Netherlands
+  su_a3 (String) = NLD
+  brk_diff (Integer) = 0
+  name (String) = Netherlands
+  name_long (String) = Netherlands
+  brk_a3 (String) = NLD
+  brk_name (String) = Netherlands
+  brk_group (String) = (null)
+  abbrev (String) = Neth.
+  postal (String) = NL
+  formal_en (String) = Kingdom of the Netherlands
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Netherlands
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 4
+  mapcolor8 (Integer) = 2
+  mapcolor9 (Integer) = 2
+  mapcolor13 (Integer) = 9
+  pop_est (Integer) = 16715999
+  gdp_md_est (Integer) = 672000
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = NL
+  iso_a3 (String) = NLD
+  iso_n3 (String) = 528
+  un_a3 (String) = 528
+  wb_a2 (String) = NL
+  wb_a3 (String) = NLD
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = NLD
+  adm0_a3_us (String) = NLD
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Western Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 11
+  long_len (Integer) = 11
+  abbrev_len (Integer) = 5
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = NLD.geojson
+  POLYGON ((6.07418257002092 53.5104033473781,6.90513960127413 53.4821621771306,7.0920532568739 53.1440432806449,6.84286950036238 52.2284402532975,6.58939659997083 51.8520291204834,5.98865807457781 51.8516157090251,6.15665815595878 50.8037210150106,5.60697594567 51.0372984889698,4.97399132652691 51.4750237086981,4.04707116050753 51.2672586126686,3.31497114422854 51.3457551133199,3.83028852704314 51.620544542032,4.70599734866119 53.0917984075978,6.07418257002092 53.5104033473781))
+
+OGRFeature(OGRGeoJSON):28
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 6
+  sovereignt (String) = Macedonia
+  sov_a3 (String) = MKD
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Macedonia
+  adm0_a3 (String) = MKD
+  geou_dif (Integer) = 0
+  geounit (String) = Macedonia
+  gu_a3 (String) = MKD
+  su_dif (Integer) = 0
+  subunit (String) = Macedonia
+  su_a3 (String) = MKD
+  brk_diff (Integer) = 0
+  name (String) = Macedonia
+  name_long (String) = Macedonia
+  brk_a3 (String) = MKD
+  brk_name (String) = Macedonia
+  brk_group (String) = (null)
+  abbrev (String) = Mkd.
+  postal (String) = MK
+  formal_en (String) = Former Yugoslav Republic of Macedonia
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Macedonia, FYR
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 5
+  mapcolor8 (Integer) = 3
+  mapcolor9 (Integer) = 7
+  mapcolor13 (Integer) = 3
+  pop_est (Integer) = 2066718
+  gdp_md_est (Integer) = 18780
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2010
+  gdp_year (Integer) = -99
+  economy (String) = 6. Developing region
+  income_grp (String) = 3. Upper middle income
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = MK
+  iso_a3 (String) = MKD
+  iso_n3 (String) = 807
+  un_a3 (String) = 807
+  wb_a2 (String) = MK
+  wb_a3 (String) = MKD
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = MKD
+  adm0_a3_us (String) = MKD
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Southern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 9
+  long_len (Integer) = 9
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = MKD.geojson
+  POLYGON ((20.59023 41.85541,20.71731 41.84711,20.76216 42.05186,21.3527 42.2068,21.5766359894021 42.2452243970619,21.91708 42.30364,22.3805257504247 42.3202595078151,22.8813737321973 41.9992971868504,22.9523771501665 41.3379938828112,22.76177 41.3048,22.597308383889 41.1304871689432,22.0553776384443 41.1498658310527,21.674160597427 40.9312745224579,21.0200403174764 40.8427269557259,20.60518 41.08622,20.46315 41.51509,20.59023 41.85541))
+
+OGRFeature(OGRGeoJSON):29
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 3
+  sovereignt (String) = Poland
+  sov_a3 (String) = POL
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Poland
+  adm0_a3 (String) = POL
+  geou_dif (Integer) = 0
+  geounit (String) = Poland
+  gu_a3 (String) = POL
+  su_dif (Integer) = 0
+  subunit (String) = Poland
+  su_a3 (String) = POL
+  brk_diff (Integer) = 0
+  name (String) = Poland
+  name_long (String) = Poland
+  brk_a3 (String) = POL
+  brk_name (String) = Poland
+  brk_group (String) = (null)
+  abbrev (String) = Pol.
+  postal (String) = PL
+  formal_en (String) = Republic of Poland
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Poland
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 3
+  mapcolor8 (Integer) = 7
+  mapcolor9 (Integer) = 1
+  mapcolor13 (Integer) = 2
+  pop_est (Integer) = 38482919
+  gdp_md_est (Integer) = 667900
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = PL
+  iso_a3 (String) = POL
+  iso_n3 (String) = 616
+  un_a3 (String) = 616
+  wb_a2 (String) = PL
+  wb_a3 (String) = POL
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = POL
+  adm0_a3_us (String) = POL
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Eastern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 6
+  long_len (Integer) = 6
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = POL.geojson
+  POLYGON ((15.0169958838587 51.1066740993216,14.6070984229195 51.74518809672,14.6850264828157 52.0899474147552,14.4375997250022 52.6248501654084,14.0745211117195 52.9812625189254,14.3533154639341 53.248171291713,14.1196863135426 53.757029120491,14.8029004248735 54.0507062852057,16.3634770036557 54.5131586777857,17.6228316586087 54.8515359564329,18.6208585954616 54.6826056992708,18.6962545101755 54.4387187770693,19.6606400896064 54.4260838893739,20.8922445004186 54.3125249294125,22.7310986670927 54.3275369329933,23.2439872575895 54.2205667181491,23.4841276384498 53.9124976670411,23.527535841575 53.4701215684066,23.8049349301178 53.0897313503061,23.7991988461334 52.6910993516066,23.1994938493862 52.4869774440537,23.5080021501687 52.0236465521247,23.5270707536844 51.5784540879302,24.0299857927489 50.7054066025752,23.9227571957433 50.4248810898788,23.4265084164444 50.3085057643574,22.5184501482116 49.4767735866197,22.7764188982126 49.0273953314096,22.5581376482118 49.0857380234671,21.6078080583642 49.4701073268541,20.8879553565384 49.3287722845358,20.4158394711198 49.4314533554998,19.8250228207269 49.2171253525692,19.3207125179905 49.5715740016592,18.9095748226763 49.4358458522446,18.8531441586136 49.4962297633776,18.3929138526222 49.9886286484708,17.649445021239 50.04903839782,17.5545670915511 50.3621459010764,16.8687691586057 50.473973700556,16.7194759457144 50.2157465683935,16.1762532894623 50.4226073268579,16.2386267432386 50.6977326523798,15.4909721208397 50.7847299261432,15.0169958838587 51.1066740993216))
+
+OGRFeature(OGRGeoJSON):30
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 3
+  sovereignt (String) = Romania
+  sov_a3 (String) = ROU
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Romania
+  adm0_a3 (String) = ROU
+  geou_dif (Integer) = 0
+  geounit (String) = Romania
+  gu_a3 (String) = ROU
+  su_dif (Integer) = 0
+  subunit (String) = Romania
+  su_a3 (String) = ROU
+  brk_diff (Integer) = 0
+  name (String) = Romania
+  name_long (String) = Romania
+  brk_a3 (String) = ROU
+  brk_name (String) = Romania
+  brk_group (String) = (null)
+  abbrev (String) = Rom.
+  postal (String) = RO
+  formal_en (String) = Romania
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Romania
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 1
+  mapcolor8 (Integer) = 4
+  mapcolor9 (Integer) = 3
+  mapcolor13 (Integer) = 13
+  pop_est (Integer) = 22215421
+  gdp_md_est (Integer) = 271400
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 3. Upper middle income
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = RO
+  iso_a3 (String) = ROU
+  iso_n3 (String) = 642
+  un_a3 (String) = 642
+  wb_a2 (String) = RO
+  wb_a3 (String) = ROM
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = ROU
+  adm0_a3_us (String) = ROU
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Eastern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 7
+  long_len (Integer) = 7
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = ROU.geojson
+  POLYGON ((22.7105314470405 47.8821939153894,23.1422363624068 48.0963410508069,23.7609582862374 47.9855984564055,24.4020561052504 47.9818777532804,24.8663171729606 47.7375257431883,25.207743361113 47.8910564235275,25.9459411964024 47.9871487493742,26.1974503923669 48.2208812526303,26.6193367855978 48.2207262233335,26.9241760596876 48.123264472031,27.2338729184127 47.8267709417564,27.5511662126848 47.4051170924708,28.128030226359 46.8104763860883,28.1600179379477 46.3715626084172,28.0544429867754 45.9445860866056,28.233553501099 45.4882831894684,28.6797794939394 45.3040308701317,29.1497249692017 45.4649254420724,29.6032890154274 45.2933080104311,29.6265434099588 45.0353909368624,29.1416117693318 44.820210272799,28.8378577003202 44.9138738063281,28.558081495892 43.7074616562581,27.9701070492751 43.8124681666752,27.2423995297409 44.1759860296324,26.0651587256997 43.9434937607513,25.5692716814269 43.6884447291747,24.1006791521242 43.7410513372479,23.3323022803763 43.8970108099047,22.9448323910518 43.8237853053471,22.657149692483 44.2349230006613,22.4740084164406 44.4092276067818,22.7057255388374 44.578002834647,22.4590222510759 44.7025171982543,22.1450879249028 44.4784223496206,21.5620227393536 44.7689472519655,21.4835262387022 45.1811701523578,20.8743127784134 45.4163754339342,20.76217492034 45.7345730657714,20.2201924984628 46.1274689804866,21.0219523454712 46.3160879583519,21.6265149268539 46.9942377793182,22.0997676937828 47.6724392767167,22.7105314470405 47.8821939153894))
+
+OGRFeature(OGRGeoJSON):31
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 2
+  sovereignt (String) = Russia
+  sov_a3 (String) = RUS
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Russia
+  adm0_a3 (String) = RUS
+  geou_dif (Integer) = 0
+  geounit (String) = Russia
+  gu_a3 (String) = RUS
+  su_dif (Integer) = 0
+  subunit (String) = Russia
+  su_a3 (String) = RUS
+  brk_diff (Integer) = 0
+  name (String) = Russia
+  name_long (String) = Russian Federation
+  brk_a3 (String) = RUS
+  brk_name (String) = Russia
+  brk_group (String) = (null)
+  abbrev (String) = Rus.
+  postal (String) = RUS
+  formal_en (String) = Russian Federation
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Russian Federation
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 2
+  mapcolor8 (Integer) = 5
+  mapcolor9 (Integer) = 7
+  mapcolor13 (Integer) = 7
+  pop_est (Integer) = 140041247
+  gdp_md_est (Integer) = 2266000
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2010
+  gdp_year (Integer) = -99
+  economy (String) = 3. Emerging region: BRIC
+  income_grp (String) = 3. Upper middle income
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = RU
+  iso_a3 (String) = RUS
+  iso_n3 (String) = 643
+  un_a3 (String) = 643
+  wb_a2 (String) = RU
+  wb_a3 (String) = RUS
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = RUS
+  adm0_a3_us (String) = RUS
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Eastern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 6
+  long_len (Integer) = 18
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = RUS.geojson
+  MULTIPOLYGON (((143.648007440363 50.7476004095415,144.654147577086 48.9763906927376,143.173927850517 49.3065514186504,142.55866824765 47.8615750189049,143.533492466404 46.8367280136925,143.505277134373 46.1379076198095,142.747700636974 46.7407648789266,142.092030064055 45.9667552760588,141.906925083585 46.8059288600465,142.018442824471 47.7801329616129,141.904444614835 48.8591885442996,142.135800002206 49.6151630722975,142.179983351815 50.9523424342819,141.59407596249 51.9354348822025,141.682546014574 53.3019664577288,142.606934035411 53.7621450872879,142.209748976815 54.2254759792169,142.654786411713 54.3658808457539,142.914615513277 53.7045775417147,143.260847609632 52.740760403039,143.235267775648 51.7566602646887,143.648007440363 50.7476004095415)),((22.7310986670927 54.3275369329933,20.8922445004187 54.3125249294126,19.6606400896064 54.426083889374,19.8884814795813 54.8661603867715,21.2684489275035 55.1904816758353,22.3157235043306 55.0152985703659,22.7577637061553 54.8565744085814,22.6510518734726 54.5827409938667,22.7310986670927 54.3275369329933)),((-175.01425 66.58435,-174.33983 66.33556,-174.57182 67.06219,-171.85731 66.91308,-169.89958 65.97724,-170.89107 65.54139,-172.53025 65.43791,-172.555 64.46079,-172.95533 64.25269,-173.89184 64.2826,-174.65392 64.63125,-175.98353 64.92288,-176.20716 65.35667,-177.22266 65.52024,-178.35993 65.39052,-178.90332 65.74044,-178.68611 66.11211,-179.88377 65.87456,-179.43268 65.40411,-180.0 64.9797087021984,-180.0 68.9636363636364,-177.55 68.2,-174.92825 67.20589,-175.01425 66.58435)),((180.0 70.8321992085467,178.903425 70.78114,178.7253 71.0988,180.0 71.5157143364283,180.0 70.8321992085467)),((-178.69378 70.89302,-180.0 70.8321992085467,-180.0 71.5157143364283,-179.871875 71.55762,-179.02433 71.55553,-177.577945 71.26948,-177.663575 71.13277,-178.69378 70.89302)),((143.60385 73.21244,142.08763 73.20544,140.038155 73.31692,139.86312 73.36983,140.81171 73.76506,142.06207 73.85758,143.48283 73.47525,143.60385 73.21244)),((150.73167 75.08406,149.575925 74.68892,147.977465 74.778355,146.11919 75.17298,146.358485 75.49682,148.22223 75.345845,150.73167 75.08406)),((145.086285 75.562625,144.3 74.82,140.61381 74.84768,138.95544 74.61148,136.97439 75.26167,137.51176 75.94917,138.831075 76.13676,141.471615 76.09289,145.086285 75.562625)),((57.5356925799924 70.7204639757022,56.9449792824639 70.6327432318867,53.6773751157842 70.7626577826685,53.4120166359654 71.2066616889202,51.6018945656457 71.4747590196505,51.4557536151242 72.0148810899651,52.4782751808836 72.229441636841,52.4441687355709 72.7747313503849,54.4276135597977 73.6275475124976,53.5082898293252 73.7498139513002,55.9024589374077 74.6274864773453,55.6319328143597 75.0814122585972,57.8686438332489 75.6093903673232,61.1700443866475 76.2518834500081,64.4983683612702 76.4390554877693,66.2109770038551 76.8097822130312,68.1570597675348 76.9396967638129,68.8522111347251 76.5448113064546,68.1805725442277 76.2336416694091,64.637326287703 75.7377546251362,61.5835075214148 75.2608845079468,58.4770821470534 74.3090563015628,56.986785516188 73.3330435248662,55.419335971911 72.371267605266,55.6228377622763 71.5405947943903,57.5356925799924 70.7204639757022)),((106.97013 76.97419,107.24 76.48,108.1538 76.72335,111.07726 76.71,113.33151 76.22224,114.13417 75.84764,113.88539 75.32779,112.77918 75.03186,110.15125 74.47673,109.4 74.18,110.64 74.04,112.11919 73.78774,113.01954 73.97693,113.52958 73.33505,113.96881 73.59488,115.56782 73.75285,118.77633 73.58772,119.02 73.12,123.20066 72.97122,123.25777 73.73503,125.38 73.56,126.97644 73.56549,128.59126 73.03871,129.05157 72.39872,128.46 71.98,129.71599 71.19304,131.28858 70.78699,132.2535 71.8363,133.85766 71.38642,135.56193 71.65525,137.49755 71.34763,138.23409 71.62803,139.86983 71.48783,139.14791 72.41619,140.46817 72.84941,149.5 72.2,150.35118 71.60643,152.9689 70.84222,157.00688 71.03141,158.99779 70.86672,159.83031 70.45324,159.70866 69.72198,160.94053 69.43728,162.27907 69.64204,164.05248 69.66823,165.94037 69.47199,167.83567 69.58269,169.57763 68.6938,170.81688 69.01363,170.0082 69.65276,170.45345 70.09703,173.64391 69.81743,175.72403 69.87725,178.6 69.4,180.0 68.9636363636366,180.0 64.9797087021985,179.99281 64.97433,178.7072 64.53493,177.41128 64.60821,178.313 64.07593,178.90825 63.25197,179.37034 62.98262,179.48636 62.56894,179.22825 62.3041,177.3643 62.5219,174.56929 61.76915,173.68013 61.65261,172.15 60.95,170.6985 60.33618,170.33085 59.88177,168.90046 60.57355,166.29498 59.78855,165.84 60.16,164.87674 59.7316,163.53929 59.86871,163.21711 59.21101,162.01733 58.24328,162.05297 57.83912,163.19191 57.61503,163.05794 56.15924,162.12958 56.12219,161.70146 55.28568,162.11749 54.85514,160.36877 54.34433,160.02173 53.20257,158.53094 52.95868,158.23118 51.94269,156.78979 51.01105,156.42 51.7,155.99182 53.15895,155.43366 55.38103,155.91442 56.76792,156.75815 57.3647,156.81035 57.83204,158.36433 58.05575,160.15064 59.31477,161.87204 60.343,163.66969 61.1409,164.47355 62.55061,163.25842 62.46627,162.65791 61.6425,160.12148 60.54423,159.30232 61.77396,156.72068 61.43442,154.21806 59.75818,155.04375 59.14495,152.81185 58.88385,151.26573 58.78089,151.33815 59.50396,149.78371 59.65573,148.54481 59.16448,145.48722 59.33637,142.19782 59.03998,138.95848 57.08805,135.12619 54.72959,136.70171 54.60355,137.19342 53.97732,138.1647 53.75501,138.80463 54.25455,139.90151 54.18968,141.34531 53.08957,141.37923 52.23877,140.59742 51.23967,140.51308 50.04553,140.06193 48.44671,138.55472 46.99965,138.21971 46.30795,136.86232 45.1435,135.51535 43.989,134.86939 43.39821,133.53687 42.81147,132.90627 42.79849,132.27807 43.28456,130.93587 42.55274,130.78 42.22,130.64 42.395,130.63386640841 42.9030146347706,131.144687941615 42.9299897324269,131.288555129116 44.1115196803483,131.02519 44.96796,131.88345421766 45.3211616074365,133.09712 45.14409,133.769643996313 46.1169269882992,134.11235 47.21248,134.50081 47.57845,135.026311476787 48.4782298854439,133.373595819228 48.1834416774348,132.50669 47.78896,130.98726 47.79013,130.582293328983 48.7296874049762,129.397817824421 49.4406000840156,127.6574 49.76027,127.287455682485 50.7397972682654,126.939156528838 51.3538941514059,126.564399041857 51.7842554795327,125.946348911646 52.792798570357,125.06821129771 53.1610448268689,123.57147 53.4588,122.245747918793 53.4317259792137,121.00308475147 53.2514010687312,120.177088657717 52.7538862168412,120.725789015792 52.5162263047309,120.7382 51.96411,120.18208 51.64355,119.27939 50.58292,119.288460728026 50.142882798862,117.879244419426 49.510983384797,116.678800897286 49.8885313991214,115.485695428531 49.8051773138347,114.96210981655 50.1402473008151,114.362456496235 50.2483027207375,112.897739699354 49.543565375357,111.581230910287 49.3779682480777,110.662010532679 49.1301280788059,109.402449171997 49.2929605169577,108.475167270951 49.2825477158507,107.868175897251 49.7937051458659,106.888804152455 50.2742959661803,105.886591424587 50.4060191920922,104.62158 50.27532,103.67654544476 50.0899661321951,102.25589 50.51056,102.06521 51.25991,100.889480421963 51.5168557806384,99.9817322123236 51.6340062526439,98.8614905131005 52.0473660345467,97.8257397806745 51.0109951849333,98.2317615091917 50.4224006211287,97.25976 49.72605,95.81402 49.97746,94.8159493346988 50.0134333359709,94.1475663594356 50.4805366074572,93.10421 50.49529,92.2347115417197 50.8021707220418,90.7136674336408 50.3318118353211,88.8055668476956 49.4705207383125,87.7512642760769 49.2971979844056,87.3599703307627 49.2149807806292,86.8293567239897 49.8266747096681,85.5412699726825 49.6928585882482,85.1155595234621 50.1173029648776,84.416377394553 50.3113996445658,83.9351147806189 50.8892455104536,83.3830037780125 51.0691828476939,81.9459855488399 50.8121959499063,80.5684468932355 51.3883364935284,80.0355595234417 50.8647508815472,77.8009155618443 53.4044149847475,76.5251794778548 54.1770034857271,76.8911002949135 54.4905244004419,74.38482 53.54685,73.4256787454205 53.4898102891098,73.5085160663844 54.0356167669766,72.2241500182022 54.3766553818868,71.1801310566095 54.1332852240083,70.8652665546552 55.1697335882701,69.0681669452729 55.3852501491435,68.1691003762589 54.9703917507044,65.66687 54.60125,65.178533563096 54.3542278102721,61.4366 54.00625,60.9780664406832 53.6649933945791,61.6999861998006 52.9799964463343,60.7399931171145 52.7199864772577,60.9272685077403 52.447548326215,59.9675338072156 51.9604204372157,61.5880033710241 51.2726587998432,61.337424350841 50.7990701361043,59.9328072447156 50.8421941188518,59.6422823423706 50.5454422064157,58.36332 51.06364,56.77798 51.04355,55.71694 50.62171,54.5328784523762 51.0262397324594,52.3287235858311 51.7186522487381,50.7666483905122 51.6927623561599,48.702381626181 50.6051284857128,48.5778414243576 49.8747596299156,47.5494804217494 50.4546983913111,46.7515963071628 49.3560057643537,47.0436715024766 49.1520388860976,46.4664457537763 48.3941523301049,47.31524 47.71585,48.05725 47.74377,48.6947335142019 47.0756281601779,48.59325 46.56104,49.10116 46.39933,48.64541 45.80629,47.67591 45.64149,46.68201 44.6092,47.59094 43.66016,47.49252 42.98658,48.58437 41.80888,47.987283156126 41.4058192001944,47.8156657244847 41.1514161240213,47.3733154640664 41.2197323675111,46.6860705910167 41.8271371526699,46.4049507993489 41.8606751572274,45.7764 42.09244,45.4702791684859 42.50278066667,44.5376229184821 42.7119927028037,43.93121 42.55496,43.75599 42.74083,42.3944 43.2203,40.92219 43.38215,40.0769649594799 43.5531041530025,39.9550085792711 43.4349976669993,38.68 44.28,37.53912 44.65721,36.67546 45.24469,37.40317 45.40451,38.23295 46.24087,37.67372 46.63657,39.14767 47.04475,39.1212 47.26336,38.2235380388995 47.102189846376,38.2551123390298 47.546400458357,38.77057 47.82562,39.738277622239 47.8989370794521,39.89562 48.23241,39.67465 48.78382,40.0807890154695 49.3074299179994,40.06904 49.60105,38.5949882342136 49.9264619004237,38.0106311378571 49.9156615260747,37.3934595069952 50.3839533555037,36.6261678403254 50.2255909287451,35.3561161638881 50.5771973740592,35.37791 50.77394,35.0221830584179 51.2075723333715,34.2248157081544 51.2559931504289,34.1419783871906 51.5664134792062,34.3917305844572 51.7688817409259,33.7526998227359 52.3350745713317,32.7157605323672 52.2384654811622,32.4120581397878 52.2886949733498,32.15944 52.06125,31.78597 52.10168,31.5400183448623 52.7420523138464,31.305200636528 53.0739958766733,31.49764 53.16743,32.3045194841884 53.1327261419728,32.6936430193461 53.3514208034321,32.4055985857512 53.618045355842,31.7312728207746 53.794029446012,31.7914241879624 53.9746385768722,31.3844722836638 54.1570563828624,30.7575338070988 54.8117709417844,30.9718359718132 55.0815477565641,30.8739091326201 55.5509764675035,29.8962943865224 55.7894632025305,29.3715718930308 55.6700906439363,29.2295133806604 55.9183442246664,28.1767094255779 56.1691299505788,27.8552820167225 56.7593264837844,27.770015903441 57.2442581244112,27.2881848487517 57.4745283067039,27.7166858253158 57.7918991156245,27.42015 58.72457,28.1316992530519 59.300825100331,27.98112 59.47537,29.1177 60.02805,28.07 60.50352,30.2111072120447 61.7800277777497,31.139991082491 62.3576927761244,31.5160921567113 62.8676874864129,30.0358724301428 63.5528136257386,30.4446846860037 64.2044534369391,29.544429559047 64.9486715765906,30.21765 65.80598,29.0545886573524 66.944286200622,29.9774263852207 67.6982970241928,28.4459436378188 68.364612942164,28.5919295590434 69.0647769232867,29.39955 69.15692,31.10108 69.55811,32.13272 69.90595,33.77547 69.30142,36.51396 69.06342,40.29234 67.9324,41.05987 67.45713,41.12595 66.79158,40.01583 66.26618,38.38295 65.99953,33.91871 66.75961,33.18444 66.63253,34.81477 65.90015,34.8785742530788 65.4362128770482,34.94391 64.41437,36.23129 64.10945,37.01273 63.84983,37.14197 64.33471,36.5395790350898 64.76446,37.17604 65.14322,39.59345 64.52079,40.4356 64.76446,39.7626 65.49682,42.09309 66.47623,43.01604 66.41858,43.94975 66.06908,44.53226 66.75634,43.69839 67.35245,44.18795 67.95051,43.45282 68.57079,46.25 68.25,46.82134 67.68997,45.55517 67.56652,45.56202 67.01005,46.34915 66.66767,47.89416 66.88455,48.13876 67.52238,50.22766 67.99867,53.71743 68.85738,54.47171 68.80815,53.48582 68.20131,54.72628 68.09702,55.44268 68.43866,57.31702 68.46628,58.802 68.88082,59.94142 68.27844,61.07784 68.94069,60.03 69.52,60.55 69.85,63.504 69.54739,64.888115 69.234835,68.51216 68.09233,69.18068 68.61563,68.16444 69.14436,68.13522 69.35649,66.93008 69.45461,67.25976 69.92873,66.72492 70.70889,66.69466 71.02897,68.54006 71.9345,69.19636 72.84336,69.94 73.04,72.58754 72.77629,72.79603 72.22006,71.84811 71.40898,72.47011 71.09019,72.79188 70.39114,72.5647 69.02085,73.66787 68.4079,73.2387 67.7404,71.28 66.32,72.42301 66.17267,72.82077 66.53267,73.92099 66.78946,74.18651 67.28429,75.052 67.76047,74.46926 68.32899,74.93584 68.98918,73.84236 69.07146,73.60187 69.62763,74.3998 70.63175,73.1011 71.44717,74.89082 72.12119,74.65926 72.83227,75.15801 72.85497,75.68351 72.30056,75.28898 71.33556,76.35911 71.15287,75.90313 71.87401,77.57665 72.26717,79.65202 72.32011,81.5 71.75,80.61071 72.58285,80.51109 73.6482,82.25 73.85,84.65526 73.80591,86.8223 73.93688,86.00956 74.45967,87.16682 75.11643,88.31571 75.14393,90.26 75.64,92.90058 75.77333,93.23421 76.0472,95.86 76.14,96.67821 75.91548,98.92254 76.44689,100.75967 76.43028,101.03532 76.86189,101.99084 77.28754,104.3516 77.69792,106.06664 77.37389,104.705 77.1274,106.97013 76.97419)),((105.07547 78.30689,99.43814 77.921,101.2649 79.23399,102.08635 79.34641,102.837815 79.28129,105.37243 78.71334,105.07547 78.30689)),((51.1361865578313 80.5472801785409,49.7936845233207 80.4154277615482,48.8944112485775 80.3395667589437,48.7549365578218 80.1754682482008,47.5861190122442 80.0101811795153,46.5028259621097 80.2472468126544,47.0724552752629 80.5594241401295,44.8469580421811 80.5898098823172,46.7991386248712 80.7719176297136,48.3184774106847 80.78400991487,48.5228060239667 80.5145689969002,49.0971895688909 80.7539859077084,50.0397676938946 80.9188854031518,51.5229329771037 80.6997256538019,51.1361865578313 80.5472801785409)),((99.93976 78.88094,97.75794 78.7562,94.97259 79.044745,93.31288 79.4265,92.5454 80.14379,91.18107 80.34146,93.77766 81.0246,95.940895 81.2504,97.88385 80.746975,100.186655 79.780135,99.93976 78.88094)))
+
+OGRFeature(OGRGeoJSON):32
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 2
+  sovereignt (String) = Portugal
+  sov_a3 (String) = PRT
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Portugal
+  adm0_a3 (String) = PRT
+  geou_dif (Integer) = 0
+  geounit (String) = Portugal
+  gu_a3 (String) = PRT
+  su_dif (Integer) = 1
+  subunit (String) = Portugal
+  su_a3 (String) = PR1
+  brk_diff (Integer) = 0
+  name (String) = Portugal
+  name_long (String) = Portugal
+  brk_a3 (String) = PR1
+  brk_name (String) = Portugal
+  brk_group (String) = (null)
+  abbrev (String) = Port.
+  postal (String) = P
+  formal_en (String) = Portuguese Republic
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Portugal
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 1
+  mapcolor8 (Integer) = 7
+  mapcolor9 (Integer) = 1
+  mapcolor13 (Integer) = 4
+  pop_est (Integer) = 10707924
+  gdp_md_est (Integer) = 208627
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = 0
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = PT
+  iso_a3 (String) = PRT
+  iso_n3 (String) = 620
+  un_a3 (String) = 620
+  wb_a2 (String) = PT
+  wb_a3 (String) = PRT
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = PRT
+  adm0_a3_us (String) = PRT
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Southern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 8
+  long_len (Integer) = 8
+  abbrev_len (Integer) = 5
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = PRT.geojson
+  POLYGON ((-9.03481767418025 41.8805705836597,-8.67194576662672 42.134689439455,-8.26385698081779 42.2804686549503,-8.01317460776991 41.7908861354171,-7.4225129866738 41.7920746933598,-7.25130896649082 41.918346055665,-6.66860551596766 41.8833869492196,-6.38908769370092 41.3818154973947,-6.85112667482255 41.1110826686175,-6.86401994467939 40.3308718938748,-7.02641313315659 40.1845242376242,-7.06659155926353 39.7118915878828,-7.49863237143972 39.6295710312418,-7.09803666831313 39.0300727402238,-7.37409216961632 38.3730585800649,-7.0292811751488 38.0757640650898,-7.16650794109986 37.8038943548022,-7.53710547528102 37.4289043238762,-7.45372555177809 37.0977875839661,-7.85561316571199 36.8382685409963,-8.38281612795369 36.9788801132625,-8.89885698082033 36.8688093124808,-8.74610144696555 37.6513455266766,-8.83999752443988 38.2662433945176,-9.28746375165522 38.3584858261586,-9.52657060386971 38.7374291041549,-9.44698889814023 39.3920661484284,-9.04830522300843 39.7550930852788,-8.97735348147168 40.1593061386658,-8.7686840478771 40.7606389430302,-8.79085323733031 41.1843340113913,-8.99078935386757 41.5434593776036,-9.03481767418025 41.8805705836597))
+
+OGRFeature(OGRGeoJSON):33
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 3
+  sovereignt (String) = Norway
+  sov_a3 (String) = NOR
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Norway
+  adm0_a3 (String) = NOR
+  geou_dif (Integer) = 0
+  geounit (String) = Norway
+  gu_a3 (String) = NOR
+  su_dif (Integer) = 0
+  subunit (String) = Norway
+  su_a3 (String) = NOR
+  brk_diff (Integer) = 0
+  name (String) = Norway
+  name_long (String) = Norway
+  brk_a3 (String) = NOR
+  brk_name (String) = Norway
+  brk_group (String) = (null)
+  abbrev (String) = Nor.
+  postal (String) = N
+  formal_en (String) = Kingdom of Norway
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Norway
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 5
+  mapcolor8 (Integer) = 3
+  mapcolor9 (Integer) = 8
+  mapcolor13 (Integer) = 12
+  pop_est (Integer) = 4676305
+  gdp_md_est (Integer) = 276400
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2001
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = NO
+  iso_a3 (String) = NOR
+  iso_n3 (String) = 578
+  un_a3 (String) = 578
+  wb_a2 (String) = NO
+  wb_a3 (String) = NOR
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = NOR
+  adm0_a3_us (String) = NOR
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Northern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 6
+  long_len (Integer) = 6
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = NOR.geojson
+  MULTIPOLYGON (((28.1655473162029 71.1854743516805,31.2934184099655 70.4537877468599,30.0054350115228 70.1862588568849,31.1010787289751 69.5580801459449,29.3995805193329 69.1569160020631,28.5919295590432 69.0647769232867,29.015572950972 69.766491197378,27.7322921078679 70.1641930202963,26.1796220232263 69.8252989773262,25.6892126807764 69.092113755969,24.7356791521267 68.6495567898214,23.6620495948308 68.8912474636505,22.3562378272474 68.8417414415149,21.2449361508107 69.3704430202931,20.6455928890896 69.1062472602008,20.0252689958579 69.0651386583127,19.8785596045813 68.4071943223726,17.9938684424644 68.5673912624773,17.7291817562653 68.0105518663162,16.7688786149855 68.0139366726314,16.1087121924568 67.3024555528369,15.1084114925831 66.1938668890954,13.5556897315091 64.7870276963815,13.9199052263022 64.4454206407161,13.5719161312488 64.0491140814697,12.5799353369739 64.0662189805583,11.9305692887942 63.128317572677,11.9920642432215 61.8003624538566,12.6311466813752 61.2935716823701,12.3003658382749 60.1179328477301,11.4682719255112 59.432393296946,11.0273686051969 58.8561494004594,10.3565568376161 59.4698070339254,8.38200035974364 58.3132884792333,7.0487484066133 58.0788841823573,5.66583540205042 58.5881554225937,5.30823449059073 59.6632319199938,4.99207807782901 61.9709980332843,5.91290042483789 62.6144729681827,8.55341108565577 63.4540082871965,10.5277091813668 64.4860383164975,12.3583467953064 65.8797258571932,14.7611458675816 67.8106415879951,16.435927361729 68.5632054714617,19.1840283545785 69.8174441596178,21.3784163754206 70.2551693793461,23.0237423031616 70.2020718451663,24.5465434099385 71.0304967312372,26.3700496762218 70.9862617051954,28.1655473162029 71.1854743516805)),((24.72412 77.85385,22.49032 77.44493,20.72601 77.67704,21.41611 77.93504,20.8119 78.25463,22.88426 78.45494,23.28134 78.07954,24.72412 77.85385)),((18.25183 79.70175,21.54383 78.95611,19.02737 78.5626,18.47172 77.82669,17.59441 77.63796,17.1182 76.80941,15.91315 76.77045,13.76259 77.38035,14.66956 77.73565,13.1706 78.02493,11.22231 78.8693,10.44453 79.65239,13.17077 80.01046,13.71852 79.66039,15.14282 79.67431,15.52255 80.01608,16.99085 80.05086,18.25183 79.70175)),((25.4476253598119 80.4073403998945,27.4075057309135 80.0564057482005,25.9246505062982 79.5178339708546,23.0244657732136 79.4000117052291,20.0751884294519 79.5668232286673,19.8972664730709 79.8423619656475,18.4622636247579 79.8598802761944,17.3680151709775 80.318896186027,20.4559920590107 80.5981556261322,21.9079447771154 80.3576793484621,22.9192525570674 80.6571442735935,25.4476253598119 80.4073403998945)))
+
+OGRFeature(OGRGeoJSON):34
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 5
+  sovereignt (String) = Republic of Serbia
+  sov_a3 (String) = SRB
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Republic of Serbia
+  adm0_a3 (String) = SRB
+  geou_dif (Integer) = 0
+  geounit (String) = Republic of Serbia
+  gu_a3 (String) = SRB
+  su_dif (Integer) = 0
+  subunit (String) = Republic of Serbia
+  su_a3 (String) = SRB
+  brk_diff (Integer) = 0
+  name (String) = Serbia
+  name_long (String) = Serbia
+  brk_a3 (String) = SRB
+  brk_name (String) = Serbia
+  brk_group (String) = (null)
+  abbrev (String) = Serb.
+  postal (String) = RS
+  formal_en (String) = Republic of Serbia
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Serbia
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 3
+  mapcolor8 (Integer) = 3
+  mapcolor9 (Integer) = 2
+  mapcolor13 (Integer) = 10
+  pop_est (Integer) = 7379339
+  gdp_md_est (Integer) = 80340
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 6. Developing region
+  income_grp (String) = 3. Upper middle income
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = RS
+  iso_a3 (String) = SRB
+  iso_n3 (String) = 688
+  un_a3 (String) = 688
+  wb_a2 (String) = YF
+  wb_a3 (String) = SRB
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = SRB
+  adm0_a3_us (String) = SRB
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Southern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 6
+  long_len (Integer) = 6
+  abbrev_len (Integer) = 5
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = SRB.geojson
+  POLYGON ((20.8743127784134 45.4163754339343,21.4835262387022 45.1811701523579,21.5620227393537 44.7689472519656,22.1450879249029 44.4784223496206,22.459022251076 44.7025171982544,22.7057255388374 44.578002834647,22.4740084164407 44.4092276067818,22.6571496924831 44.2349230006614,22.4104464047216 44.0080634629001,22.5001566911802 43.642814439461,22.9860185075885 43.2111612005271,22.6048014665714 42.8985187851611,22.4365946794614 42.5803211533239,22.5450118344096 42.461362006188,22.3805257504247 42.3202595078151,21.91708 42.30364,21.5766359894021 42.2452243970619,21.54332 42.32025,21.66292 42.43922,21.77505 42.6827,21.63302 42.67717,21.43866 42.86255,21.27421 42.90959,21.143395 43.068685,20.95651 43.13094,20.81448 43.27205,20.63508 43.21671,20.49679 42.88469,20.25758 42.81275,20.3398 42.89852,19.95857 43.10604,19.63 43.2137799702705,19.48389 43.35229,19.21852 43.52384,19.454 43.5681,19.59976 44.03847,19.11761 44.42307,19.36803 44.863,19.00548 44.86023,19.3904757015846 45.2365156113424,19.0727689958542 45.5215111354321,18.82982 45.90888,19.5960445492416 46.1717298447446,20.2201924984629 46.1274689804866,20.76217492034 45.7345730657715,20.8743127784134 45.4163754339343))
+
+OGRFeature(OGRGeoJSON):35
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 6
+  sovereignt (String) = Slovakia
+  sov_a3 (String) = SVK
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Slovakia
+  adm0_a3 (String) = SVK
+  geou_dif (Integer) = 0
+  geounit (String) = Slovakia
+  gu_a3 (String) = SVK
+  su_dif (Integer) = 0
+  subunit (String) = Slovakia
+  su_a3 (String) = SVK
+  brk_diff (Integer) = 0
+  name (String) = Slovakia
+  name_long (String) = Slovakia
+  brk_a3 (String) = SVK
+  brk_name (String) = Slovakia
+  brk_group (String) = (null)
+  abbrev (String) = Svk.
+  postal (String) = SK
+  formal_en (String) = Slovak Republic
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Slovak Republic
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 2
+  mapcolor8 (Integer) = 4
+  mapcolor9 (Integer) = 4
+  mapcolor13 (Integer) = 9
+  pop_est (Integer) = 5463046
+  gdp_md_est (Integer) = 119500
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = SK
+  iso_a3 (String) = SVK
+  iso_n3 (String) = 703
+  un_a3 (String) = 703
+  wb_a2 (String) = SK
+  wb_a3 (String) = SVK
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = SVK
+  adm0_a3_us (String) = SVK
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Eastern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 8
+  long_len (Integer) = 8
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = SVK.geojson
+  POLYGON ((18.8531441586136 49.4962297633776,18.9095748226763 49.4358458522446,19.3207125179905 49.5715740016592,19.8250228207269 49.2171253525692,20.4158394711198 49.4314533554998,20.8879553565384 49.3287722845358,21.6078080583642 49.4701073268541,22.5581376482118 49.0857380234671,22.2808419125336 48.8253921575807,22.0856083513349 48.4222643092718,21.8722363624017 48.31997081155,20.8012939795849 48.6238540716424,20.4735620459899 48.5628500433218,20.2390543962493 48.3275672470969,19.7694706560131 48.2026911484636,19.6613635596585 48.2666148952087,19.1743648617399 48.1113788926039,18.7770247738477 48.0817682969006,18.6965128923369 47.8809536810144,17.85713260262 47.7584288600504,17.4884729346498 47.8674661321862,16.979666782304 48.1234970159763,16.879982944413 48.4700133327095,16.9602881201946 48.5969823268506,17.1019848975389 48.8169688991171,17.5450069515771 48.8000190293254,17.8864848161618 48.9034752467737,17.9135115902505 48.9964928248991,18.1049727718919 49.0439834661753,18.170498488038 49.2715147975564,18.3999935238462 49.31500051533,18.5549711442895 49.4950153672188,18.8531441586136 49.4962297633776))
+
+OGRFeature(OGRGeoJSON):36
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 6
+  sovereignt (String) = Slovenia
+  sov_a3 (String) = SVN
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Slovenia
+  adm0_a3 (String) = SVN
+  geou_dif (Integer) = 0
+  geounit (String) = Slovenia
+  gu_a3 (String) = SVN
+  su_dif (Integer) = 0
+  subunit (String) = Slovenia
+  su_a3 (String) = SVN
+  brk_diff (Integer) = 0
+  name (String) = Slovenia
+  name_long (String) = Slovenia
+  brk_a3 (String) = SVN
+  brk_name (String) = Slovenia
+  brk_group (String) = (null)
+  abbrev (String) = Slo.
+  postal (String) = SLO
+  formal_en (String) = Republic of Slovenia
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Slovenia
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 2
+  mapcolor8 (Integer) = 3
+  mapcolor9 (Integer) = 2
+  mapcolor13 (Integer) = 12
+  pop_est (Integer) = 2005692
+  gdp_md_est (Integer) = 59340
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2011
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = SI
+  iso_a3 (String) = SVN
+  iso_n3 (String) = 705
+  un_a3 (String) = 705
+  wb_a2 (String) = SI
+  wb_a3 (String) = SVN
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = SVN
+  adm0_a3_us (String) = SVN
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Southern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 8
+  long_len (Integer) = 8
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = SVN.geojson
+  POLYGON ((13.8064754574215 46.5093061386912,14.6324715511748 46.4318173284695,15.137091912505 46.658702704447,16.0116638526127 46.6836107448117,16.2022982113374 46.852385972677,16.3705049984474 46.8413272161665,16.5648083838649 46.5037509222198,15.7687329444086 46.2381082220234,15.6715295752676 45.8341535507979,15.3239538916724 45.7317825384277,15.3276745947974 45.4523163925932,14.9352437679729 45.4716950547027,14.5951094906278 45.6349409043127,14.4119682145854 45.4661656764475,13.7150598486972 45.5003237981924,13.9376302425783 45.5910159368646,13.6981099789055 46.0167780625174,13.8064754574215 46.5093061386912))
+
+OGRFeature(OGRGeoJSON):37
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 3
+  sovereignt (String) = Sweden
+  sov_a3 (String) = SWE
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Sweden
+  adm0_a3 (String) = SWE
+  geou_dif (Integer) = 0
+  geounit (String) = Sweden
+  gu_a3 (String) = SWE
+  su_dif (Integer) = 0
+  subunit (String) = Sweden
+  su_a3 (String) = SWE
+  brk_diff (Integer) = 0
+  name (String) = Sweden
+  name_long (String) = Sweden
+  brk_a3 (String) = SWE
+  brk_name (String) = Sweden
+  brk_group (String) = (null)
+  abbrev (String) = Swe.
+  postal (String) = S
+  formal_en (String) = Kingdom of Sweden
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Sweden
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 1
+  mapcolor8 (Integer) = 4
+  mapcolor9 (Integer) = 2
+  mapcolor13 (Integer) = 4
+  pop_est (Integer) = 9059651
+  gdp_md_est (Integer) = 344300
+  pop_year (Integer) = -99
+  lastcensus (Integer) = -99
+  gdp_year (Integer) = -99
+  economy (String) = 2. Developed region: nonG7
+  income_grp (String) = 1. High income: OECD
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = SE
+  iso_a3 (String) = SWE
+  iso_n3 (String) = 752
+  un_a3 (String) = 752
+  wb_a2 (String) = SE
+  wb_a3 (String) = SWE
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = SWE
+  adm0_a3_us (String) = SWE
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Northern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 6
+  long_len (Integer) = 6
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = SWE.geojson
+  POLYGON ((22.1831734555019 65.7237405463202,21.2135168799772 65.0260053575153,21.369631381931 64.4135879584243,19.7788757666902 63.609554348395,17.8477791683752 62.7494001328968,17.1195548845181 61.341165676511,17.8313460629064 60.6365833604274,18.7877217953321 60.0819143744226,17.8692248877763 58.9537661810587,16.8291850114701 58.7198269720734,16.4477095882915 57.0411180690719,15.8797855974038 56.1043018662687,14.6666813493521 56.2008851182222,14.1007210628915 55.4077810736227,12.9429105973921 55.3617373724506,12.625100538797 56.307080186582,11.7879423356687 57.4418171250631,11.0273686051969 58.8561494004594,11.4682719255111 59.432393296946,12.3003658382749 60.11793284773,12.6311466813752 61.2935716823701,11.9920642432216 61.8003624538566,11.9305692887942 63.128317572677,12.5799353369739 64.0662189805583,13.5719161312487 64.0491140814697,13.9199052263022 64.4454206407161,13.5556897315091 64.7870276963815,15.108411492583 66.1938668890955,16.1087121924568 67.3024555528369,16.7688786149855 68.0139366726314,17.7291817562653 68.0105518663163,17.9938684424643 68.5673912624774,19.8785596045813 68.4071943223726,20.0252689958579 69.0651386583127,20.6455928890895 69.1062472602009,21.9785347836261 68.6168456081807,23.5394730974344 67.9360086127353,23.5658797543356 66.3960509304374,23.9033785336338 66.0069273952796,22.1831734555019 65.7237405463202))
+
+OGRFeature(OGRGeoJSON):38
+  scalerank (Integer) = 1
+  featurecla (String) = Admin-0 country
+  labelrank (Integer) = 3
+  sovereignt (String) = Ukraine
+  sov_a3 (String) = UKR
+  adm0_dif (Integer) = 0
+  level (Integer) = 2
+  type (String) = Sovereign country
+  admin (String) = Ukraine
+  adm0_a3 (String) = UKR
+  geou_dif (Integer) = 0
+  geounit (String) = Ukraine
+  gu_a3 (String) = UKR
+  su_dif (Integer) = 0
+  subunit (String) = Ukraine
+  su_a3 (String) = UKR
+  brk_diff (Integer) = 0
+  name (String) = Ukraine
+  name_long (String) = Ukraine
+  brk_a3 (String) = UKR
+  brk_name (String) = Ukraine
+  brk_group (String) = (null)
+  abbrev (String) = Ukr.
+  postal (String) = UA
+  formal_en (String) = Ukraine
+  formal_fr (String) = (null)
+  note_adm0 (String) = (null)
+  note_brk (String) = (null)
+  name_sort (String) = Ukraine
+  name_alt (String) = (null)
+  mapcolor7 (Integer) = 5
+  mapcolor8 (Integer) = 1
+  mapcolor9 (Integer) = 6
+  mapcolor13 (Integer) = 3
+  pop_est (Integer) = 45700395
+  gdp_md_est (Integer) = 339800
+  pop_year (Integer) = -99
+  lastcensus (Integer) = 2001
+  gdp_year (Integer) = -99
+  economy (String) = 6. Developing region
+  income_grp (String) = 4. Lower middle income
+  wikipedia (Integer) = -99
+  fips_10 (String) = (null)
+  iso_a2 (String) = UA
+  iso_a3 (String) = UKR
+  iso_n3 (String) = 804
+  un_a3 (String) = 804
+  wb_a2 (String) = UA
+  wb_a3 (String) = UKR
+  woe_id (Integer) = -99
+  adm0_a3_is (String) = UKR
+  adm0_a3_us (String) = UKR
+  adm0_a3_un (Integer) = -99
+  adm0_a3_wb (Integer) = -99
+  continent (String) = Europe
+  region_un (String) = Europe
+  subregion (String) = Eastern Europe
+  region_wb (String) = Europe & Central Asia
+  name_len (Integer) = 7
+  long_len (Integer) = 7
+  abbrev_len (Integer) = 4
+  tiny (Integer) = -99
+  homepart (Integer) = 1
+  filename (String) = UKR.geojson
+  POLYGON ((31.7859981625716 52.1016779648855,32.1594120623127 52.0612669948332,32.4120581397876 52.2886949733497,32.715760532367 52.2384654811621,33.7526998227357 52.3350745713317,34.391730584457 51.7688817409258,34.1419783871904 51.5664134792062,34.2248157081543 51.2559931504289,35.0221830584179 51.2075723333715,35.3779236183151 50.7739553900103,35.3561161638879 50.5771973740591,36.6261678403253 50.2255909287451,37.3934595069951 50.3839533555036,38.0106311378569 49.9156615260746,38.5949882342134 49.9264619004236,40.0690584653391 49.6010554062817,40.0807890154693 49.3074299179993,39.6746639340875 48.7838184678019,39.8956323585676 48.2324050970314,39.7382776222388 47.898937079452,38.7705847511412 47.8256082220298,38.2551123390298 47.5464004583568,38.2235380388994 47.1021898463759,37.42513715999 47.0222205674042,36.7598547706644 46.6987002630409,35.8236845232648 46.6459644638871,34.9623417498239 46.2731965195496,35.020787794746 45.6512189804847,35.5100085792532 45.4099933945462,36.5299979998302 45.4699897324371,36.3347127621992 45.113215643894,35.2399992205281 44.9399962428516,33.8825110206529 44.3614785833441,33.32642093276 44.5648770208449,33.5469242693495 45.0347708196749,32.4541744321055 45.3274661321761,32.6308044776791 45.5191856959789,33.5881620623184 45.8515685084802,33.2985673357547 46.0805984563978,31.7441402524152 46.3333478867374,31.6753072446024 46.7062450221555,30.7487488136091 46.583100084004,30.3776086768889 46.0324101832857,29.6032890154274 45.2933080104311,29.1497249692017 45.4649254420724,28.6797794939394 45.3040308701317,28.233553501099 45.4882831894684,28.4852694027928 45.5969070501459,28.6599874203716 45.9399868841316,28.9337174822216 46.2588304713725,28.8629724464141 46.4378893092638,29.0721069678993 46.5176777207225,29.1706539242799 46.3792623968287,29.7599719581364 46.3499876979354,30.0246586443354 46.423936672545,29.8382100766263 46.5253258327017,29.9088517595693 46.6743606634315,29.5596741065731 46.9285828720913,29.4151351254527 47.3466452093326,29.0508679542273 47.5102269557525,29.122698195113 47.8490951605065,28.6708911475852 48.1181485052341,28.2595467465418 48.1555622422134,27.5225374691952 48.4671194525011,26.8578235206248 48.3682107610945,26.6193367855978 48.2207262233335,26.1974503923669 48.2208812526303,25.9459411964024 47.9871487493742,25.207743361113 47.8910564235275,24.8663171729606 47.7375257431883,24.4020561052504 47.9818777532804,23.7609582862374 47.9855984564055,23.1422363624068 48.0963410508069,22.7105314470405 47.8821939153894,22.6408199398788 48.1502395696874,22.0856083513349 48.4222643092718,22.2808419125336 48.8253921575807,22.5581376482118 49.0857380234671,22.7764188982126 49.0273953314096,22.5184501482116 49.4767735866197,23.4265084164444 50.3085057643574,23.9227571957433 50.4248810898788,24.0299857927489 50.7054066025752,23.5270707536844 51.5784540879302,24.0050777523842 51.6174439560945,24.5531063168395 51.8884610052492,25.327787713327 51.9106560329186,26.3379586117686 51.8322887233479,27.4540661964084 51.5923033717845,28.2416150245366 51.5722270778391,28.6176127458922 51.4277139349348,28.9928353207635 51.6020443792715,29.2549381853479 51.3682343613669,30.1573637224609 51.4161384141015,30.5551172218115 51.3195034857157,30.6194543800148 51.8228060980224,30.927549269339 52.0423534206144,31.7859981625716 52.1016779648855))
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/ogrinfo_test2_out2.txt	Tue Feb 26 11:50:33 2019 -0500
@@ -0,0 +1,83 @@
+INFO: Open of `/tmp/tmpEj2FAw/files/000/dataset_6.dat'
+      using driver `GeoJSON' successful.
+
+Layer name: OGRGeoJSON
+Geometry: Unknown (any)
+Feature Count: 39
+Extent: (-180.000000, 2.053389) - (180.000000, 81.250400)
+Layer SRS WKT:
+GEOGCS["WGS 84",
+    DATUM["WGS_1984",
+        SPHEROID["WGS 84",6378137,298.257223563,
+            AUTHORITY["EPSG","7030"]],
+        AUTHORITY["EPSG","6326"]],
+    PRIMEM["Greenwich",0,
+        AUTHORITY["EPSG","8901"]],
+    UNIT["degree",0.0174532925199433,
+        AUTHORITY["EPSG","9122"]],
+    AUTHORITY["EPSG","4326"]]
+Geometry Column = _ogr_geometry_
+scalerank: Integer (0.0)
+featurecla: String (0.0)
+labelrank: Integer (0.0)
+sovereignt: String (0.0)
+sov_a3: String (0.0)
+adm0_dif: Integer (0.0)
+level: Integer (0.0)
+type: String (0.0)
+admin: String (0.0)
+adm0_a3: String (0.0)
+geou_dif: Integer (0.0)
+geounit: String (0.0)
+gu_a3: String (0.0)
+su_dif: Integer (0.0)
+subunit: String (0.0)
+su_a3: String (0.0)
+brk_diff: Integer (0.0)
+name: String (0.0)
+name_long: String (0.0)
+brk_a3: String (0.0)
+brk_name: String (0.0)
+brk_group: String (0.0)
+abbrev: String (0.0)
+postal: String (0.0)
+formal_en: String (0.0)
+formal_fr: String (0.0)
+note_adm0: String (0.0)
+note_brk: String (0.0)
+name_sort: String (0.0)
+name_alt: String (0.0)
+mapcolor7: Integer (0.0)
+mapcolor8: Integer (0.0)
+mapcolor9: Integer (0.0)
+mapcolor13: Integer (0.0)
+pop_est: Integer (0.0)
+gdp_md_est: Integer (0.0)
+pop_year: Integer (0.0)
+lastcensus: Integer (0.0)
+gdp_year: Integer (0.0)
+economy: String (0.0)
+income_grp: String (0.0)
+wikipedia: Integer (0.0)
+fips_10: String (0.0)
+iso_a2: String (0.0)
+iso_a3: String (0.0)
+iso_n3: String (0.0)
+un_a3: String (0.0)
+wb_a2: String (0.0)
+wb_a3: String (0.0)
+woe_id: Integer (0.0)
+adm0_a3_is: String (0.0)
+adm0_a3_us: String (0.0)
+adm0_a3_un: Integer (0.0)
+adm0_a3_wb: Integer (0.0)
+continent: String (0.0)
+region_un: String (0.0)
+subregion: String (0.0)
+region_wb: String (0.0)
+name_len: Integer (0.0)
+long_len: Integer (0.0)
+abbrev_len: Integer (0.0)
+tiny: Integer (0.0)
+homepart: Integer (0.0)
+filename: String (0.0)