Skip to content

Instantly share code, notes, and snippets.

@kristw
Last active September 14, 2023 13:16
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save kristw/7fbf031e3205a8a453a8 to your computer and use it in GitHub Desktop.
Save kristw/7fbf031e3205a8a453a8 to your computer and use it in GitHub Desktop.
Thailand map

My original intention was to create a simple example of Thailand map using d3.js. Then I got a bit too excited and added some effects.

  • Each province is color-coded by the length of its name in English.
  • Hover each province to see text effects.
  • New font is chosen randomly every time you change the province.
  • Click on a province to zoom in. Click somewhere else to zoom out.

Credit Apisit Toompakdee for his GeoJSON file thailand.json

<!DOCTYPE html>
<meta charset="utf-8">
<style>
@import url(http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Josefin+Slab|Arvo|Lato|Vollkorn|Abril+Fatface|Old+Standard+TT|Droid+Sans|Lobster|Inconsolata|Montserrat|Playfair+Display|Karla|Alegreya|Libre+Baskerville|Merriweather|Lora|Archivo+Narrow|Neuton|Signika|Questrial|Fjalla+One|Bitter|Varela+Round);
.background {
fill: #eee;
pointer-events: all;
}
.map-layer {
fill: #fff;
stroke: #aaa;
}
.effect-layer{
pointer-events:none;
}
text{
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 300;
}
text.big-text{
font-size: 30px;
font-weight: 400;
}
.effect-layer text, text.dummy-text{
font-size: 12px;
}
</style>
<body>
<svg></svg>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
var width = 960,
height = 500,
centered;
// Define color scale
var color = d3.scale.linear()
.domain([1, 20])
.clamp(true)
.range(['#fff', '#409A99']);
var projection = d3.geo.mercator()
.scale(1700)
// Customize the projection to make the center of Thailand become the center of the map
.rotate([-100.6331, -13.2])
.translate([width / 2, height / 2]);
var path = d3.geo.path()
.projection(projection);
// Set svg width & height
var svg = d3.select('svg')
.attr('width', width)
.attr('height', height);
// Add background
svg.append('rect')
.attr('class', 'background')
.attr('width', width)
.attr('height', height)
.on('click', clicked);
var g = svg.append('g');
var effectLayer = g.append('g')
.classed('effect-layer', true);
var mapLayer = g.append('g')
.classed('map-layer', true);
var dummyText = g.append('text')
.classed('dummy-text', true)
.attr('x', 10)
.attr('y', 30)
.style('opacity', 0);
var bigText = g.append('text')
.classed('big-text', true)
.attr('x', 20)
.attr('y', 45);
// Load map data
d3.json('thailand.json', function(error, mapData) {
var features = mapData.features;
// Update color scale domain based on data
color.domain([0, d3.max(features, nameLength)]);
// Draw each province as a path
mapLayer.selectAll('path')
.data(features)
.enter().append('path')
.attr('d', path)
.attr('vector-effect', 'non-scaling-stroke')
.style('fill', fillFn)
.on('mouseover', mouseover)
.on('mouseout', mouseout)
.on('click', clicked);
});
// Get province name
function nameFn(d){
return d && d.properties ? d.properties.CHA_NE : null;
}
// Get province name length
function nameLength(d){
var n = nameFn(d);
return n ? n.length : 0;
}
// Get province color
function fillFn(d){
return color(nameLength(d));
}
// When clicked, zoom in
function clicked(d) {
var x, y, k;
// Compute centroid of the selected path
if (d && centered !== d) {
var centroid = path.centroid(d);
x = centroid[0];
y = centroid[1];
k = 4;
centered = d;
} else {
x = width / 2;
y = height / 2;
k = 1;
centered = null;
}
// Highlight the clicked province
mapLayer.selectAll('path')
.style('fill', function(d){return centered && d===centered ? '#D5708B' : fillFn(d);});
// Zoom
g.transition()
.duration(750)
.attr('transform', 'translate(' + width / 2 + ',' + height / 2 + ')scale(' + k + ')translate(' + -x + ',' + -y + ')');
}
function mouseover(d){
// Highlight hovered province
d3.select(this).style('fill', 'orange');
// Draw effects
textArt(nameFn(d));
}
function mouseout(d){
// Reset province color
mapLayer.selectAll('path')
.style('fill', function(d){return centered && d===centered ? '#D5708B' : fillFn(d);});
// Remove effect text
effectLayer.selectAll('text').transition()
.style('opacity', 0)
.remove();
// Clear province name
bigText.text('');
}
// Gimmick
// Just me playing around.
// You won't need this for a regular map.
var BASE_FONT = "'Helvetica Neue', Helvetica, Arial, sans-serif";
var FONTS = [
"Open Sans",
"Josefin Slab",
"Arvo",
"Lato",
"Vollkorn",
"Abril Fatface",
"Old StandardTT",
"Droid+Sans",
"Lobster",
"Inconsolata",
"Montserrat",
"Playfair Display",
"Karla",
"Alegreya",
"Libre Baskerville",
"Merriweather",
"Lora",
"Archivo Narrow",
"Neuton",
"Signika",
"Questrial",
"Fjalla One",
"Bitter",
"Varela Round"
];
function textArt(text){
// Use random font
var fontIndex = Math.round(Math.random() * FONTS.length);
var fontFamily = FONTS[fontIndex] + ', ' + BASE_FONT;
bigText
.style('font-family', fontFamily)
.text(text);
// Use dummy text to compute actual width of the text
// getBBox() will return bounding box
dummyText
.style('font-family', fontFamily)
.text(text);
var bbox = dummyText.node().getBBox();
var textWidth = bbox.width;
var textHeight = bbox.height;
var xGap = 3;
var yGap = 1;
// Generate the positions of the text in the background
var xPtr = 0;
var yPtr = 0;
var positions = [];
var rowCount = 0;
while(yPtr < height){
while(xPtr < width){
var point = {
text: text,
index: positions.length,
x: xPtr,
y: yPtr
};
var dx = point.x - width/2 + textWidth/2;
var dy = point.y - height/2;
point.distance = dx*dx + dy*dy;
positions.push(point);
xPtr += textWidth + xGap;
}
rowCount++;
xPtr = rowCount%2===0 ? 0 : -textWidth/2;
xPtr += Math.random() * 10;
yPtr += textHeight + yGap;
}
var selection = effectLayer.selectAll('text')
.data(positions, function(d){return d.text+'/'+d.index;});
// Clear old ones
selection.exit().transition()
.style('opacity', 0)
.remove();
// Create text but set opacity to 0
selection.enter().append('text')
.text(function(d){return d.text;})
.attr('x', function(d){return d.x;})
.attr('y', function(d){return d.y;})
.style('font-family', fontFamily)
.style('fill', '#777')
.style('opacity', 0);
selection
.style('font-family', fontFamily)
.attr('x', function(d){return d.x;})
.attr('y', function(d){return d.y;});
// Create transtion to increase opacity from 0 to 0.1-0.5
// Add delay based on distance from the center of the <svg> and a bit more randomness.
selection.transition()
.delay(function(d){
return d.distance * 0.01 + Math.random()*1000;
})
.style('opacity', function(d){
return 0.1 + Math.random()*0.4;
});
}
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"CHA_NE":"Bangkok"},"geometry":{"type":"Polygon","coordinates":[[[100.559019,13.914433],[100.574039,13.954562],[100.689727,13.931039],[100.686902,13.91625],[100.913987,13.946353],[100.902163,13.848803],[100.938566,13.814345],[100.909593,13.789957],[100.859299,13.689401],[100.788024,13.716589],[100.709716,13.718383],[100.698228,13.655846],[100.655502,13.672308],[100.636762,13.649983],[100.579017,13.668765],[100.587359,13.692179],[100.554503,13.705207],[100.548193,13.673413],[100.517587,13.667284],[100.521041,13.605151],[100.491186,13.586162],[100.453849,13.605957],[100.454095,13.49981],[100.410036,13.492746],[100.416069,13.56209],[100.393427,13.55846],[100.377962,13.620916],[100.339402,13.654972],[100.329137,13.803956],[100.466333,13.789008],[100.500533,13.800491],[100.543763,13.84979],[100.559019,13.914433]]]}},{"type":"Feature","properties":{"CHA_NE":"KamphaengPhet"},"geometry":{"type":"Polygon","coordinates":[[[99.318634,15.924425],[99.289694,15.892033],[99.208136,15.948463],[99.087133,15.886621],[99.097237,15.930515],[99.074622,15.952513],[99.088832,15.980101],[99.083392,16.026395],[99.116273,16.074801],[99.10824,16.09945],[99.050117,16.137851],[99.082973,16.213358],[99.049351,16.257568],[99.041871,16.374743],[99.016435,16.386476],[99.022101,16.431168],[98.994996,16.453364],[98.986072,16.488174],[99.001718,16.499675],[99.023723,16.475108],[99.12188,16.474235],[99.191006,16.538765],[99.239994,16.533075],[99.256453,16.568673],[99.247616,16.662006],[99.271998,16.668561],[99.302984,16.739343],[99.29211,16.785025],[99.32427,16.813251],[99.385734,16.808741],[99.383777,16.867005],[99.459631,16.877254],[99.488373,16.910371],[99.514395,16.866974],[99.576938,16.854885],[99.596024,16.791229],[99.641465,16.744539],[99.693198,16.731769],[99.696997,16.716595],[99.735032,16.735321],[99.729718,16.712122],[99.768411,16.682612],[99.809194,16.698105],[99.815971,16.720951],[99.845224,16.715431],[99.855139,16.737477],[99.895935,16.725991],[99.911704,16.605943],[99.962144,16.571289],[100.016237,16.582069],[100.01125,16.547804],[100.034925,16.502688],[99.996553,16.443981],[99.983484,16.378022],[100.020604,16.313319],[99.999361,16.289138],[100.028351,16.270696],[100.021037,16.251816],[100.045793,16.206179],[99.934179,16.054204],[99.888974,16.050443],[99.843547,16.015925],[99.845773,15.979793],[99.805364,15.921113],[99.769495,15.920054],[99.772044,15.90043],[99.741703,15.856987],[99.708765,15.879011],[99.657511,15.857596],[99.607173,15.89828],[99.554611,15.905759],[99.537819,15.925197],[99.479141,15.922169],[99.466645,15.901194],[99.425546,15.920289],[99.408905,15.91119],[99.357016,15.926567],[99.330075,15.911609],[99.318634,15.924425]]]}},{"type":"Feature","properties":{"CHA_NE":"ChaiNat"},"geometry":{"type":"Polygon","coordinates":[[[100.286856,15.211718],[100.35331,15.119121],[100.29407,15.08225],[100.293127,15.064906],[100.235405,15.058292],[100.226205,15.045043],[100.232924,15.023579],[100.268378,15.010136],[100.259967,14.990426],[100.278599,14.960359],[100.259181,14.944061],[100.201322,14.954153],[100.135213,14.912754],[100.11234,14.946919],[100.039485,14.960953],[100.040049,14.917857],[99.969266,14.901845],[99.88253,14.912565],[99.8543,14.938743],[99.800715,14.941487],[99.764084,14.961973],[99.720792,14.961308],[99.7301,15.001242],[99.779917,15.026106],[99.772559,15.055927],[99.806125,15.094378],[99.748409,15.163993],[99.759797,15.175539],[99.721254,15.230683],[99.732178,15.246451],[99.72037,15.276946],[99.786443,15.319447],[99.871544,15.305112],[99.884074,15.285911],[99.958506,15.306994],[100.041508,15.296031],[100.05662,15.273855],[100.100478,15.336886],[100.073464,15.372056],[100.105564,15.37459],[100.087317,15.405095],[100.102456,15.41725],[100.212077,15.355789],[100.26266,15.287439],[100.286856,15.211718]]]}},{"type":"Feature","properties":{"CHA_NE":"NakhonNayok"},"geometry":{"type":"Polygon","coordinates":[[[101.164366,14.342944],[101.210572,14.372097],[101.202201,14.402031],[101.213013,14.436022],[101.228952,14.432953],[101.224929,14.472054],[101.242839,14.471474],[101.276199,14.51253],[101.283968,14.489531],[101.306188,14.498268],[101.311805,14.472217],[101.365766,14.449068],[101.422601,14.383293],[101.475796,14.364831],[101.505186,14.308602],[101.491608,14.261704],[101.414997,14.253368],[101.381779,14.272428],[101.382589,14.210702],[101.290414,14.153415],[101.319222,14.060974],[101.304161,14.07413],[101.284049,14.050946],[101.213882,14.055631],[101.196692,14.013755],[101.138953,14.001238],[101.137644,13.969378],[100.914188,13.962279],[100.913943,14.221245],[100.946959,14.237376],[100.948468,14.307843],[100.987144,14.287056],[101.01905,14.302423],[101.059869,14.349289],[101.056827,14.414351],[101.085674,14.382785],[101.146992,14.374015],[101.164366,14.342944]]]}},{"type":"Feature","properties":{"CHA_NE":"NakhonPathom"},"geometry":{"type":"Polygon","coordinates":[[[99.927003,13.937719],[99.855505,13.96181],[99.850682,13.99625],[99.829301,13.998936],[99.853604,14.042219],[99.847837,14.059216],[99.905677,14.114999],[99.957299,14.134604],[100.131405,14.14566],[100.243437,14.210652],[100.246296,14.173716],[100.284134,14.169814],[100.265561,14.009097],[100.297789,13.962786],[100.265456,13.920716],[100.329137,13.803956],[100.33718,13.736028],[100.289573,13.713799],[100.266332,13.682146],[100.225561,13.670084],[100.215774,13.687526],[100.164791,13.690255],[100.13471,13.682492],[100.102781,13.649121],[100.058016,13.650848],[100.068451,13.692592],[100.027659,13.698734],[100.028821,13.75435],[99.961174,13.732758],[99.942091,13.745016],[99.939336,13.7702],[99.970694,13.801124],[99.962485,13.832145],[99.900464,13.842058],[99.91232,13.872789],[99.896343,13.903328],[99.915456,13.907337],[99.927003,13.937719]]]}},{"type":"Feature","properties":{"CHA_NE":"NakhonSawan"},"geometry":{"type":"Polygon","coordinates":[[[99.664929,15.668461],[99.518267,15.563269],[99.469808,15.56445],[99.421864,15.614487],[99.378383,15.625565],[99.354694,15.681768],[99.288155,15.697147],[99.276153,15.717826],[99.245258,15.722643],[99.216665,15.76811],[99.165862,15.777549],[99.102879,15.820967],[99.086118,15.885193],[99.208815,15.948564],[99.289694,15.892033],[99.319744,15.927496],[99.330075,15.911609],[99.357665,15.926526],[99.466645,15.901194],[99.501894,15.9286],[99.607173,15.89828],[99.657511,15.857596],[99.708765,15.879011],[99.741703,15.856987],[99.772044,15.90043],[99.769495,15.920054],[99.805364,15.921113],[99.845773,15.979793],[99.843547,16.015925],[99.888974,16.050443],[99.934179,16.054204],[100.017145,16.152096],[100.025975,16.191064],[100.043906,16.168325],[100.076581,16.161344],[100.076886,16.124632],[100.113466,16.080129],[100.115405,16.046676],[100.177943,15.92462],[100.200854,15.93489],[100.225835,15.920345],[100.24893,15.959025],[100.275989,15.943422],[100.309655,15.961065],[100.322717,15.987726],[100.345781,15.974534],[100.332892,15.939461],[100.467731,15.926563],[100.519903,15.94069],[100.530899,15.937403],[100.523591,15.912659],[100.580356,15.944228],[100.623489,16.000489],[100.777045,15.998457],[100.764121,15.911155],[100.811173,15.881613],[100.796711,15.827272],[100.833512,15.67962],[100.812569,15.569637],[100.793684,15.539843],[100.745181,15.512645],[100.769603,15.496549],[100.771615,15.465763],[100.643928,15.417546],[100.633345,15.322953],[100.579222,15.273684],[100.595604,15.258872],[100.591191,15.229355],[100.510823,15.166377],[100.507352,15.131738],[100.458605,15.115507],[100.423047,15.052846],[100.34289,15.111006],[100.353311,15.119317],[100.340325,15.149637],[100.301652,15.174325],[100.26266,15.287439],[100.202915,15.364633],[100.124894,15.411942],[100.054704,15.424157],[100.067411,15.457035],[100.031909,15.47415],[100.024944,15.507306],[100.00131,15.482646],[99.959479,15.506578],[99.947144,15.499459],[99.932051,15.673401],[99.866726,15.655018],[99.861812,15.617047],[99.79492,15.642003],[99.731974,15.688332],[99.664929,15.668461]]]}},{"type":"Feature","properties":{"CHA_NE":"Nonthaburi"},"geometry":{"type":"Polygon","coordinates":[[[100.55035,13.877477],[100.543763,13.84979],[100.507618,13.82276],[100.515247,13.81327],[100.472583,13.790439],[100.329137,13.803956],[100.265456,13.920716],[100.297789,13.962786],[100.265561,14.009097],[100.2794,14.12525],[100.299369,14.140537],[100.339985,14.122528],[100.331628,14.056389],[100.364065,13.992478],[100.463467,13.971611],[100.501084,13.936397],[100.538835,13.956059],[100.567803,13.951508],[100.55035,13.877477]]]}},{"type":"Feature","properties":{"CHA_NE":"PathumThani"},"geometry":{"type":"Polygon","coordinates":[[[100.469712,13.966251],[100.355694,14.000814],[100.331628,14.056389],[100.344808,14.116915],[100.489353,14.108721],[100.517445,14.128408],[100.55327,14.111233],[100.61985,14.131958],[100.891546,14.276041],[100.891637,14.24349],[100.951474,14.271768],[100.946959,14.237376],[100.913943,14.221245],[100.914017,13.946357],[100.686902,13.91625],[100.689727,13.931039],[100.640718,13.931445],[100.612702,13.95516],[100.605806,13.943957],[100.538835,13.956059],[100.501084,13.936397],[100.469712,13.966251]]]}},{"type":"Feature","properties":{"CHA_NE":"PhraNakhonSiAyutthaya"},"geometry":{"type":"Polygon","coordinates":[[[100.454914,14.118895],[100.344287,14.115145],[100.299369,14.140537],[100.2794,14.12525],[100.284134,14.169814],[100.245902,14.174175],[100.242692,14.284589],[100.279201,14.340395],[100.26687,14.382119],[100.280462,14.3993],[100.244149,14.459794],[100.258356,14.490957],[100.31975,14.488736],[100.389667,14.510832],[100.414166,14.502369],[100.417815,14.444028],[100.461999,14.439105],[100.499398,14.457246],[100.497455,14.525684],[100.478023,14.565602],[100.502706,14.629647],[100.496884,14.654069],[100.506224,14.668269],[100.513384,14.656227],[100.548912,14.67161],[100.602657,14.655216],[100.575088,14.59851],[100.603592,14.578415],[100.601919,14.553848],[100.67052,14.553895],[100.686803,14.584509],[100.782383,14.567052],[100.77809,14.529886],[100.748136,14.51756],[100.772196,14.492546],[100.759722,14.413147],[100.797396,14.390128],[100.773479,14.327038],[100.823064,14.329087],[100.823119,14.243522],[100.61985,14.131958],[100.549287,14.110429],[100.517445,14.128408],[100.4949,14.109346],[100.454914,14.118895]]]}},{"type":"Feature","properties":{"CHA_NE":"Phichit"},"geometry":{"type":"Polygon","coordinates":[[[100.471509,15.927318],[100.331106,15.940178],[100.345781,15.974534],[100.322717,15.987726],[100.309655,15.961065],[100.275989,15.943422],[100.24893,15.959025],[100.225835,15.920345],[100.200854,15.93489],[100.17516,15.926531],[100.160457,15.980472],[100.115405,16.046676],[100.113466,16.080129],[100.076886,16.124632],[100.076581,16.161344],[100.026397,16.189381],[100.045642,16.20889],[100.021037,16.251816],[100.028351,16.270696],[99.999361,16.289138],[100.020604,16.313319],[99.983409,16.379366],[99.996553,16.443981],[100.034925,16.502688],[100.01125,16.547804],[100.01753,16.578242],[100.081678,16.579336],[100.085459,16.597487],[100.116597,16.608359],[100.18538,16.586178],[100.176257,16.598645],[100.203821,16.623933],[100.191831,16.644764],[100.216257,16.648117],[100.232663,16.618796],[100.227256,16.541815],[100.241485,16.53075],[100.320619,16.524303],[100.377524,16.54622],[100.39345,16.51955],[100.422943,16.508235],[100.475559,16.525761],[100.509832,16.574309],[100.593411,16.589555],[100.582653,16.469668],[100.594518,16.467486],[100.600976,16.383794],[100.624218,16.362998],[100.61627,16.317215],[100.647883,16.326598],[100.678604,16.251673],[100.709059,16.265128],[100.719448,16.253744],[100.644353,16.139987],[100.655231,16.10799],[100.633012,16.04385],[100.72641,16.026973],[100.765456,16.003823],[100.6248,16.000893],[100.580356,15.944228],[100.524988,15.912959],[100.530899,15.937403],[100.520041,15.940662],[100.471509,15.927318]]]}},{"type":"Feature","properties":{"CHA_NE":"Phitsanulok"},"geometry":{"type":"Polygon","coordinates":[[[100.833446,16.505611],[100.793485,16.472431],[100.805488,16.449712],[100.786332,16.449254],[100.772167,16.426135],[100.710659,16.419294],[100.705234,16.378911],[100.671113,16.335889],[100.616618,16.31707],[100.624218,16.362998],[100.600976,16.383794],[100.594518,16.467486],[100.582653,16.469668],[100.582633,16.51644],[100.596644,16.532402],[100.596758,16.584515],[100.584207,16.595873],[100.509832,16.574309],[100.475559,16.525761],[100.422943,16.508235],[100.39345,16.51955],[100.377524,16.54622],[100.320619,16.524303],[100.241485,16.53075],[100.227256,16.541815],[100.232663,16.618796],[100.216257,16.648117],[100.191831,16.644764],[100.203821,16.623933],[100.176257,16.598645],[100.18538,16.586178],[100.116597,16.608359],[100.059022,16.573593],[100.00745,16.585974],[99.962144,16.571289],[99.910591,16.607491],[99.898662,16.722805],[99.855139,16.737477],[99.873143,16.766354],[99.924599,16.765572],[99.911196,16.804847],[99.943067,16.827762],[99.945103,16.866986],[99.995307,16.866619],[100.012008,16.8461],[100.021622,16.860754],[100.006744,16.869303],[100.009166,16.889318],[100.085257,16.888956],[100.111739,16.918935],[100.094358,16.992145],[100.023234,17.025919],[99.991488,17.079636],[99.947913,17.080416],[99.961751,17.126219],[99.952609,17.16974],[99.972918,17.165207],[99.998998,17.186435],[100.030209,17.163984],[100.036226,17.181314],[100.157703,17.211162],[100.188136,17.193069],[100.252662,17.24428],[100.237579,17.315544],[100.245001,17.354002],[100.303421,17.378955],[100.325355,17.369982],[100.330689,17.386817],[100.368497,17.389254],[100.426798,17.421447],[100.496615,17.425159],[100.513659,17.403842],[100.597672,17.422785],[100.613845,17.465047],[100.645522,17.474063],[100.642306,17.493025],[100.739727,17.541672],[100.802136,17.638204],[100.844194,17.65492],[100.874281,17.710942],[100.955559,17.7005],[100.988443,17.743142],[101.007085,17.731375],[101.009131,17.699233],[100.967254,17.571372],[100.924515,17.570276],[100.903539,17.593194],[100.881404,17.585131],[100.86155,17.549766],[100.871242,17.529139],[100.833597,17.474527],[100.85667,17.450948],[100.894713,17.465622],[100.916153,17.451486],[100.914975,17.341955],[101.005823,17.335047],[101.049358,17.284818],[101.083002,17.281294],[101.109452,17.234529],[101.076822,17.179145],[101.070571,17.115456],[101.052364,17.115338],[101.052509,16.953332],[101.027728,16.941477],[101.072522,16.919479],[101.067049,16.902232],[101.031719,16.893341],[101.012587,16.858068],[100.973484,16.842017],[100.978678,16.825998],[100.955101,16.825417],[100.952954,16.79281],[100.90322,16.801688],[100.899192,16.761779],[100.920176,16.758607],[100.9152,16.727823],[100.942517,16.681237],[100.92465,16.665504],[100.88827,16.667588],[100.862647,16.640093],[100.845976,16.578577],[100.8583,16.547088],[100.833446,16.505611]]]}},{"type":"Feature","properties":{"CHA_NE":"LopBuri"},"geometry":{"type":"Polygon","coordinates":[[[101.379701,15.178095],[101.414478,15.045224],[101.362828,15.046315],[101.347943,14.992744],[101.323097,14.973867],[101.278758,14.972332],[101.257845,14.912631],[101.192534,14.921157],[101.145436,14.896816],[101.09418,14.907677],[101.073646,14.879093],[101.089544,14.848207],[101.065437,14.839773],[101.088945,14.830413],[101.062989,14.783189],[100.999141,14.832086],[100.968171,14.833385],[100.955898,14.825991],[100.955478,14.779113],[100.973075,14.759178],[100.944172,14.74113],[100.900057,14.76986],[100.871241,14.763116],[100.83828,14.803096],[100.744685,14.804716],[100.724059,14.759198],[100.68624,14.748104],[100.656085,14.71543],[100.605587,14.72121],[100.624822,14.679494],[100.602657,14.655216],[100.548912,14.67161],[100.512982,14.656229],[100.516406,14.68193],[100.468688,14.709077],[100.488292,14.748622],[100.472286,14.762012],[100.467244,14.836639],[100.436495,14.867273],[100.420012,14.926657],[100.449022,14.941917],[100.441994,15.000089],[100.469329,15.026908],[100.431718,15.071264],[100.458605,15.115507],[100.507352,15.131738],[100.506533,15.159857],[100.538561,15.197428],[100.591191,15.229355],[100.595604,15.258872],[100.579222,15.273684],[100.633345,15.322953],[100.653177,15.425349],[100.776141,15.461957],[100.804698,15.49051],[100.890266,15.474621],[100.947259,15.445731],[100.977819,15.413352],[100.978763,15.383389],[101.022226,15.339003],[101.092796,15.352145],[101.132969,15.32663],[101.204281,15.320422],[101.303093,15.388051],[101.302577,15.519897],[101.288863,15.533124],[101.310951,15.574957],[101.36651,15.580076],[101.385598,15.486286],[101.375794,15.377107],[101.390399,15.240737],[101.357188,15.247882],[101.379701,15.178095]]]}},{"type":"Feature","properties":{"CHA_NE":"SamutPrakan"},"geometry":{"type":"Polygon","coordinates":[[[100.597329,13.538991],[100.553415,13.504443],[100.454095,13.49981],[100.453849,13.605957],[100.491186,13.586162],[100.521041,13.605151],[100.520424,13.67563],[100.547464,13.672689],[100.555826,13.705897],[100.588193,13.690873],[100.579017,13.668765],[100.636762,13.649983],[100.655502,13.672308],[100.698228,13.655846],[100.709716,13.718383],[100.788024,13.716589],[100.950877,13.664437],[100.963416,13.644533],[100.923673,13.593826],[100.907057,13.59202],[100.914035,13.56958],[100.903753,13.55437],[100.889811,13.564156],[100.871892,13.492128],[100.847822,13.474878],[100.597329,13.538991]]]}},{"type":"Feature","properties":{"CHA_NE":"SamutSongkhram"},"geometry":{"type":"Polygon","coordinates":[[[99.912504,13.511034],[99.966566,13.485463],[100.005502,13.511057],[100.040797,13.504285],[100.078809,13.425306],[100.047658,13.408648],[100.025627,13.363786],[99.998993,13.368196],[99.99627,13.329545],[99.9246,13.28047],[99.895188,13.284435],[99.884186,13.246396],[99.859719,13.245902],[99.854832,13.325862],[99.912504,13.511034]]]}},{"type":"Feature","properties":{"CHA_NE":"SamutSakhon"},"geometry":{"type":"Polygon","coordinates":[[[100.33941,13.654956],[100.377962,13.620916],[100.393427,13.55846],[100.416069,13.56209],[100.410006,13.49291],[100.330134,13.486375],[100.284373,13.504475],[100.245419,13.4731],[100.078809,13.425306],[100.073335,13.456295],[100.026704,13.517532],[100.043918,13.54629],[100.031429,13.612212],[100.053901,13.618973],[100.058016,13.650848],[100.102781,13.649121],[100.13471,13.682492],[100.164791,13.690255],[100.215774,13.687526],[100.225561,13.670084],[100.266332,13.682146],[100.289573,13.713799],[100.336553,13.736051],[100.33941,13.654956]]]}},{"type":"Feature","properties":{"CHA_NE":"Saraburi"},"geometry":{"type":"Polygon","coordinates":[[[101.373205,14.805072],[101.3361,14.785717],[101.334165,14.765958],[101.304936,14.756696],[101.299092,14.737332],[101.283091,14.745512],[101.280717,14.726196],[101.231733,14.73196],[101.211206,14.75666],[101.188848,14.74885],[101.215559,14.588063],[101.181069,14.544208],[101.242575,14.471323],[101.224929,14.472054],[101.228952,14.432953],[101.209259,14.428301],[101.210572,14.372097],[101.164164,14.342946],[101.146992,14.374015],[101.085674,14.382785],[101.055922,14.414015],[101.059869,14.349289],[101.01905,14.302423],[100.987144,14.287056],[100.949035,14.308217],[100.951474,14.271768],[100.891637,14.24349],[100.891546,14.276041],[100.823119,14.243522],[100.823064,14.329087],[100.772642,14.328652],[100.797396,14.390128],[100.759722,14.413147],[100.772196,14.492546],[100.748113,14.517112],[100.77809,14.529886],[100.782383,14.567052],[100.686803,14.584509],[100.67052,14.553895],[100.602029,14.553826],[100.603592,14.578415],[100.575351,14.596005],[100.58445,14.631772],[100.624822,14.679494],[100.605587,14.72121],[100.656085,14.71543],[100.68624,14.748104],[100.725614,14.760772],[100.743833,14.804325],[100.836984,14.803479],[100.871827,14.762808],[100.889255,14.772831],[100.933306,14.74397],[100.962584,14.745256],[100.973079,14.759626],[100.955478,14.779113],[100.958627,14.828123],[100.999141,14.832086],[101.062989,14.783189],[101.088945,14.830413],[101.065437,14.839773],[101.089544,14.848207],[101.073646,14.879093],[101.09418,14.907677],[101.145436,14.896816],[101.192534,14.921157],[101.257845,14.912631],[101.278758,14.972332],[101.323097,14.973867],[101.347943,14.992744],[101.362828,15.046315],[101.414846,15.045183],[101.453757,14.862057],[101.373205,14.805072]]]}},{"type":"Feature","properties":{"CHA_NE":"SingBuri"},"geometry":{"type":"Polygon","coordinates":[[[100.343172,14.781816],[100.328633,14.802325],[100.294943,14.781349],[100.273002,14.799097],[100.228424,14.788743],[100.204866,14.808542],[100.224522,14.882666],[100.206224,14.895109],[100.223985,14.903502],[100.186179,14.90754],[100.181378,14.93298],[100.202197,14.95428],[100.272593,14.952284],[100.268378,15.010136],[100.232924,15.023579],[100.226205,15.045043],[100.235405,15.058292],[100.293127,15.064906],[100.29407,15.08225],[100.34289,15.111006],[100.422658,15.052854],[100.431718,15.071264],[100.468611,15.029814],[100.441994,15.000089],[100.449022,14.941917],[100.420012,14.926657],[100.436495,14.867273],[100.467244,14.836639],[100.472286,14.762012],[100.488292,14.748622],[100.467933,14.714898],[100.41547,14.724866],[100.412275,14.752472],[100.381204,14.742278],[100.343172,14.781816]]]}},{"type":"Feature","properties":{"CHA_NE":"SuphanBuri"},"geometry":{"type":"Polygon","coordinates":[[[100.196981,14.556187],[100.231856,14.489566],[100.252677,14.482955],[100.244547,14.456294],[100.280462,14.3993],[100.26687,14.382119],[100.279201,14.340395],[100.242692,14.284589],[100.243437,14.210652],[100.131405,14.14566],[99.95176,14.133574],[99.905677,14.114999],[99.85518,14.061931],[99.811529,14.065079],[99.790757,14.10004],[99.767743,14.094869],[99.759421,14.171049],[99.821368,14.222401],[99.818621,14.526923],[99.780317,14.559936],[99.784775,14.601295],[99.833247,14.618415],[99.794709,14.684676],[99.79577,14.738047],[99.719227,14.748724],[99.64918,14.803911],[99.607801,14.783446],[99.568752,14.78338],[99.547411,14.801688],[99.549022,14.721757],[99.461518,14.696971],[99.435104,14.774975],[99.358256,14.771585],[99.293502,14.831689],[99.281639,14.86167],[99.31342,14.884052],[99.322058,14.920127],[99.312533,14.967096],[99.283131,14.998039],[99.307611,15.025784],[99.298998,15.053836],[99.319648,15.081248],[99.338633,15.0816],[99.365858,15.048364],[99.42034,15.048089],[99.439895,14.985649],[99.524269,14.982804],[99.588072,14.9454],[99.631372,14.943184],[99.630954,14.987783],[99.662783,14.989252],[99.711452,14.981611],[99.720833,14.961229],[99.849399,14.940633],[99.88253,14.912565],[99.96664,14.902034],[100.040049,14.917857],[100.039485,14.960953],[100.11234,14.946919],[100.135213,14.912754],[100.202197,14.95428],[100.182048,14.924826],[100.192369,14.904084],[100.223985,14.903502],[100.206224,14.895109],[100.224522,14.882666],[100.2043,14.809505],[100.228424,14.788743],[100.208568,14.776663],[100.205602,14.741351],[100.207883,14.683887],[100.230549,14.651682],[100.194704,14.608269],[100.209942,14.579498],[100.196981,14.556187]]]}},{"type":"Feature","properties":{"CHA_NE":"Sukhothai"},"geometry":{"type":"Polygon","coordinates":[[[99.955129,17.171035],[99.961751,17.126219],[99.947913,17.080416],[99.991488,17.079636],[100.023234,17.025919],[100.094358,16.992145],[100.111739,16.918935],[100.085257,16.888956],[100.009166,16.889318],[100.006744,16.869303],[100.021622,16.860754],[100.012008,16.8461],[99.995307,16.866619],[99.945103,16.866986],[99.943067,16.827762],[99.911196,16.804847],[99.924599,16.765572],[99.872287,16.765986],[99.845224,16.715431],[99.815971,16.720951],[99.809194,16.698105],[99.766652,16.683033],[99.729718,16.712122],[99.735032,16.735321],[99.696997,16.716595],[99.693198,16.731769],[99.622229,16.757055],[99.576229,16.826078],[99.576938,16.854885],[99.514395,16.866974],[99.48866,16.910305],[99.459631,16.877254],[99.4258,16.880302],[99.442999,16.907961],[99.411867,16.946662],[99.42191,17.008638],[99.394117,17.024647],[99.393775,17.082271],[99.370881,17.097085],[99.339276,17.093096],[99.321331,17.112904],[99.315432,17.269216],[99.34041,17.26716],[99.390809,17.207084],[99.455756,17.253897],[99.452015,17.296409],[99.4767,17.340469],[99.469239,17.368213],[99.430013,17.391789],[99.442834,17.434537],[99.40637,17.469126],[99.421351,17.518841],[99.439347,17.528539],[99.435506,17.563269],[99.413387,17.574401],[99.425631,17.608863],[99.453764,17.598204],[99.447432,17.644186],[99.476441,17.67672],[99.471855,17.73777],[99.519461,17.797185],[99.59858,17.821424],[99.650075,17.795745],[99.66999,17.800534],[99.694063,17.750355],[99.728829,17.721987],[99.776675,17.787378],[99.811137,17.804489],[99.893491,17.806918],[99.92041,17.788859],[99.911696,17.763143],[99.963181,17.710736],[99.976781,17.657136],[99.974883,17.621575],[99.924199,17.586199],[99.942439,17.544778],[99.927854,17.520517],[100.002148,17.462053],[99.990456,17.407384],[100.008675,17.384323],[100.000692,17.354345],[100.015092,17.332204],[99.997239,17.291227],[99.964958,17.275949],[99.954527,17.242626],[99.973671,17.241238],[99.957943,17.230711],[99.982117,17.216335],[99.971299,17.210541],[99.982919,17.181007],[99.972918,17.165207],[99.955129,17.171035]]]}},{"type":"Feature","properties":{"CHA_NE":"UthaiThani"},"geometry":{"type":"Polygon","coordinates":[[[99.878082,15.2933],[99.786538,15.319473],[99.72037,15.276946],[99.724512,15.219749],[99.759961,15.175087],[99.748409,15.163993],[99.806125,15.094378],[99.772559,15.055927],[99.779917,15.026106],[99.7301,15.001242],[99.722035,14.978289],[99.63373,14.989713],[99.631372,14.943184],[99.584032,14.946493],[99.524269,14.982804],[99.439895,14.985649],[99.42034,15.048089],[99.365858,15.048364],[99.338633,15.0816],[99.319648,15.081248],[99.298998,15.053836],[99.301887,15.014885],[99.25707,14.987487],[99.191959,15.029018],[99.15762,15.017647],[99.135474,15.037276],[99.143104,15.05185],[99.07738,15.038595],[99.00034,15.07157],[99.00652,15.144494],[98.983855,15.180491],[99.002376,15.184945],[99.006501,15.239351],[99.03847,15.28875],[99.030461,15.328109],[99.043185,15.376345],[99.068669,15.396938],[99.055715,15.443859],[99.078664,15.499089],[99.047948,15.554722],[99.094369,15.582525],[99.115148,15.632061],[99.111552,15.668468],[99.138921,15.731235],[99.133937,15.797839],[99.216665,15.76811],[99.245258,15.722643],[99.276153,15.717826],[99.288155,15.697147],[99.354694,15.681768],[99.378383,15.625565],[99.421864,15.614487],[99.471503,15.564003],[99.518267,15.563269],[99.596414,15.628495],[99.70579,15.685838],[99.733954,15.687755],[99.79492,15.642003],[99.861185,15.617074],[99.866726,15.655018],[99.932051,15.673401],[99.94686,15.499856],[99.959479,15.506578],[100.00131,15.482646],[100.024944,15.507306],[100.031909,15.47415],[100.067411,15.457035],[100.054704,15.424157],[100.101613,15.419065],[100.087669,15.401745],[100.106855,15.377813],[100.074306,15.375959],[100.100981,15.338837],[100.05662,15.273855],[100.041508,15.296031],[100.005511,15.30194],[99.878082,15.2933]]]}},{"type":"Feature","properties":{"CHA_NE":"AngThong"},"geometry":{"type":"Polygon","coordinates":[[[100.490272,14.536397],[100.500287,14.458521],[100.461999,14.439105],[100.417815,14.444028],[100.408278,14.510596],[100.31975,14.488736],[100.233112,14.488019],[100.196083,14.559549],[100.209942,14.579498],[100.194704,14.608269],[100.230549,14.651682],[100.207857,14.683992],[100.209024,14.777248],[100.273002,14.799097],[100.294943,14.781349],[100.328633,14.802325],[100.340713,14.771187],[100.370125,14.764185],[100.380943,14.742392],[100.406341,14.755654],[100.415223,14.724988],[100.456418,14.724168],[100.495224,14.700587],[100.500374,14.681863],[100.516406,14.68193],[100.478026,14.566082],[100.490272,14.536397]]]}},{"type":"Feature","properties":{"CHA_NE":"Phetchabun"},"geometry":{"type":"Polygon","coordinates":[[[101.482092,17.071406],[101.530467,17.054161],[101.549113,16.997015],[101.574236,16.983635],[101.607773,16.998727],[101.628602,17.04487],[101.649865,17.041814],[101.670157,16.961363],[101.691898,16.935972],[101.676651,16.866661],[101.721672,16.807201],[101.686734,16.798217],[101.726496,16.75428],[101.787984,16.764568],[101.795913,16.733491],[101.767238,16.680414],[101.730742,16.652363],[101.688535,16.686224],[101.634296,16.680285],[101.599449,16.708265],[101.571211,16.693284],[101.562957,16.65397],[101.510788,16.67882],[101.526092,16.620057],[101.500388,16.610907],[101.494982,16.57081],[101.519538,16.548786],[101.465727,16.517309],[101.472648,16.477589],[101.39876,16.40013],[101.407352,16.379975],[101.381478,16.359485],[101.370734,16.273918],[101.353716,16.259627],[101.372133,16.243301],[101.37946,16.18793],[101.341041,16.153207],[101.322881,16.040867],[101.351641,15.970549],[101.374782,15.967367],[101.360421,15.923485],[101.374448,15.919159],[101.332039,15.880703],[101.331224,15.803945],[101.316914,15.790135],[101.335761,15.753105],[101.406275,15.736381],[101.370937,15.577427],[101.310951,15.574957],[101.288863,15.533124],[101.302577,15.519897],[101.304972,15.391644],[101.204281,15.320422],[101.132969,15.32663],[101.092796,15.352145],[101.022226,15.339003],[100.975973,15.38803],[100.977615,15.413675],[100.921219,15.46728],[100.804698,15.49051],[100.770688,15.461142],[100.769603,15.496549],[100.745238,15.51178],[100.793845,15.539996],[100.825229,15.614418],[100.833512,15.67962],[100.796711,15.827272],[100.811173,15.881613],[100.764121,15.911155],[100.784763,15.992208],[100.72641,16.026973],[100.633012,16.04385],[100.655231,16.10799],[100.644353,16.139987],[100.719314,16.250981],[100.709059,16.265128],[100.678604,16.251673],[100.647883,16.326598],[100.69789,16.365753],[100.710659,16.419294],[100.772167,16.426135],[100.786332,16.449254],[100.805488,16.449712],[100.793485,16.472431],[100.816719,16.482881],[100.8583,16.547088],[100.845976,16.578577],[100.862647,16.640093],[100.88827,16.667588],[100.92465,16.665504],[100.942425,16.68106],[100.9152,16.727823],[100.920176,16.758607],[100.899192,16.761779],[100.90322,16.801688],[100.952954,16.79281],[100.954834,16.825109],[100.978915,16.826194],[100.973484,16.842017],[101.012587,16.858068],[101.045163,16.904301],[101.106828,16.907006],[101.115522,17.016535],[101.169933,17.039371],[101.20181,17.123589],[101.224461,17.131089],[101.25998,17.088979],[101.310198,17.092554],[101.327137,17.071184],[101.342705,17.086463],[101.385779,17.079168],[101.40372,17.092794],[101.438429,17.072875],[101.463134,17.095236],[101.482092,17.071406]]]}},{"type":"Feature","properties":{"CHA_NE":"Chanthaburi"},"geometry":{"type":"Polygon","coordinates":[[[102.424082,13.108566],[102.459195,13.082758],[102.494303,13.013609],[102.530014,13.002453],[102.487988,12.983359],[102.501336,12.959873],[102.485659,12.94841],[102.508987,12.894887],[102.500045,12.850977],[102.532329,12.812375],[102.535891,12.778758],[102.517576,12.752361],[102.441152,12.737049],[102.385168,12.679506],[102.40141,12.619556],[102.387669,12.604041],[102.423003,12.569942],[102.398786,12.567265],[102.359001,12.596325],[102.305053,12.556607],[102.316216,12.510953],[102.34203,12.481305],[102.319979,12.452652],[102.325496,12.427201],[102.372054,12.389337],[102.344703,12.363507],[102.332042,12.321812],[102.257478,12.293863],[102.165411,12.392847],[102.118561,12.408141],[102.124158,12.422047],[102.090133,12.464579],[102.060953,12.481267],[102.059442,12.468684],[102.043092,12.472631],[102.045488,12.491083],[102.035742,12.486634],[102.040936,12.50018],[102.017155,12.524702],[101.96267,12.542644],[101.94785,12.538022],[101.947904,12.516532],[101.889028,12.569835],[101.885498,12.582499],[101.909441,12.577126],[101.904986,12.596194],[101.88313,12.601847],[101.882678,12.587185],[101.86326,12.642445],[101.783038,12.691705],[101.799527,12.749849],[101.819559,12.754102],[101.831081,12.824801],[101.818208,12.899541],[101.809196,12.885254],[101.779569,12.951849],[101.757262,12.940372],[101.738824,12.959595],[101.758128,13.031318],[101.716878,13.034846],[101.685077,13.120707],[101.717235,13.182945],[101.77337,13.184913],[101.850266,13.247611],[101.870188,13.247716],[101.873045,13.223099],[101.886262,13.237249],[101.890989,13.227639],[101.905003,13.286554],[101.946301,13.292969],[101.967419,13.325124],[101.98913,13.333834],[102.010855,13.293295],[102.033467,13.284583],[102.028298,13.236425],[102.109885,13.265583],[102.129855,13.336297],[102.153667,13.299499],[102.187746,13.303104],[102.204304,13.258509],[102.27728,13.256737],[102.292038,13.266151],[102.290756,13.30008],[102.311327,13.287195],[102.336211,13.315046],[102.424082,13.108566]]]}},{"type":"Feature","properties":{"CHA_NE":"Chachoengsao"},"geometry":{"type":"Polygon","coordinates":[[[100.871435,13.512826],[100.889811,13.564156],[100.903753,13.55437],[100.914035,13.56958],[100.907057,13.59202],[100.963478,13.643684],[100.951408,13.664169],[100.855157,13.699368],[100.938566,13.814345],[100.902163,13.848803],[100.914188,13.962279],[101.137644,13.969378],[101.160779,13.933184],[101.14575,13.893337],[101.161538,13.889682],[101.139154,13.883009],[101.160539,13.863112],[101.149579,13.851513],[101.220959,13.886289],[101.249748,13.866081],[101.278677,13.878648],[101.342756,13.859003],[101.380199,13.872613],[101.384498,13.84639],[101.473931,13.820541],[101.53022,13.774725],[101.553366,13.795451],[101.555739,13.771724],[101.611244,13.739511],[101.66775,13.741667],[101.699666,13.791037],[101.750378,13.811649],[101.792164,13.770077],[101.797799,13.710519],[101.839746,13.698573],[101.833983,13.644975],[101.861137,13.632223],[101.889531,13.582332],[101.915093,13.585607],[101.895721,13.548563],[101.860386,13.537539],[101.914194,13.479752],[101.937132,13.476081],[101.938845,13.445321],[101.976962,13.408545],[101.98913,13.333834],[101.946301,13.292969],[101.905003,13.286554],[101.890989,13.227639],[101.886262,13.237249],[101.873045,13.223099],[101.870188,13.247716],[101.850266,13.247611],[101.77337,13.184913],[101.725732,13.178886],[101.667115,13.273041],[101.564801,13.330778],[101.531876,13.405973],[101.49129,13.427254],[101.454752,13.408622],[101.407817,13.464631],[101.370865,13.456931],[101.267226,13.567889],[101.146941,13.598731],[101.121961,13.564984],[101.055049,13.552207],[101.070627,13.517822],[101.006687,13.464263],[100.847822,13.474878],[100.870247,13.489129],[100.871435,13.512826]]]}},{"type":"Feature","properties":{"CHA_NE":"ChonBuri"},"geometry":{"type":"MultiPolygon","coordinates":[[[[100.930814,13.239073],[100.897522,13.302325],[100.925773,13.341252],[100.97738,13.358337],[100.986129,13.380344],[100.957483,13.4653],[101.007599,13.464715],[101.070627,13.517822],[101.055049,13.552207],[101.121961,13.564984],[101.152324,13.600232],[101.267226,13.567889],[101.361088,13.464402],[101.407817,13.464631],[101.4538,13.408951],[101.49129,13.427254],[101.531876,13.405973],[101.564801,13.330778],[101.668468,13.271711],[101.720162,13.17301],[101.696342,13.151877],[101.647233,13.164588],[101.618314,13.141989],[101.580953,13.1389],[101.572084,13.084458],[101.522506,13.075108],[101.483948,13.038863],[101.458878,13.034485],[101.436164,13.051516],[101.375534,13.040625],[101.324642,13.084466],[101.291977,13.051409],[101.26091,13.077484],[101.23371,13.067235],[101.195332,13.088198],[101.172973,13.071787],[101.201516,13.046967],[101.189331,13.03797],[101.098196,13.042728],[101.070136,13.008584],[101.103212,12.972657],[101.088337,12.915019],[101.062847,12.83321],[101.016672,12.796977],[101.023109,12.775353],[100.984363,12.693275],[100.993117,12.658354],[100.968133,12.644073],[100.963335,12.594851],[100.924636,12.606518],[100.913756,12.628018],[100.928179,12.642551],[100.913839,12.65996],[100.849862,12.649828],[100.861749,12.667325],[100.840278,12.683299],[100.857445,12.693703],[100.833825,12.713648],[100.8404,12.752763],[100.89368,12.766443],[100.913219,12.806963],[100.855824,12.918493],[100.882176,12.936469],[100.882993,12.970762],[100.905396,12.973374],[100.927668,13.007961],[100.907041,13.054698],[100.885115,13.059719],[100.895811,13.070478],[100.882815,13.063741],[100.871702,13.082399],[100.925023,13.170202],[100.930814,13.239073]]],[[[100.94644,12.569429],[100.946648,12.588703],[100.962936,12.561397],[100.952587,12.549456],[100.94644,12.569429]]],[[[100.805154,13.136132],[100.807332,13.179956],[100.822386,13.14116],[100.80938,13.12493],[100.805154,13.136132]]],[[[100.764071,12.702399],[100.774426,12.720605],[100.800804,12.718593],[100.806177,12.696933],[100.779051,12.671363],[100.764071,12.702399]]],[[[100.788503,12.935795],[100.774383,12.897612],[100.770278,12.927363],[100.788503,12.935795]]]]}},{"type":"Feature","properties":{"CHA_NE":"Trat"},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.846685,11.840661],[102.904608,11.768056],[102.91429,11.651079],[102.88825,11.761054],[102.773797,11.913145],[102.784313,11.94479],[102.763833,12.02313],[102.625592,12.148487],[102.647188,12.156952],[102.640034,12.180249],[102.591132,12.210397],[102.560869,12.196524],[102.57416,12.165269],[102.554507,12.162159],[102.558976,12.095475],[102.584344,12.069126],[102.583958,12.04318],[102.547637,12.058691],[102.53749,12.106804],[102.473113,12.142402],[102.471583,12.164736],[102.398053,12.167833],[102.34586,12.198996],[102.321975,12.179821],[102.274851,12.205758],[102.28887,12.22995],[102.257478,12.293863],[102.332042,12.321812],[102.344703,12.363507],[102.372054,12.389337],[102.325496,12.427201],[102.319979,12.452652],[102.34203,12.481305],[102.316216,12.510953],[102.304992,12.556463],[102.359001,12.596325],[102.398786,12.567265],[102.423003,12.569942],[102.387669,12.604041],[102.40141,12.619556],[102.383384,12.673506],[102.441152,12.737049],[102.468125,12.732899],[102.492282,12.757326],[102.50828,12.752955],[102.49721,12.704598],[102.51068,12.669862],[102.5331,12.652896],[102.579021,12.653465],[102.617181,12.615143],[102.645497,12.610641],[102.644565,12.584775],[102.662062,12.58238],[102.678121,12.538104],[102.711479,12.508171],[102.728704,12.511956],[102.720705,12.486341],[102.734207,12.489129],[102.737467,12.465736],[102.781128,12.434018],[102.784546,12.399954],[102.742509,12.386691],[102.726462,12.36531],[102.703709,12.172385],[102.770455,12.073608],[102.784146,11.976932],[102.815716,11.933844],[102.846685,11.840661]]],[[[102.566114,11.738113],[102.564319,11.70142],[102.579216,11.712188],[102.608733,11.688902],[102.603273,11.626107],[102.588147,11.612515],[102.601114,11.607212],[102.592459,11.561674],[102.566896,11.593949],[102.525742,11.606069],[102.545556,11.622889],[102.523781,11.657379],[102.547691,11.759441],[102.566114,11.738113]]],[[[102.469886,11.830641],[102.5102,11.827389],[102.4874,11.811808],[102.487739,11.790695],[102.467287,11.81212],[102.444021,11.810515],[102.469886,11.830641]]],[[[102.268902,12.135232],[102.250236,12.157716],[102.353217,12.112922],[102.397892,12.04793],[102.391271,12.028647],[102.406435,12.030599],[102.446781,11.976848],[102.435801,11.951945],[102.38189,12.000235],[102.369207,11.993276],[102.377295,11.964206],[102.317352,11.974359],[102.314789,11.957392],[102.292082,11.985143],[102.290744,12.057764],[102.248768,12.137907],[102.268902,12.135232]]],[[[102.411496,11.903747],[102.407592,11.893619],[102.393476,11.906371],[102.411496,11.903747]]]]}},{"type":"Feature","properties":{"CHA_NE":"PrachinBuri"},"geometry":{"type":"Polygon","coordinates":[[[101.969286,14.240556],[101.982178,14.236916],[101.967034,14.227171],[102.106298,14.149586],[102.098631,14.102915],[102.047203,14.076552],[102.038657,14.037308],[101.935147,14.007934],[101.951189,13.934271],[101.914603,13.937542],[101.903814,13.9075],[101.926228,13.856526],[101.924328,13.818686],[101.947823,13.802684],[101.941733,13.765498],[101.918578,13.754017],[101.941679,13.739612],[101.938543,13.646407],[101.953431,13.62761],[101.941834,13.607565],[101.909536,13.605278],[101.915256,13.585642],[101.889531,13.582332],[101.861137,13.632223],[101.833983,13.644975],[101.839746,13.698573],[101.797799,13.710519],[101.792164,13.770077],[101.746993,13.813249],[101.699666,13.791037],[101.66775,13.741667],[101.611244,13.739511],[101.555739,13.771724],[101.553366,13.795451],[101.53022,13.774725],[101.473931,13.820541],[101.384498,13.84639],[101.380199,13.872613],[101.342756,13.859003],[101.278677,13.878648],[101.249748,13.866081],[101.220959,13.886289],[101.147946,13.852945],[101.160756,13.862428],[101.139154,13.883009],[101.161538,13.889682],[101.14575,13.893337],[101.160779,13.933184],[101.137573,13.967363],[101.138953,14.001238],[101.196692,14.013755],[101.213882,14.055631],[101.284049,14.050946],[101.304161,14.07413],[101.319354,14.061082],[101.288674,14.149634],[101.382589,14.210702],[101.381779,14.272428],[101.414997,14.253368],[101.498639,14.268414],[101.497097,14.33412],[101.432218,14.389382],[101.447596,14.421149],[101.437447,14.446286],[101.485341,14.462555],[101.532842,14.425418],[101.605653,14.436527],[101.741602,14.307471],[101.749367,14.348126],[101.788225,14.359853],[101.813052,14.34791],[101.839956,14.366156],[101.838706,14.352442],[101.88838,14.318959],[101.922202,14.330944],[101.946301,14.301841],[101.958336,14.318798],[101.996532,14.315312],[101.998555,14.289803],[101.943288,14.251754],[101.969286,14.240556]]]}},{"type":"Feature","properties":{"CHA_NE":"Rayong"},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.556729,13.075946],[101.587425,13.117812],[101.580953,13.1389],[101.618314,13.141989],[101.647233,13.164588],[101.696744,13.151994],[101.68499,13.119129],[101.699707,13.108782],[101.692958,13.091898],[101.716192,13.036157],[101.758843,13.028093],[101.738651,12.959891],[101.756866,12.940449],[101.776073,12.952286],[101.790226,12.943091],[101.826771,12.85504],[101.819559,12.754102],[101.799527,12.749849],[101.783038,12.691705],[101.70185,12.698162],[101.6721,12.68349],[101.6459,12.641927],[101.581869,12.652361],[101.55647,12.626345],[101.437252,12.626871],[101.418256,12.583002],[101.348803,12.628132],[101.237366,12.664762],[101.161335,12.67173],[101.151347,12.658132],[101.13979,12.675305],[101.147726,12.646914],[101.132605,12.674793],[101.106001,12.678905],[100.992355,12.656501],[100.984363,12.693275],[101.023109,12.775353],[101.016672,12.796977],[101.062847,12.83321],[101.088687,12.916226],[101.103212,12.972657],[101.070136,13.008584],[101.098196,13.042728],[101.189331,13.03797],[101.201516,13.046967],[101.172973,13.071787],[101.195332,13.088198],[101.23371,13.067235],[101.26091,13.077484],[101.291977,13.051409],[101.324642,13.084466],[101.364703,13.044486],[101.419301,13.038841],[101.436164,13.051516],[101.459615,13.034387],[101.515119,13.057122],[101.522506,13.075108],[101.556729,13.075946]]],[[[101.460925,12.565253],[101.44316,12.52204],[101.446,12.580799],[101.468253,12.572775],[101.460925,12.565253]]]]}},{"type":"Feature","properties":{"CHA_NE":"SaKaeo"},"geometry":{"type":"Polygon","coordinates":[[[102.290756,13.30008],[102.285379,13.26051],[102.204304,13.258509],[102.187746,13.303104],[102.153667,13.299499],[102.129855,13.336297],[102.109885,13.265583],[102.028298,13.236425],[102.035431,13.280113],[101.992218,13.324456],[101.976962,13.408545],[101.938845,13.445321],[101.937132,13.476081],[101.914194,13.479752],[101.860386,13.537539],[101.898329,13.551057],[101.916384,13.58621],[101.909536,13.605278],[101.941834,13.607565],[101.953431,13.62761],[101.938543,13.646407],[101.941679,13.739612],[101.918578,13.754017],[101.941733,13.765498],[101.947823,13.802684],[101.924328,13.818686],[101.926228,13.856526],[101.903814,13.9075],[101.914603,13.937542],[101.951189,13.934271],[101.937275,13.959575],[101.939906,14.016444],[102.038657,14.037308],[102.047203,14.076552],[102.098631,14.102915],[102.105823,14.15196],[102.165551,14.141133],[102.183219,14.19592],[102.211834,14.17206],[102.217259,14.144707],[102.269715,14.146101],[102.271735,14.12883],[102.289196,14.135105],[102.307851,14.120166],[102.357128,14.131722],[102.36107,14.165932],[102.381578,14.146398],[102.424017,14.157695],[102.473748,14.13131],[102.550007,14.134844],[102.608276,14.171167],[102.634746,14.148812],[102.656022,14.16538],[102.696536,14.130532],[102.764648,14.139893],[102.792613,14.17279],[102.800372,14.158765],[102.810923,14.172447],[102.864288,14.148828],[102.876171,14.173615],[102.931845,14.174655],[102.940061,14.147377],[102.895909,14.058101],[102.911313,14.017732],[102.866746,14.004892],[102.78279,13.932717],[102.766394,13.856429],[102.722834,13.793297],[102.731974,13.773345],[102.590468,13.706465],[102.550765,13.665002],[102.575481,13.629486],[102.624181,13.608144],[102.574438,13.603522],[102.562784,13.578625],[102.526656,13.564119],[102.43323,13.561392],[102.365179,13.577934],[102.339067,13.556906],[102.362372,13.505526],[102.345224,13.348142],[102.359593,13.311793],[102.347854,13.297541],[102.331576,13.31654],[102.311327,13.287195],[102.290756,13.30008]]]}},{"type":"Feature","properties":{"CHA_NE":"Kanchanaburi"},"geometry":{"type":"Polygon","coordinates":[[[98.498266,14.516143],[98.491335,14.540641],[98.461617,14.530682],[98.4593,14.578726],[98.437201,14.613066],[98.366269,14.666532],[98.352936,14.698907],[98.323509,14.709819],[98.2541,14.813894],[98.260787,14.856885],[98.229737,14.889546],[98.250104,14.915577],[98.232293,14.967328],[98.208569,14.984194],[98.213107,15.020531],[98.234379,15.042931],[98.182513,15.113173],[98.213052,15.177638],[98.198044,15.23356],[98.258451,15.223649],[98.28044,15.270447],[98.303706,15.280275],[98.296705,15.313387],[98.353995,15.294465],[98.401736,15.25385],[98.418374,15.268617],[98.414363,15.294724],[98.386467,15.303021],[98.415007,15.322851],[98.416498,15.363824],[98.455455,15.367892],[98.449052,15.384252],[98.470424,15.371454],[98.482764,15.39176],[98.50008,15.389734],[98.537212,15.371231],[98.559121,15.336368],[98.580481,15.376865],[98.585227,15.471419],[98.552757,15.602378],[98.558764,15.651486],[98.581797,15.660724],[98.591098,15.644423],[98.627018,15.638309],[98.624699,15.626449],[98.648664,15.632795],[98.724133,15.517151],[98.702632,15.50145],[98.759566,15.472324],[98.754291,15.441431],[98.830993,15.345861],[98.870219,15.325525],[98.886222,15.275381],[98.911139,15.268396],[98.922648,15.246305],[98.955457,15.247141],[98.970484,15.192581],[99.00652,15.144494],[99.00034,15.07157],[99.07738,15.038595],[99.143104,15.05185],[99.135474,15.037276],[99.162528,15.015324],[99.191959,15.029018],[99.256121,14.987665],[99.283131,14.998039],[99.303361,14.981827],[99.321206,14.948217],[99.317584,14.893349],[99.281638,14.861377],[99.308852,14.812846],[99.357834,14.77182],[99.435104,14.774975],[99.462098,14.696806],[99.549022,14.721757],[99.547411,14.801688],[99.568752,14.78338],[99.607801,14.783446],[99.64918,14.803911],[99.719227,14.748724],[99.795387,14.738663],[99.794709,14.684676],[99.833247,14.618415],[99.784775,14.601295],[99.780317,14.559936],[99.818621,14.526923],[99.821368,14.222401],[99.759421,14.171049],[99.767646,14.095155],[99.790757,14.10004],[99.810798,14.065561],[99.847837,14.059216],[99.853604,14.042219],[99.829301,13.998936],[99.850682,13.99625],[99.855505,13.96181],[99.886659,13.944121],[99.855603,13.919773],[99.837686,13.865608],[99.819972,13.864806],[99.809835,13.808782],[99.666182,13.846299],[99.549828,13.75924],[99.505213,13.765982],[99.470406,13.806473],[99.453621,13.781516],[99.35371,13.747692],[99.299757,13.740108],[99.284677,13.761476],[99.266452,13.743288],[99.222046,13.748583],[99.203225,13.729929],[99.172588,13.739918],[99.161728,13.726044],[99.153694,13.755879],[99.122563,13.771598],[99.121228,13.813158],[99.099775,13.838181],[99.109638,13.890163],[99.080825,13.8915],[99.059738,13.929447],[99.018937,13.947161],[98.997868,14.018471],[98.971231,14.034388],[98.959014,14.096839],[98.899644,14.108177],[98.867185,14.147574],[98.705366,14.253702],[98.697946,14.27505],[98.609686,14.315731],[98.593636,14.377191],[98.575894,14.369202],[98.498266,14.516143]]]}},{"type":"Feature","properties":{"CHA_NE":"Tak"},"geometry":{"type":"Polygon","coordinates":[[[99.026857,16.382532],[99.041498,16.375593],[99.052332,16.330634],[99.048968,16.258679],[99.083009,16.213115],[99.050117,16.137851],[99.10824,16.09945],[99.116273,16.074801],[99.086567,16.041412],[99.088832,15.980101],[99.074571,15.952909],[99.097186,15.930961],[99.085328,15.909373],[99.094179,15.83696],[99.133548,15.801174],[99.138921,15.731235],[99.094369,15.582525],[99.047948,15.554722],[99.078664,15.499089],[99.055715,15.443859],[99.068669,15.396938],[99.043185,15.376345],[99.030461,15.328109],[99.03847,15.28875],[99.006501,15.239351],[99.002376,15.184945],[98.983855,15.180491],[98.955457,15.247141],[98.922648,15.246305],[98.911139,15.268396],[98.886222,15.275381],[98.870219,15.325525],[98.830993,15.345861],[98.754291,15.441431],[98.759566,15.472324],[98.702632,15.50145],[98.724133,15.517151],[98.648664,15.632795],[98.624699,15.626449],[98.627018,15.638309],[98.58984,15.645047],[98.582749,15.660541],[98.558764,15.651486],[98.546701,15.682118],[98.61035,15.876645],[98.595779,15.875378],[98.584754,15.917672],[98.608888,15.977507],[98.596951,16.007973],[98.561883,16.032715],[98.566609,16.055975],[98.590771,16.075785],[98.608239,16.042533],[98.625291,16.042135],[98.6269,16.061564],[98.661777,16.073707],[98.686743,16.132972],[98.743593,16.118568],[98.779956,16.126357],[98.804265,16.103945],[98.847699,16.127356],[98.862419,16.170496],[98.853557,16.219528],[98.903921,16.253961],[98.911128,16.298316],[98.928205,16.306537],[98.926443,16.344786],[98.90942,16.347018],[98.918491,16.387238],[98.878915,16.42525],[98.829015,16.422184],[98.816961,16.385028],[98.784437,16.368251],[98.77692,16.345163],[98.727946,16.33258],[98.702694,16.271273],[98.681795,16.281721],[98.675333,16.271359],[98.666174,16.346725],[98.652802,16.351565],[98.66444,16.364951],[98.65642,16.399287],[98.635921,16.411369],[98.651517,16.470192],[98.633412,16.477489],[98.597687,16.546742],[98.582768,16.547595],[98.570726,16.631944],[98.51223,16.643974],[98.516165,16.694589],[98.4951,16.690644],[98.501362,16.7154],[98.472653,16.713436],[98.463403,16.728399],[98.485551,16.789614],[98.519814,16.789937],[98.514892,16.804808],[98.547746,16.813783],[98.492535,16.84073],[98.500035,16.863391],[98.515471,16.857363],[98.509536,16.879766],[98.539988,16.861034],[98.526314,16.884958],[98.53588,16.898105],[98.512688,16.902731],[98.522216,16.916758],[98.506746,16.910751],[98.5057,16.927524],[98.490058,16.922313],[98.483087,16.937442],[98.507493,16.94925],[98.469745,16.970456],[98.473015,16.994871],[98.448313,16.997109],[98.455472,17.021207],[98.430736,17.021607],[98.438046,17.035361],[98.411085,17.053993],[98.344468,17.047898],[98.3181,17.068526],[98.299763,17.091594],[98.322459,17.111018],[98.301342,17.107576],[98.297841,17.127283],[98.279973,17.115719],[98.297186,17.149031],[98.271536,17.151978],[98.279723,17.172799],[98.249214,17.183007],[98.247474,17.20998],[98.227685,17.205588],[98.244666,17.225953],[98.212242,17.22869],[98.204824,17.24998],[98.135473,17.291934],[98.105428,17.336914],[98.119695,17.372239],[98.110516,17.385276],[98.080296,17.389956],[98.045518,17.429747],[98.055828,17.442132],[97.991533,17.510679],[97.970895,17.507814],[97.962537,17.52716],[97.923102,17.539257],[97.905612,17.584137],[97.794225,17.679136],[97.763025,17.724759],[97.774303,17.751816],[97.743289,17.786399],[97.847069,17.778543],[97.903885,17.810926],[97.9118,17.853916],[97.972232,17.866225],[97.975439,17.822791],[98.040439,17.67545],[98.101724,17.622197],[98.136083,17.541226],[98.209419,17.539917],[98.264515,17.578299],[98.298541,17.575953],[98.329482,17.470476],[98.322446,17.416843],[98.291695,17.407292],[98.334053,17.348496],[98.322083,17.310661],[98.356925,17.289209],[98.460515,17.313394],[98.497136,17.273196],[98.578845,17.293916],[98.55725,17.293743],[98.561774,17.351451],[98.536993,17.361988],[98.557275,17.420173],[98.528485,17.45359],[98.519192,17.510691],[98.538447,17.553014],[98.584946,17.581085],[98.566981,17.611754],[98.532159,17.622061],[98.510854,17.788268],[98.491979,17.811],[98.517838,17.824589],[98.560303,17.795917],[98.571758,17.810052],[98.597202,17.802861],[98.623763,17.776901],[98.638977,17.814107],[98.671151,17.833251],[98.702669,17.744636],[98.74462,17.700586],[98.738179,17.683446],[98.683861,17.664521],[98.68235,17.59695],[98.705757,17.500624],[98.682625,17.459273],[98.690821,17.424118],[98.717905,17.464338],[98.830245,17.514532],[98.880068,17.490827],[98.911048,17.535386],[98.926343,17.522311],[98.931756,17.474287],[98.979928,17.467401],[99.043454,17.388586],[99.109553,17.358757],[99.112295,17.369239],[99.141786,17.361076],[99.156473,17.338423],[99.173782,17.337004],[99.226229,17.405157],[99.270537,17.39998],[99.276274,17.331579],[99.320665,17.251432],[99.310132,17.189092],[99.314272,17.144861],[99.330323,17.136939],[99.321331,17.112904],[99.339276,17.093096],[99.370881,17.097085],[99.393775,17.082271],[99.394117,17.024647],[99.42191,17.008638],[99.411867,16.946662],[99.442999,16.907961],[99.420824,16.876246],[99.379096,16.859774],[99.385734,16.808741],[99.32427,16.813251],[99.291504,16.78407],[99.302984,16.739343],[99.271998,16.668561],[99.247616,16.662006],[99.256453,16.568673],[99.239994,16.533075],[99.191006,16.538765],[99.12188,16.474235],[99.023723,16.475108],[99.001718,16.499675],[98.987131,16.490444],[98.994996,16.453364],[99.022101,16.431168],[99.016096,16.387425],[99.026857,16.382532]]]}},{"type":"Feature","properties":{"CHA_NE":"PrachuapKhiriKhan"},"geometry":{"type":"Polygon","coordinates":[[[99.486244,11.127193],[99.502702,10.990259],[99.470529,10.992889],[99.408786,10.955868],[99.346059,10.975532],[99.27956,10.957974],[99.147093,11.015749],[99.180028,11.059969],[99.179558,11.08275],[99.227612,11.112087],[99.224973,11.142654],[99.263297,11.201364],[99.286576,11.19073],[99.307515,11.217851],[99.296012,11.249077],[99.326093,11.287836],[99.311794,11.317179],[99.401863,11.389682],[99.394472,11.461296],[99.458437,11.49128],[99.448468,11.508538],[99.473823,11.533133],[99.457893,11.582761],[99.467606,11.614726],[99.506309,11.636212],[99.530082,11.621285],[99.565635,11.626438],[99.59003,11.691912],[99.636425,11.727424],[99.64021,11.788362],[99.665003,11.822995],[99.621644,11.832846],[99.609861,11.868472],[99.587957,11.872764],[99.579792,11.943613],[99.593079,11.954855],[99.592229,11.992958],[99.536517,12.017651],[99.534044,12.065964],[99.571262,12.145069],[99.515993,12.148135],[99.473102,12.132532],[99.496344,12.196997],[99.471532,12.236274],[99.484339,12.27317],[99.461503,12.286314],[99.433981,12.342342],[99.446357,12.407047],[99.424498,12.449151],[99.401719,12.459912],[99.425527,12.491424],[99.422132,12.552965],[99.438989,12.583557],[99.503732,12.594985],[99.539487,12.57669],[99.578469,12.579245],[99.592742,12.549087],[99.618344,12.541043],[99.619061,12.651765],[99.646618,12.636702],[99.708189,12.652755],[99.737814,12.62417],[99.755271,12.632685],[99.75923,12.583308],[99.826031,12.630729],[99.883893,12.61971],[99.90478,12.636261],[99.921999,12.62367],[99.952568,12.635064],[99.957153,12.578476],[99.985168,12.514191],[99.979845,12.431723],[100.002869,12.336085],[99.974412,12.265598],[100.02021,12.189922],[99.975606,12.146217],[99.962209,12.086014],[99.943013,12.081876],[99.839506,11.955767],[99.8123,11.880709],[99.834182,11.839958],[99.798726,11.817615],[99.818372,11.783838],[99.79617,11.770654],[99.811262,11.737933],[99.792209,11.7457],[99.735236,11.693527],[99.657318,11.557391],[99.553118,11.31121],[99.552762,11.256653],[99.578983,11.199731],[99.564607,11.186249],[99.551591,11.206761],[99.523542,11.198135],[99.486244,11.127193]]]}},{"type":"Feature","properties":{"CHA_NE":"Ratchaburi"},"geometry":{"type":"Polygon","coordinates":[[[99.88926,13.470007],[99.891319,13.432603],[99.856867,13.329638],[99.76165,13.344935],[99.700021,13.318039],[99.663583,13.281951],[99.661005,13.211627],[99.577685,13.197386],[99.52164,13.210049],[99.507185,13.180468],[99.478274,13.200622],[99.459817,13.181856],[99.373491,13.218294],[99.349983,13.243487],[99.323464,13.221166],[99.32393,13.177126],[99.269846,13.14875],[99.229511,13.202436],[99.210047,13.207417],[99.196431,13.254651],[99.211307,13.261721],[99.187099,13.290553],[99.206488,13.338621],[99.210278,13.411708],[99.197261,13.45049],[99.204906,13.481614],[99.187493,13.496725],[99.19158,13.54476],[99.162835,13.574161],[99.178251,13.584927],[99.165259,13.613092],[99.167362,13.734088],[99.266099,13.743196],[99.284677,13.761476],[99.299757,13.740108],[99.35371,13.747692],[99.453621,13.781516],[99.470406,13.806473],[99.505213,13.765982],[99.549828,13.75924],[99.666182,13.846299],[99.809835,13.808782],[99.819972,13.864806],[99.837686,13.865608],[99.869707,13.938637],[99.920828,13.942165],[99.915456,13.907337],[99.896343,13.903328],[99.91232,13.872789],[99.900482,13.841891],[99.958656,13.836177],[99.970615,13.808447],[99.939336,13.7702],[99.942091,13.745016],[99.961174,13.732758],[100.028821,13.75435],[100.026563,13.700583],[100.06612,13.695528],[100.06809,13.681362],[100.053901,13.618973],[100.031429,13.612212],[100.043918,13.54629],[100.030162,13.505891],[100.005502,13.511057],[99.966566,13.485463],[99.922523,13.514621],[99.88926,13.470007]]]}},{"type":"Feature","properties":{"CHA_NE":"Phetchaburi"},"geometry":{"type":"Polygon","coordinates":[[[99.504745,13.180145],[99.52164,13.210049],[99.577685,13.197386],[99.661005,13.211627],[99.665317,13.286307],[99.757305,13.344067],[99.855539,13.329725],[99.859719,13.245902],[99.884186,13.246396],[99.895188,13.284435],[99.922948,13.279844],[99.95266,13.296636],[99.942101,13.266529],[99.983747,13.237152],[100.019529,13.184193],[100.067138,13.155434],[100.065205,13.084325],[100.10173,13.054056],[100.037956,12.960472],[99.99422,12.823214],[100.002502,12.814323],[99.992449,12.818285],[100.002065,12.812496],[99.967256,12.742281],[99.955945,12.632586],[99.921999,12.62367],[99.90478,12.636261],[99.883893,12.61971],[99.826031,12.630729],[99.75923,12.583308],[99.755271,12.632685],[99.737814,12.62417],[99.708189,12.652755],[99.646618,12.636702],[99.619061,12.651765],[99.614025,12.611989],[99.628553,12.594773],[99.612745,12.541222],[99.578469,12.579245],[99.539487,12.57669],[99.502978,12.595017],[99.441091,12.581076],[99.411402,12.616064],[99.379124,12.615922],[99.338012,12.662128],[99.295285,12.677721],[99.290111,12.715225],[99.27042,12.729257],[99.240339,12.723268],[99.222859,12.823185],[99.186066,12.850312],[99.182552,12.911902],[99.162966,12.927894],[99.195242,12.956544],[99.194877,12.99073],[99.099761,13.072352],[99.13126,13.097176],[99.136564,13.152864],[99.117021,13.174443],[99.122993,13.194165],[99.156752,13.208515],[99.182889,13.192268],[99.228675,13.202939],[99.271337,13.14863],[99.32393,13.177126],[99.323464,13.221166],[99.349983,13.243487],[99.436887,13.185253],[99.459938,13.181895],[99.478274,13.200622],[99.504745,13.180145]]]}},{"type":"Feature","properties":{"CHA_NE":"Nan"},"geometry":{"type":"Polygon","coordinates":[[[100.81977,18.082913],[100.768484,18.024895],[100.692625,18.024464],[100.673416,18.045269],[100.610487,18.054346],[100.556993,18.04003],[100.481933,18.05523],[100.423882,18.013327],[100.414354,18.020997],[100.396907,18.135089],[100.446724,18.159271],[100.453965,18.214181],[100.494029,18.279344],[100.480942,18.350231],[100.504777,18.361532],[100.515036,18.390224],[100.536025,18.390998],[100.549781,18.456725],[100.541599,18.489558],[100.504751,18.473337],[100.476568,18.495236],[100.435191,18.50073],[100.399445,18.486067],[100.387776,18.558019],[100.370578,18.56641],[100.381163,18.620916],[100.396851,18.627678],[100.362053,18.644312],[100.352415,18.680177],[100.392045,18.740419],[100.35856,18.751312],[100.362064,18.778282],[100.337106,18.78727],[100.339276,18.825102],[100.386223,18.889927],[100.390909,18.926556],[100.42703,18.951977],[100.420286,18.981677],[100.458653,19.053587],[100.492577,19.052105],[100.512902,19.024712],[100.505385,18.990485],[100.544892,18.998228],[100.537694,19.045482],[100.604865,19.020249],[100.619518,19.033437],[100.563925,19.074487],[100.573753,19.104638],[100.58503,19.095897],[100.625072,19.117305],[100.620868,19.205369],[100.600529,19.251232],[100.616536,19.32211],[100.609255,19.333827],[100.56185,19.310618],[100.564621,19.339962],[100.528783,19.354027],[100.535588,19.369253],[100.517936,19.399263],[100.565017,19.436003],[100.581737,19.473322],[100.6031,19.479548],[100.608376,19.547553],[100.672475,19.549372],[100.758806,19.510795],[100.770254,19.48726],[100.860215,19.573734],[100.893005,19.633997],[100.972723,19.619323],[101.035305,19.628826],[101.122781,19.572425],[101.169612,19.585942],[101.197732,19.576949],[101.206643,19.60508],[101.244259,19.603421],[101.281051,19.58222],[101.285321,19.526952],[101.266086,19.470403],[101.210638,19.472992],[101.21539,19.431674],[101.18717,19.399939],[101.190424,19.378514],[101.241892,19.325648],[101.227443,19.305883],[101.259724,19.230733],[101.245175,19.180318],[101.256651,19.124576],[101.357096,19.050011],[101.336152,19.004196],[101.309734,19.002082],[101.292088,18.980289],[101.295802,18.941049],[101.245774,18.888473],[101.254341,18.847181],[101.242938,18.831733],[101.258525,18.808969],[101.223834,18.732089],[101.272475,18.688529],[101.226699,18.624557],[101.181848,18.6115],[101.183141,18.560307],[101.104555,18.522027],[101.093592,18.479416],[101.054098,18.441911],[101.0527,18.425487],[101.08416,18.39561],[101.07403,18.357361],[100.980186,18.305989],[100.919392,18.243315],[100.913619,18.158614],[100.875691,18.141905],[100.849947,18.082492],[100.81977,18.082913]]]}},{"type":"Feature","properties":{"CHA_NE":"Phayao"},"geometry":{"type":"Polygon","coordinates":[[[99.704714,19.322247],[99.683083,19.42229],[99.714716,19.419711],[99.78664,19.450615],[99.875938,19.455573],[99.899863,19.425736],[99.914683,19.43243],[99.92179,19.406783],[99.946074,19.42768],[100.010547,19.425835],[100.010171,19.43892],[100.039328,19.444928],[100.068525,19.431534],[100.070812,19.543587],[100.098838,19.554067],[100.162493,19.542781],[100.165483,19.586187],[100.231945,19.608979],[100.261253,19.648811],[100.317745,19.649755],[100.33404,19.682821],[100.355037,19.684791],[100.410674,19.735072],[100.445897,19.706957],[100.428232,19.672927],[100.447246,19.628247],[100.483009,19.60973],[100.485562,19.544887],[100.574845,19.499164],[100.598616,19.510059],[100.6031,19.479548],[100.581737,19.473322],[100.565017,19.436003],[100.517936,19.399263],[100.535588,19.369253],[100.528783,19.354027],[100.564621,19.339962],[100.56185,19.310618],[100.609255,19.333827],[100.616536,19.32211],[100.600529,19.251232],[100.620868,19.205369],[100.625072,19.117305],[100.58503,19.095897],[100.573753,19.104638],[100.563925,19.074487],[100.619518,19.033437],[100.604865,19.020249],[100.537694,19.045482],[100.544892,18.998228],[100.505385,18.990485],[100.512902,19.024712],[100.492577,19.052105],[100.458653,19.053587],[100.420286,18.981677],[100.42703,18.951977],[100.390476,18.925857],[100.388314,18.894268],[100.339276,18.825102],[100.340184,18.805535],[100.226699,18.825401],[100.196511,18.814129],[100.157673,18.834392],[100.111585,18.808156],[100.087762,18.827892],[100.067212,18.817089],[100.070324,18.865267],[100.034296,18.901845],[100.016746,18.896107],[99.9741,18.919635],[99.911776,18.987505],[99.838886,18.999671],[99.819479,19.060923],[99.773404,19.064339],[99.75861,19.132982],[99.726116,19.169651],[99.703542,19.244631],[99.704714,19.322247]]]}},{"type":"Feature","properties":{"CHA_NE":"Lampang"},"geometry":{"type":"Polygon","coordinates":[[[99.132415,18.314043],[99.152415,18.315977],[99.167322,18.374885],[99.237555,18.448737],[99.25766,18.495775],[99.320859,18.500858],[99.329759,18.570143],[99.353283,18.578951],[99.359319,18.606442],[99.327254,18.61946],[99.332339,18.649204],[99.348733,18.65557],[99.327601,18.684705],[99.371341,18.753657],[99.35252,18.846612],[99.391601,18.884231],[99.373593,18.981443],[99.436727,19.00814],[99.493557,19.077377],[99.539954,19.084799],[99.53742,19.109138],[99.560179,19.139552],[99.535939,19.162753],[99.545745,19.240934],[99.580302,19.310398],[99.562276,19.413534],[99.631243,19.383259],[99.681753,19.391351],[99.708169,19.340291],[99.703542,19.244631],[99.726116,19.169651],[99.75861,19.132982],[99.773404,19.064339],[99.819479,19.060923],[99.838886,18.999671],[99.911776,18.987505],[99.9741,18.919635],[100.016746,18.896107],[100.034296,18.901845],[100.070324,18.865267],[100.066779,18.817275],[100.087762,18.827892],[100.12212,18.797898],[100.09668,18.729248],[100.111121,18.674042],[100.099808,18.62919],[100.120223,18.601154],[100.107233,18.560214],[100.090156,18.572948],[100.05545,18.557252],[100.049324,18.497133],[100.021238,18.447457],[100.004205,18.445404],[100.005919,18.40989],[99.96633,18.393618],[99.90724,18.280269],[99.858278,18.284162],[99.850296,18.255271],[99.801193,18.214708],[99.753805,18.141],[99.760679,18.121536],[99.719964,18.069848],[99.668918,18.041606],[99.632691,18.062217],[99.586343,18.035862],[99.594118,18.008158],[99.483586,17.920203],[99.368557,17.77678],[99.418245,17.705763],[99.450496,17.709565],[99.464887,17.736772],[99.478279,17.724462],[99.476363,17.676347],[99.447432,17.644186],[99.453764,17.598204],[99.439252,17.609508],[99.419018,17.599535],[99.413434,17.573797],[99.435506,17.563269],[99.439347,17.528539],[99.421351,17.518841],[99.406253,17.47111],[99.442834,17.434537],[99.430013,17.391789],[99.469603,17.367746],[99.477681,17.328626],[99.455163,17.30906],[99.455756,17.253897],[99.393949,17.206974],[99.373382,17.21234],[99.34041,17.26716],[99.302903,17.273725],[99.271237,17.348646],[99.269763,17.400682],[99.225317,17.404651],[99.171384,17.336039],[99.141786,17.361076],[99.112295,17.369239],[99.109553,17.358757],[99.047667,17.38609],[98.979928,17.467401],[98.931756,17.474287],[98.925369,17.525109],[98.905717,17.546208],[98.910999,17.581381],[98.880296,17.6052],[98.906247,17.648337],[98.982143,17.640149],[99.049387,17.611839],[99.064428,17.69176],[99.087623,17.704362],[99.085748,17.737833],[99.125524,17.771985],[99.103776,17.812198],[99.174739,17.810909],[99.159979,17.842172],[99.183631,17.860051],[99.146681,17.910809],[99.106374,17.913084],[99.115509,17.94582],[99.094653,17.95712],[99.101116,18.001169],[99.070392,18.062064],[99.056758,18.174958],[99.018539,18.252643],[99.084751,18.279694],[99.11297,18.26698],[99.132415,18.314043]]]}},{"type":"Feature","properties":{"CHA_NE":"Lamphun"},"geometry":{"type":"Polygon","coordinates":[[[99.166929,18.706586],[99.188795,18.707522],[99.188438,18.678913],[99.23416,18.651608],[99.2356,18.616914],[99.218794,18.591891],[99.31718,18.532363],[99.320859,18.500858],[99.25766,18.495775],[99.24248,18.479427],[99.237555,18.448737],[99.16689,18.374101],[99.152069,18.315483],[99.122711,18.31136],[99.11297,18.26698],[99.084751,18.279694],[99.018539,18.252643],[99.056758,18.174958],[99.070392,18.062064],[99.101116,18.001169],[99.094653,17.95712],[99.115509,17.94582],[99.106374,17.913084],[99.146681,17.910809],[99.183631,17.860051],[99.159979,17.842172],[99.174739,17.810909],[99.103776,17.812198],[99.125524,17.771985],[99.085014,17.73628],[99.087623,17.704362],[99.064428,17.69176],[99.050584,17.612725],[98.982143,17.640149],[98.90581,17.648244],[98.879758,17.610471],[98.910756,17.581987],[98.911048,17.535386],[98.88027,17.490982],[98.830245,17.514532],[98.717905,17.464338],[98.690821,17.424118],[98.682625,17.459273],[98.705757,17.500624],[98.68235,17.59695],[98.683861,17.664521],[98.745684,17.692022],[98.685301,17.790796],[98.761671,17.801495],[98.784605,17.832666],[98.799464,17.796366],[98.821923,17.797375],[98.856877,17.814848],[98.852668,17.847409],[98.871,17.850643],[98.834119,17.988964],[98.808961,18.008519],[98.777823,18.002871],[98.813818,18.07958],[98.797601,18.087523],[98.804946,18.156213],[98.782459,18.179395],[98.775705,18.250155],[98.672381,18.310185],[98.671397,18.326298],[98.704025,18.333727],[98.681506,18.368212],[98.709529,18.413818],[98.693454,18.417955],[98.709577,18.442051],[98.764692,18.434669],[98.866889,18.515111],[98.934112,18.542023],[99.01166,18.673693],[99.067819,18.663355],[99.075906,18.681985],[99.113492,18.679272],[99.166929,18.706586]]]}},{"type":"Feature","properties":{"CHA_NE":"Uttaradit"},"geometry":{"type":"Polygon","coordinates":[[[99.940997,17.536412],[99.924011,17.585569],[99.974883,17.621575],[99.976781,17.657136],[99.963181,17.710736],[99.911696,17.763143],[99.921928,17.78663],[99.895449,17.806372],[99.957593,17.779607],[99.99312,17.811371],[99.986957,17.833901],[100.046456,17.84751],[100.057708,17.833613],[100.129721,17.857204],[100.246301,17.961894],[100.280106,17.957848],[100.336944,17.891308],[100.359373,17.926128],[100.350523,17.983642],[100.391916,18.02135],[100.423882,18.013327],[100.480919,18.055099],[100.556993,18.04003],[100.610487,18.054346],[100.673416,18.045269],[100.692625,18.024464],[100.769104,18.025117],[100.811088,18.078392],[100.849947,18.082492],[100.883242,18.150734],[100.913619,18.158614],[100.919392,18.243315],[100.980186,18.305989],[101.07403,18.357361],[101.085676,18.380883],[101.181919,18.341236],[101.148542,18.295539],[101.163166,18.278884],[101.144189,18.259165],[101.165486,18.217449],[101.192707,18.212834],[101.160937,18.12341],[101.183961,18.0655],[101.122039,18.000278],[101.117445,17.951351],[101.01934,17.892338],[101.032111,17.833735],[100.998636,17.820195],[101.006385,17.783924],[100.977395,17.762363],[100.988443,17.743142],[100.977247,17.716335],[100.924839,17.696024],[100.904465,17.71498],[100.874281,17.710942],[100.844194,17.65492],[100.802136,17.638204],[100.739727,17.541672],[100.642306,17.493025],[100.645522,17.474063],[100.613845,17.465047],[100.597672,17.422785],[100.513659,17.403842],[100.496615,17.425159],[100.426798,17.421447],[100.368497,17.389254],[100.330689,17.386817],[100.325355,17.369982],[100.278779,17.371943],[100.239088,17.345181],[100.246152,17.235892],[100.185547,17.192049],[100.156279,17.211013],[100.036226,17.181314],[100.027915,17.164138],[99.999466,17.186361],[99.980997,17.173685],[99.971301,17.211011],[99.982117,17.216335],[99.957943,17.230711],[99.973671,17.241238],[99.954527,17.242626],[99.96934,17.284434],[99.997239,17.291227],[100.015092,17.332204],[100.000692,17.354345],[100.008675,17.384323],[99.990456,17.407384],[100.002148,17.462053],[99.928335,17.519768],[99.940997,17.536412]]]}},{"type":"Feature","properties":{"CHA_NE":"ChiangRai"},"geometry":{"type":"Polygon","coordinates":[[[99.786358,19.450505],[99.714716,19.419711],[99.683083,19.42229],[99.693095,19.38225],[99.631243,19.383259],[99.564471,19.41698],[99.580302,19.310398],[99.545745,19.240934],[99.535939,19.162753],[99.560179,19.139552],[99.53742,19.109138],[99.539954,19.084799],[99.493557,19.077377],[99.436727,19.00814],[99.400951,18.999583],[99.38395,19.063289],[99.344666,19.086202],[99.305806,19.176765],[99.310499,19.224116],[99.343264,19.268277],[99.31681,19.350002],[99.332938,19.361632],[99.329919,19.39965],[99.309057,19.429712],[99.308261,19.487849],[99.294861,19.493574],[99.326252,19.539234],[99.26654,19.610738],[99.258148,19.649989],[99.313275,19.707365],[99.359726,19.726052],[99.362274,19.776008],[99.391264,19.813408],[99.419528,19.813395],[99.382886,19.889549],[99.420483,19.918044],[99.421492,19.962879],[99.478193,20.013046],[99.46762,20.033861],[99.505214,20.05356],[99.491361,20.078578],[99.571565,20.110918],[99.511431,20.151036],[99.538686,20.147351],[99.563926,20.205693],[99.522694,20.233444],[99.507133,20.325507],[99.457763,20.361878],[99.457584,20.392409],[99.612709,20.331614],[99.644224,20.343613],[99.681734,20.316408],[99.719505,20.328191],[99.730658,20.349528],[99.811233,20.335653],[99.840333,20.37356],[99.860174,20.442018],[99.961082,20.464455],[99.990342,20.417622],[100.078754,20.380118],[100.098201,20.260375],[100.160906,20.244162],[100.180844,20.264172],[100.167597,20.298454],[100.221569,20.317881],[100.225192,20.352386],[100.2511,20.387058],[100.271662,20.400836],[100.331141,20.398174],[100.375578,20.350027],[100.414858,20.254311],[100.455615,20.227013],[100.455985,20.198872],[100.518096,20.14396],[100.551943,20.175213],[100.578167,20.16801],[100.551711,20.030967],[100.517105,19.94326],[100.520274,19.903265],[100.496684,19.865177],[100.449645,19.847328],[100.405717,19.733689],[100.355037,19.684791],[100.33404,19.682821],[100.317745,19.649755],[100.261253,19.648811],[100.231945,19.608979],[100.165483,19.586187],[100.161987,19.542545],[100.098838,19.554067],[100.066813,19.539962],[100.068525,19.431534],[100.039328,19.444928],[100.010171,19.43892],[100.010547,19.425835],[99.946074,19.42768],[99.92179,19.406783],[99.914683,19.43243],[99.899863,19.425736],[99.877591,19.455505],[99.786358,19.450505]]]}},{"type":"Feature","properties":{"CHA_NE":"ChiangMai"},"geometry":{"type":"Polygon","coordinates":[[[99.131118,20.10403],[99.126467,20.118018],[99.159502,20.132725],[99.212529,20.130685],[99.322975,20.068787],[99.439382,20.090761],[99.498556,20.115872],[99.494052,20.13306],[99.511474,20.147351],[99.572968,20.118191],[99.558833,20.098032],[99.491361,20.078578],[99.505214,20.05356],[99.46762,20.033861],[99.478193,20.013046],[99.421492,19.962879],[99.420483,19.918044],[99.382886,19.889549],[99.419528,19.813395],[99.391264,19.813408],[99.362274,19.776008],[99.359726,19.726052],[99.313275,19.707365],[99.258148,19.649989],[99.26654,19.610738],[99.326252,19.539234],[99.294861,19.493574],[99.308261,19.487849],[99.309057,19.429712],[99.329919,19.39965],[99.332938,19.361632],[99.31681,19.350002],[99.343264,19.268277],[99.310499,19.224116],[99.305806,19.176765],[99.344666,19.086202],[99.38395,19.063289],[99.400951,18.999583],[99.373593,18.981443],[99.391601,18.884231],[99.350446,18.836226],[99.371341,18.753657],[99.327601,18.684705],[99.348733,18.65557],[99.332339,18.649204],[99.327254,18.61946],[99.359319,18.606442],[99.353283,18.578951],[99.332279,18.575734],[99.323061,18.536316],[99.296175,18.53749],[99.218794,18.591891],[99.2356,18.616914],[99.23416,18.651608],[99.188438,18.678913],[99.188795,18.707522],[99.154868,18.709569],[99.124792,18.68316],[99.075906,18.681985],[99.067819,18.663355],[99.01166,18.673693],[98.934112,18.542023],[98.866889,18.515111],[98.764692,18.434669],[98.707398,18.440735],[98.693269,18.414969],[98.709529,18.413818],[98.681504,18.368981],[98.704025,18.333727],[98.671397,18.326298],[98.672381,18.310185],[98.775705,18.250155],[98.782459,18.179395],[98.804946,18.156213],[98.797601,18.087523],[98.813818,18.07958],[98.777823,18.002871],[98.808961,18.008519],[98.834119,17.988964],[98.870959,17.849897],[98.852668,17.847409],[98.856877,17.814848],[98.801643,17.795534],[98.784605,17.832666],[98.761671,17.801495],[98.685404,17.790787],[98.669376,17.83348],[98.638977,17.814107],[98.624159,17.776936],[98.578063,17.809169],[98.560807,17.795849],[98.522342,17.824048],[98.494308,17.815077],[98.510854,17.788268],[98.532326,17.621585],[98.566981,17.611754],[98.584946,17.581085],[98.538447,17.553014],[98.519192,17.510691],[98.528485,17.45359],[98.557275,17.420173],[98.536993,17.361988],[98.561774,17.351451],[98.55725,17.293743],[98.578845,17.293916],[98.497136,17.273196],[98.460515,17.313394],[98.356925,17.289209],[98.322083,17.310661],[98.334053,17.348496],[98.291695,17.407292],[98.322446,17.416843],[98.329482,17.470476],[98.298541,17.575953],[98.264515,17.578299],[98.209419,17.539917],[98.130818,17.546946],[98.086183,17.637318],[98.14574,17.683611],[98.152839,17.729234],[98.135592,17.759208],[98.148358,17.776202],[98.087788,17.809072],[98.067847,17.854695],[98.00883,17.90037],[98.011029,17.926539],[98.056081,17.952085],[98.099565,17.962247],[98.143973,17.935779],[98.162273,17.970472],[98.245075,17.990416],[98.23563,18.029316],[98.272573,18.043037],[98.289355,18.073832],[98.272007,18.086719],[98.242731,18.077644],[98.230129,18.098383],[98.205655,18.088853],[98.190567,18.113899],[98.165301,18.119131],[98.156231,18.163468],[98.176541,18.191111],[98.172179,18.217861],[98.147235,18.22715],[98.136091,18.268549],[98.146372,18.283883],[98.199276,18.28894],[98.172581,18.302027],[98.169724,18.348318],[98.145433,18.362494],[98.126578,18.405364],[98.073694,18.428806],[98.10621,18.458404],[98.122026,18.501966],[98.175236,18.522805],[98.174398,18.546762],[98.209384,18.537123],[98.237204,18.571537],[98.210936,18.607414],[98.182619,18.609696],[98.182707,18.62498],[98.105615,18.648592],[98.10759,18.712984],[98.093803,18.737404],[98.121735,18.77469],[98.092201,18.777593],[98.08142,18.836426],[98.102778,18.884221],[98.157281,18.920202],[98.184691,19.03144],[98.25068,19.108335],[98.240432,19.139556],[98.251958,19.160827],[98.342952,19.152839],[98.351134,19.096208],[98.421765,19.027569],[98.438688,19.048058],[98.543174,19.026149],[98.64033,19.068136],[98.651746,19.093906],[98.633665,19.155257],[98.568539,19.208563],[98.598623,19.2287],[98.587421,19.255437],[98.604009,19.279918],[98.594683,19.356929],[98.573412,19.386135],[98.596089,19.406756],[98.584117,19.43965],[98.595228,19.489297],[98.567944,19.507427],[98.566055,19.547094],[98.542221,19.559132],[98.539734,19.61012],[98.472261,19.657443],[98.467109,19.693892],[98.511034,19.717409],[98.567367,19.671541],[98.57257,19.703952],[98.591114,19.71498],[98.62409,19.713],[98.626878,19.728188],[98.712405,19.767051],[98.77962,19.752786],[98.839403,19.813356],[98.898824,19.765631],[98.951377,19.769046],[98.955925,19.75089],[98.98853,19.740001],[98.994105,19.793509],[99.016416,19.795528],[99.034586,19.852989],[99.021821,19.927122],[99.043141,19.931745],[99.032315,19.974335],[99.054805,20.003515],[99.044715,20.038906],[99.07666,20.100926],[99.131118,20.10403]]]}},{"type":"Feature","properties":{"CHA_NE":"Phrae"},"geometry":{"type":"Polygon","coordinates":[[[100.157016,18.834333],[100.196511,18.814129],[100.226411,18.825403],[100.3385,18.813293],[100.337326,18.786915],[100.362649,18.777182],[100.35856,18.751312],[100.392045,18.740419],[100.352415,18.680177],[100.362053,18.644312],[100.396851,18.627678],[100.381163,18.620916],[100.370578,18.56641],[100.387776,18.558019],[100.399445,18.486067],[100.435191,18.50073],[100.476568,18.495236],[100.504751,18.473337],[100.541599,18.489558],[100.549781,18.456725],[100.536025,18.390998],[100.515036,18.390224],[100.504777,18.361532],[100.480942,18.350231],[100.494029,18.279344],[100.453965,18.214181],[100.446724,18.159271],[100.396907,18.135089],[100.395382,18.086742],[100.416762,18.02763],[100.35013,17.982945],[100.359555,17.927406],[100.341853,17.893997],[100.32648,17.891833],[100.280106,17.957848],[100.246301,17.961894],[100.129721,17.857204],[100.057708,17.833613],[100.046456,17.84751],[99.986957,17.833901],[99.99312,17.811371],[99.957593,17.779607],[99.896355,17.806932],[99.811137,17.804489],[99.776675,17.787378],[99.75282,17.73943],[99.724935,17.722332],[99.66999,17.800534],[99.650075,17.795745],[99.599282,17.821361],[99.558098,17.816016],[99.516968,17.795054],[99.452747,17.711207],[99.418245,17.705763],[99.36734,17.773705],[99.421477,17.850173],[99.507153,17.94328],[99.594118,18.008158],[99.586343,18.035862],[99.632691,18.062217],[99.668918,18.041606],[99.719964,18.069848],[99.760679,18.121536],[99.753805,18.141],[99.801193,18.214708],[99.850296,18.255271],[99.858278,18.284162],[99.90724,18.280269],[99.96633,18.393618],[100.005919,18.40989],[100.004205,18.445404],[100.021238,18.447457],[100.049324,18.497133],[100.05545,18.557252],[100.090156,18.572948],[100.108264,18.561567],[100.120223,18.601154],[100.099808,18.62919],[100.111121,18.674042],[100.09747,18.733782],[100.125571,18.783952],[100.117424,18.819082],[100.157016,18.834333]]]}},{"type":"Feature","properties":{"CHA_NE":"MaeHongSon"},"geometry":{"type":"Polygon","coordinates":[[[98.089291,18.791238],[98.093099,18.776872],[98.121735,18.77469],[98.093803,18.737404],[98.10759,18.712984],[98.105615,18.648592],[98.182707,18.62498],[98.182619,18.609696],[98.210936,18.607414],[98.237161,18.569287],[98.209384,18.537123],[98.174398,18.546762],[98.175236,18.522805],[98.122026,18.501966],[98.10621,18.458404],[98.073694,18.428806],[98.126578,18.405364],[98.145433,18.362494],[98.169724,18.348318],[98.172581,18.302027],[98.199276,18.28894],[98.146372,18.283883],[98.136091,18.268549],[98.147235,18.22715],[98.172179,18.217861],[98.176541,18.191111],[98.156231,18.163468],[98.165301,18.119131],[98.190567,18.113899],[98.205655,18.088853],[98.230129,18.098383],[98.242731,18.077644],[98.272007,18.086719],[98.289442,18.075454],[98.272573,18.043037],[98.23563,18.029316],[98.246374,17.991523],[98.162273,17.970472],[98.144256,17.935888],[98.090025,17.963366],[98.011029,17.926539],[98.010364,17.895821],[98.054036,17.870192],[98.087788,17.809072],[98.148358,17.776202],[98.135592,17.759208],[98.152839,17.729234],[98.14574,17.683611],[98.089079,17.63673],[98.040439,17.67545],[97.96932,17.867942],[97.9118,17.853916],[97.903885,17.810926],[97.847069,17.778543],[97.752923,17.77777],[97.718551,17.819051],[97.700077,17.818971],[97.671954,17.882073],[97.69332,17.932095],[97.735212,17.956932],[97.737185,17.982214],[97.707182,18.056002],[97.681614,18.063661],[97.690741,18.086871],[97.675183,18.161699],[97.60924,18.237994],[97.638793,18.288177],[97.618684,18.318635],[97.558248,18.338945],[97.535577,18.285685],[97.500602,18.268776],[97.44641,18.333525],[97.452529,18.389473],[97.42542,18.410111],[97.343647,18.574048],[97.361591,18.599603],[97.362474,18.559636],[97.403928,18.565975],[97.445451,18.49509],[97.482911,18.510513],[97.533986,18.491404],[97.545807,18.5295],[97.563826,18.521425],[97.571893,18.534473],[97.620738,18.53942],[97.614692,18.560956],[97.6356,18.558912],[97.650977,18.576974],[97.768629,18.577984],[97.773915,18.688801],[97.754642,18.719931],[97.763787,18.757821],[97.739127,18.827195],[97.741764,18.880801],[97.704136,18.897667],[97.66801,18.945666],[97.737238,18.977869],[97.73578,19.040575],[97.769224,19.04454],[97.769154,19.072494],[97.836667,19.094249],[97.845646,19.214329],[97.783092,19.267146],[97.801971,19.288523],[97.843501,19.29177],[97.798794,19.353117],[97.804442,19.385527],[97.786123,19.398939],[97.888208,19.500557],[97.855081,19.532027],[97.862395,19.575739],[97.959681,19.5933],[97.975207,19.602793],[97.973968,19.634909],[98.038739,19.643417],[98.025218,19.72179],[98.034434,19.804733],[98.04867,19.815269],[98.083921,19.809835],[98.10062,19.771803],[98.136804,19.787043],[98.183494,19.759803],[98.192708,19.737051],[98.22872,19.727035],[98.247446,19.676707],[98.324938,19.698454],[98.461005,19.69748],[98.472261,19.657443],[98.539455,19.610481],[98.542221,19.559132],[98.566055,19.547094],[98.567944,19.507427],[98.585721,19.503594],[98.599033,19.46985],[98.584116,19.439988],[98.596089,19.406756],[98.573412,19.386135],[98.595293,19.354152],[98.604009,19.279918],[98.587423,19.254577],[98.599013,19.230457],[98.568539,19.208563],[98.633149,19.156186],[98.651746,19.093906],[98.632955,19.062306],[98.543174,19.026149],[98.438688,19.048058],[98.421765,19.027569],[98.351134,19.096208],[98.342952,19.152839],[98.251958,19.160827],[98.240432,19.139556],[98.25068,19.108335],[98.184691,19.03144],[98.157281,18.920202],[98.124526,18.90766],[98.089075,18.861789],[98.078423,18.821481],[98.089291,18.791238]]]}},{"type":"Feature","properties":{"CHA_NE":"Kalasin"},"geometry":{"type":"Polygon","coordinates":[[[103.822474,16.470025],[103.705203,16.385945],[103.723328,16.329546],[103.755641,16.302651],[103.754812,16.26936],[103.733899,16.247481],[103.733877,16.223017],[103.690947,16.225477],[103.685526,16.210849],[103.66529,16.221692],[103.676201,16.202229],[103.661333,16.192673],[103.652447,16.203642],[103.65069,16.188493],[103.63243,16.188484],[103.617219,16.217634],[103.600274,16.215295],[103.619418,16.204531],[103.598988,16.19255],[103.551223,16.203261],[103.560283,16.217829],[103.53734,16.211366],[103.540214,16.222451],[103.520932,16.195563],[103.479874,16.208242],[103.45261,16.181807],[103.447109,16.227232],[103.439122,16.220143],[103.404978,16.256477],[103.409989,16.285405],[103.352051,16.307657],[103.344233,16.359204],[103.300113,16.369683],[103.290454,16.394886],[103.176128,16.362491],[103.1635,16.389136],[103.184559,16.448036],[103.162742,16.498446],[103.187157,16.554142],[103.168003,16.606632],[103.195442,16.629822],[103.152303,16.64368],[103.159524,16.674641],[103.144729,16.702005],[103.158942,16.732931],[103.14575,16.753897],[103.171111,16.770415],[103.184462,16.821213],[103.174574,16.863261],[103.136829,16.870427],[103.136936,16.829572],[103.123387,16.818115],[103.105467,16.826441],[103.124158,16.892043],[103.096596,16.915053],[103.113374,16.95837],[103.198216,16.948152],[103.220679,16.967771],[103.291984,16.922844],[103.352251,16.92035],[103.403621,16.883065],[103.421469,16.801674],[103.490962,16.90284],[103.494557,16.970185],[103.519929,16.99921],[103.507632,17.044372],[103.548047,17.088856],[103.60725,17.099676],[103.652228,17.047627],[103.647287,17.023197],[103.693863,17.03373],[103.723699,17.015408],[103.71974,16.980632],[103.739563,16.986457],[103.742256,16.971121],[103.78282,16.958729],[103.789176,16.939186],[103.769964,16.923196],[103.790102,16.88718],[103.837472,16.866989],[103.844474,16.840774],[103.939832,16.772445],[103.952998,16.778988],[103.955672,16.820159],[103.96922,16.81063],[103.980553,16.836414],[104.02567,16.857649],[104.038633,16.840606],[104.067593,16.839947],[104.114297,16.766322],[104.143018,16.762383],[104.132062,16.736211],[104.153577,16.699],[104.170502,16.697051],[104.162857,16.678757],[104.192137,16.661893],[104.174367,16.60986],[104.240603,16.517546],[104.226155,16.475784],[104.237787,16.42858],[104.189701,16.430111],[104.171047,16.446345],[104.045352,16.391166],[104.029331,16.443604],[103.928545,16.434397],[103.866618,16.471007],[103.822474,16.470025]]]}},{"type":"Feature","properties":{"CHA_NE":"KhonKaen"},"geometry":{"type":"Polygon","coordinates":[[[102.454807,15.717173],[102.409616,15.696144],[102.386778,15.725748],[102.358303,15.734277],[102.363206,15.767379],[102.32702,15.799247],[102.315629,15.847173],[102.353358,15.900914],[102.386522,15.993507],[102.355057,16.005019],[102.338494,16.038717],[102.302444,16.038296],[102.280154,16.075463],[102.414245,16.250954],[102.45916,16.394145],[102.416465,16.421673],[102.400686,16.467653],[102.399052,16.446693],[102.375902,16.434824],[102.364958,16.453077],[102.300414,16.445149],[102.255781,16.461246],[102.203976,16.504564],[102.181024,16.508304],[102.17254,16.491753],[102.157963,16.503239],[102.067607,16.493781],[102.072776,16.502856],[102.0316,16.520914],[102.023369,16.55864],[101.988362,16.565952],[101.991843,16.58366],[101.955127,16.630656],[101.905501,16.62817],[101.832792,16.658359],[101.774699,16.62849],[101.778641,16.646918],[101.751419,16.654416],[101.750247,16.674513],[101.795913,16.733491],[101.788514,16.765084],[101.904208,16.814163],[101.948818,16.840985],[101.943793,16.852713],[101.994006,16.84016],[102.009762,16.870237],[102.039961,16.85839],[102.063008,16.887166],[102.096784,16.882588],[102.10443,16.897506],[102.18835,16.857735],[102.248848,16.878372],[102.254223,16.894806],[102.295559,16.891968],[102.324825,16.867081],[102.316516,16.855108],[102.330427,16.85522],[102.343659,16.817919],[102.350355,16.831039],[102.430569,16.790002],[102.496528,16.803771],[102.611236,16.771208],[102.622762,16.839066],[102.679862,16.961578],[102.669336,16.993026],[102.679569,17.050212],[102.704932,17.088136],[102.718299,17.054186],[102.787059,17.016138],[102.822862,16.972851],[102.803978,16.955272],[102.820836,16.937877],[102.809153,16.908796],[102.824192,16.862636],[102.859241,16.883745],[102.913567,16.836092],[102.951827,16.839407],[102.996355,16.873132],[103.007773,16.866594],[103.099503,16.913148],[103.123421,16.898875],[103.101878,16.83986],[103.113104,16.819409],[103.136936,16.829572],[103.136111,16.87032],[103.174574,16.863261],[103.181076,16.789272],[103.14574,16.75386],[103.158942,16.732931],[103.144729,16.702005],[103.159524,16.674641],[103.153821,16.614743],[103.119898,16.592359],[103.080939,16.510926],[103.042516,16.490629],[103.032523,16.501309],[103.019092,16.473371],[102.95279,16.451922],[102.975414,16.424138],[102.958706,16.425511],[102.945823,16.40315],[102.956308,16.398309],[102.896148,16.350006],[102.894478,16.315796],[102.845946,16.271071],[102.858247,16.164482],[102.845369,16.145297],[102.868331,16.126916],[102.848739,16.070904],[102.858338,16.041151],[102.894098,16.025333],[102.884527,16.013656],[102.904645,15.984601],[102.889918,15.933171],[102.931356,15.855222],[102.919379,15.823806],[102.930468,15.795526],[102.87765,15.768803],[102.866967,15.650186],[102.805588,15.631936],[102.747384,15.670338],[102.716508,15.666101],[102.689559,15.702644],[102.697147,15.723836],[102.682152,15.728622],[102.651315,15.714552],[102.609186,15.727946],[102.580281,15.706519],[102.512961,15.727447],[102.454807,15.717173]]]}},{"type":"Feature","properties":{"CHA_NE":"Chaiyaphum"},"geometry":{"type":"Polygon","coordinates":[[[102.328417,16.031076],[102.344125,16.035415],[102.355057,16.005019],[102.386522,15.993507],[102.353358,15.900914],[102.32026,15.865158],[102.327965,15.80402],[102.256873,15.781723],[102.252885,15.752858],[102.232464,15.743423],[102.20529,15.75727],[102.20145,15.739216],[102.156252,15.741447],[102.16218,15.726389],[102.127838,15.650918],[102.074624,15.624122],[102.03888,15.546319],[102.035402,15.478943],[102.012062,15.459397],[101.930519,15.455279],[101.878241,15.390443],[101.805966,15.431105],[101.772294,15.382748],[101.657798,15.401501],[101.62533,15.365111],[101.596715,15.378986],[101.521522,15.376031],[101.493943,15.356716],[101.436533,15.370994],[101.411081,15.315802],[101.388215,15.322018],[101.370909,15.583186],[101.406275,15.736381],[101.335761,15.753105],[101.317007,15.789449],[101.331224,15.803945],[101.332039,15.880703],[101.374448,15.919159],[101.360421,15.923485],[101.374782,15.967367],[101.351641,15.970549],[101.322881,16.040867],[101.341041,16.153207],[101.37946,16.18793],[101.372133,16.243301],[101.353716,16.259627],[101.370734,16.273918],[101.381478,16.359485],[101.407352,16.379975],[101.398902,16.400365],[101.472648,16.477589],[101.472227,16.528503],[101.519538,16.548786],[101.494982,16.57081],[101.500388,16.610907],[101.526092,16.620057],[101.512213,16.680594],[101.562957,16.65397],[101.571211,16.693284],[101.599449,16.708265],[101.634296,16.680285],[101.688535,16.686224],[101.724544,16.651885],[101.750921,16.667871],[101.754106,16.652213],[101.778641,16.646918],[101.774699,16.62849],[101.831976,16.658342],[101.905501,16.62817],[101.943778,16.635939],[101.977347,16.610115],[101.988362,16.565952],[102.023369,16.55864],[102.0316,16.520914],[102.072776,16.502856],[102.067855,16.493685],[102.157963,16.503239],[102.17254,16.491753],[102.181024,16.508304],[102.203976,16.504564],[102.255781,16.461246],[102.300414,16.445149],[102.364958,16.453077],[102.375902,16.434824],[102.403185,16.466063],[102.415335,16.423108],[102.45916,16.394145],[102.414245,16.250954],[102.280296,16.076912],[102.302444,16.038296],[102.328417,16.031076]]]}},{"type":"Feature","properties":{"CHA_NE":"NakhonPhanom"},"geometry":{"type":"Polygon","coordinates":[[[104.615835,17.578522],[104.718666,17.510587],[104.801837,17.388239],[104.802007,17.182101],[104.729384,17.00705],[104.758745,16.841208],[104.737243,16.804707],[104.701293,16.827202],[104.668778,16.787252],[104.636336,16.824444],[104.627785,16.86266],[104.533171,16.868076],[104.493131,16.851675],[104.444027,16.866744],[104.418555,16.892013],[104.400537,16.878228],[104.330815,16.905681],[104.277887,16.856542],[104.253559,16.90684],[104.301813,16.92743],[104.317771,16.976335],[104.398363,17.023195],[104.351331,17.068337],[104.364547,17.103974],[104.400857,17.135906],[104.391819,17.179397],[104.43526,17.240007],[104.405283,17.280128],[104.423162,17.336482],[104.406582,17.378953],[104.416117,17.423785],[104.307268,17.431821],[104.225433,17.409253],[104.172197,17.4293],[104.175703,17.41348],[104.14451,17.409599],[104.153028,17.394322],[104.13152,17.379956],[104.107451,17.402816],[104.091105,17.402087],[104.093938,17.375163],[104.080487,17.392626],[104.073854,17.376534],[104.057113,17.38978],[104.009318,17.485815],[104.041245,17.527573],[104.034709,17.562172],[104.053764,17.585663],[104.028254,17.639257],[104.067196,17.644025],[104.08422,17.683648],[104.070083,17.679576],[104.076946,17.708549],[104.059488,17.725791],[104.064606,17.747073],[104.04955,17.739105],[104.056547,17.758568],[104.038862,17.769519],[104.023551,17.758954],[104.01306,17.830311],[103.981807,17.857779],[103.984422,17.872915],[104.03105,17.910122],[104.071797,17.878303],[104.134108,17.952531],[104.112711,18.003742],[104.144919,18.028945],[104.172116,18.002638],[104.18985,18.023661],[104.223065,17.983662],[104.274316,17.864419],[104.354765,17.823081],[104.461809,17.661116],[104.615835,17.578522]]]}},{"type":"Feature","properties":{"CHA_NE":"NakhonRatchasima"},"geometry":{"type":"Polygon","coordinates":[[[102.835574,15.516382],[102.926621,15.510325],[102.9282,15.490469],[102.944979,15.488398],[102.936595,15.476706],[102.963429,15.49029],[103.009665,15.438011],[102.993085,15.41437],[102.97621,15.429414],[102.951789,15.403691],[102.954677,15.382061],[102.988715,15.367821],[102.951954,15.333358],[102.967471,15.292678],[102.954273,15.272203],[102.959625,15.223058],[102.975057,15.206134],[102.937353,15.183265],[102.895652,15.188758],[102.847366,15.169164],[102.762642,15.080945],[102.777517,15.065217],[102.705683,14.976143],[102.698375,14.93423],[102.605714,14.934816],[102.560935,14.954094],[102.549778,14.944072],[102.567596,14.927324],[102.545564,14.873338],[102.554696,14.843636],[102.540702,14.824524],[102.503991,14.803307],[102.456974,14.833487],[102.440231,14.799911],[102.482015,14.736069],[102.459123,14.702106],[102.475973,14.652158],[102.47026,14.616703],[102.49453,14.566361],[102.481804,14.513387],[102.600478,14.498666],[102.592489,14.448483],[102.554622,14.400343],[102.557567,14.378787],[102.603123,14.321003],[102.63471,14.325984],[102.671664,14.307424],[102.541104,14.20332],[102.501349,14.186625],[102.452426,14.193688],[102.433412,14.153842],[102.400286,14.145685],[102.35894,14.165506],[102.357759,14.132452],[102.331889,14.120091],[102.27216,14.128615],[102.269715,14.146101],[102.217259,14.144707],[102.211834,14.17206],[102.183219,14.19592],[102.167037,14.14209],[102.133156,14.137954],[101.966661,14.227503],[101.98194,14.237464],[101.945042,14.246822],[101.998555,14.289803],[101.996532,14.315312],[101.958336,14.318798],[101.946301,14.301841],[101.922202,14.330944],[101.88838,14.318959],[101.838706,14.352442],[101.839956,14.366156],[101.813052,14.34791],[101.788225,14.359853],[101.749367,14.348126],[101.741602,14.307471],[101.648564,14.404047],[101.619546,14.416098],[101.621379,14.428607],[101.58836,14.438799],[101.532842,14.425418],[101.485341,14.462555],[101.436406,14.445652],[101.447506,14.420505],[101.422601,14.383293],[101.365766,14.449068],[101.311805,14.472217],[101.306188,14.498268],[101.284474,14.48932],[101.27245,14.511933],[101.242575,14.471323],[101.183389,14.534636],[101.215559,14.588063],[101.188929,14.749061],[101.211206,14.75666],[101.231733,14.73196],[101.280717,14.726196],[101.283164,14.745569],[101.299092,14.737332],[101.304936,14.756696],[101.334165,14.765958],[101.337077,14.786583],[101.453757,14.862057],[101.400367,15.069327],[101.393993,15.150371],[101.364942,15.194207],[101.357188,15.247882],[101.390263,15.240326],[101.382422,15.334229],[101.41096,15.315707],[101.434682,15.37067],[101.493943,15.356716],[101.521522,15.376031],[101.596715,15.378986],[101.62533,15.365111],[101.657798,15.401501],[101.7655,15.381441],[101.805966,15.431105],[101.878241,15.390443],[101.930519,15.455279],[102.009689,15.458057],[102.034019,15.476461],[102.03888,15.546319],[102.072694,15.619939],[102.127838,15.650918],[102.16218,15.726389],[102.156252,15.741447],[102.20145,15.739216],[102.204886,15.757256],[102.249788,15.750159],[102.25649,15.781461],[102.293099,15.785136],[102.312596,15.808055],[102.363158,15.767489],[102.360653,15.730594],[102.386778,15.725748],[102.409616,15.696144],[102.512379,15.727479],[102.561679,15.706293],[102.609186,15.727946],[102.63857,15.714842],[102.696597,15.724383],[102.689559,15.702644],[102.716367,15.66621],[102.747384,15.670338],[102.779076,15.648082],[102.780374,15.563841],[102.814752,15.513087],[102.835574,15.516382]]]}},{"type":"Feature","properties":{"CHA_NE":"BuriRam"},"geometry":{"type":"Polygon","coordinates":[[[103.056642,14.285923],[103.023041,14.230135],[102.95373,14.207747],[102.910455,14.167319],[102.876171,14.173615],[102.868231,14.149307],[102.810923,14.172447],[102.800372,14.158765],[102.793213,14.172898],[102.764648,14.139893],[102.696536,14.130532],[102.656022,14.16538],[102.634746,14.148812],[102.608276,14.171167],[102.550007,14.134844],[102.473748,14.13131],[102.431557,14.152444],[102.452426,14.193688],[102.501349,14.186625],[102.539502,14.202414],[102.671664,14.307424],[102.63471,14.325984],[102.603123,14.321003],[102.557567,14.378787],[102.554622,14.400343],[102.592489,14.448483],[102.600478,14.498666],[102.481804,14.513387],[102.49453,14.566361],[102.47026,14.616703],[102.475973,14.652158],[102.459123,14.702106],[102.482215,14.734373],[102.443801,14.779125],[102.448012,14.821668],[102.460088,14.833343],[102.503991,14.803307],[102.540656,14.824466],[102.554696,14.843636],[102.545618,14.873847],[102.567596,14.927324],[102.549778,14.944072],[102.561582,14.954474],[102.605714,14.934816],[102.698375,14.93423],[102.705683,14.976143],[102.777517,15.065217],[102.762642,15.080945],[102.847366,15.169164],[102.895652,15.188758],[102.937353,15.183265],[102.975057,15.206134],[102.959625,15.223058],[102.954273,15.272203],[102.967471,15.292678],[102.951954,15.333358],[102.988715,15.367821],[102.954677,15.382061],[102.951789,15.403691],[102.97621,15.429414],[102.993085,15.41437],[103.009665,15.438011],[102.963429,15.49029],[102.936595,15.476706],[102.944979,15.488398],[102.9282,15.490469],[102.925713,15.510679],[102.882637,15.523044],[102.863982,15.50803],[102.814898,15.512965],[102.780374,15.563841],[102.769802,15.617608],[102.777237,15.64427],[102.81319,15.632329],[102.866967,15.650186],[102.87765,15.768803],[102.930468,15.795526],[102.941733,15.766775],[103.00532,15.728792],[103.007382,15.689076],[102.974628,15.66058],[103.026157,15.600228],[103.052913,15.592796],[103.046104,15.564008],[103.090437,15.533578],[103.072654,15.497807],[103.110717,15.484335],[103.114913,15.467266],[103.089532,15.420143],[103.117977,15.401694],[103.138799,15.411793],[103.163702,15.364206],[103.156243,15.352822],[103.194182,15.365886],[103.19677,15.335594],[103.211246,15.343024],[103.219024,15.321407],[103.251597,15.321877],[103.249293,15.306774],[103.283335,15.316461],[103.288715,15.29854],[103.349827,15.347044],[103.396889,15.333391],[103.385573,15.319645],[103.403165,15.308499],[103.429474,15.308804],[103.446171,15.345133],[103.503592,15.312083],[103.504728,15.292321],[103.462311,15.28282],[103.45856,15.256672],[103.441559,15.263527],[103.436037,15.206905],[103.418937,15.201731],[103.425432,15.107053],[103.441768,15.1061],[103.422502,15.06555],[103.447974,15.045175],[103.409087,15.003509],[103.430707,14.977863],[103.416712,14.958983],[103.425602,14.928378],[103.401655,14.919229],[103.40458,14.897294],[103.345963,14.830774],[103.28747,14.807191],[103.291575,14.784941],[103.266028,14.767065],[103.274374,14.736827],[103.259613,14.671226],[103.212741,14.593763],[103.213497,14.504989],[103.246301,14.443874],[103.221221,14.406633],[103.233925,14.394516],[103.220369,14.373119],[103.226165,14.326703],[103.167096,14.336033],[103.153636,14.314107],[103.139456,14.324186],[103.127276,14.302939],[103.056642,14.285923]]]}},{"type":"Feature","properties":{"CHA_NE":"MahaSarakham"},"geometry":{"type":"Polygon","coordinates":[[[103.164148,16.390134],[103.176739,16.362492],[103.290454,16.394886],[103.300113,16.369683],[103.344233,16.359204],[103.352051,16.307657],[103.409989,16.285405],[103.404978,16.256477],[103.439122,16.220143],[103.447109,16.227232],[103.451957,16.182207],[103.479555,16.208142],[103.503944,16.208202],[103.454957,16.116895],[103.470622,16.046196],[103.46307,15.971744],[103.480902,15.928319],[103.444188,15.86879],[103.419926,15.719882],[103.39065,15.709276],[103.349903,15.725554],[103.302378,15.701879],[103.271641,15.663416],[103.310108,15.664148],[103.273665,15.601766],[103.294692,15.591978],[103.30263,15.562123],[103.360653,15.526119],[103.411145,15.540081],[103.420611,15.525504],[103.399592,15.434345],[103.341458,15.405957],[103.269357,15.423475],[103.215544,15.461658],[103.072654,15.497807],[103.090437,15.533578],[103.046104,15.564008],[103.052913,15.592796],[103.026157,15.600228],[102.974628,15.66058],[103.007382,15.689076],[103.005397,15.72861],[102.939408,15.770018],[102.919393,15.823648],[102.923971,15.880297],[102.889918,15.933171],[102.904645,15.984601],[102.884527,16.013656],[102.894205,16.02504],[102.858338,16.041151],[102.848739,16.070904],[102.868331,16.126916],[102.845369,16.145297],[102.858247,16.164482],[102.84321,16.212192],[102.84735,16.275299],[102.894478,16.315796],[102.896148,16.350006],[102.956308,16.398309],[102.945823,16.40315],[102.958706,16.425511],[102.975414,16.424138],[102.952522,16.451599],[103.019092,16.473371],[103.032523,16.501309],[103.042516,16.490629],[103.080939,16.510926],[103.119898,16.592359],[103.152454,16.610413],[103.152303,16.64368],[103.195442,16.629822],[103.168003,16.606632],[103.18717,16.553348],[103.163595,16.486922],[103.185583,16.435558],[103.164148,16.390134]]]}},{"type":"Feature","properties":{"CHA_NE":"Mukdahan"},"geometry":{"type":"Polygon","coordinates":[[[104.676223,16.795832],[104.716484,16.829313],[104.758595,16.74142],[104.764064,16.697676],[104.733702,16.571433],[104.74262,16.528396],[104.845909,16.451098],[104.890604,16.347905],[104.927076,16.334661],[104.979249,16.278709],[104.958354,16.283462],[104.946385,16.261501],[104.885593,16.23537],[104.878857,16.210507],[104.826801,16.204691],[104.81289,16.186167],[104.703217,16.207629],[104.664869,16.242384],[104.642749,16.215023],[104.615277,16.215467],[104.578008,16.245609],[104.551284,16.312101],[104.510883,16.31675],[104.497515,16.341109],[104.394258,16.348645],[104.351429,16.325035],[104.322823,16.33085],[104.31143,16.451644],[104.290786,16.4726],[104.284668,16.450295],[104.237787,16.42858],[104.226155,16.475784],[104.240603,16.517546],[104.174367,16.60986],[104.192137,16.661893],[104.162857,16.678757],[104.170502,16.697051],[104.153577,16.699],[104.132062,16.736211],[104.142581,16.762965],[104.11467,16.765943],[104.092412,16.81008],[104.069668,16.821795],[104.104817,16.83464],[104.124988,16.887018],[104.208376,16.874001],[104.253559,16.90684],[104.283839,16.855941],[104.330815,16.905681],[104.400537,16.878228],[104.418555,16.892013],[104.444027,16.866744],[104.493131,16.851675],[104.533171,16.868076],[104.628597,16.862405],[104.647894,16.806871],[104.666667,16.787365],[104.676223,16.795832]]]}},{"type":"Feature","properties":{"CHA_NE":"Yasothon"},"geometry":{"type":"Polygon","coordinates":[[[104.631173,16.120831],[104.560645,16.098121],[104.515013,16.02575],[104.531888,15.998954],[104.505029,15.982163],[104.504262,15.951395],[104.454769,15.901314],[104.460567,15.843456],[104.435708,15.811753],[104.419034,15.697904],[104.440991,15.699135],[104.439495,15.618587],[104.464403,15.628225],[104.462434,15.589058],[104.505246,15.586961],[104.512457,15.564474],[104.481396,15.537074],[104.400431,15.544209],[104.372793,15.457318],[104.391962,15.407244],[104.382905,15.393885],[104.410515,15.384398],[104.420905,15.346766],[104.406502,15.288477],[104.383113,15.294004],[104.353676,15.344411],[104.304391,15.342276],[104.245544,15.374327],[104.181803,15.477182],[104.135403,15.508436],[104.121973,15.577583],[104.212617,15.615541],[104.185533,15.609621],[104.190429,15.6324],[104.169882,15.634282],[104.172196,15.659826],[104.187148,15.665678],[104.152166,15.690887],[104.147724,15.712939],[104.11857,15.702043],[104.141918,15.728934],[104.133495,15.799812],[104.074053,15.839157],[104.067298,15.813138],[104.000327,15.795887],[103.997804,15.814432],[104.014146,15.817414],[104.012712,15.844844],[104.027599,15.851562],[104.019759,15.867103],[104.036614,15.868159],[104.015148,15.885967],[104.01407,15.910579],[104.035927,15.940816],[104.027245,15.960751],[104.015843,15.949087],[104.011333,15.958721],[104.028381,15.984402],[104.102799,15.984266],[104.114036,16.035609],[104.095203,16.075072],[104.108709,16.107227],[104.138075,16.110021],[104.166788,16.143416],[104.22762,16.166233],[104.249884,16.219152],[104.332847,16.273722],[104.351429,16.325035],[104.377951,16.345239],[104.499506,16.340394],[104.510883,16.31675],[104.551284,16.312101],[104.578008,16.245609],[104.614254,16.216032],[104.642749,16.215023],[104.664869,16.242384],[104.702483,16.207936],[104.761833,16.19967],[104.789391,16.157611],[104.823193,16.154665],[104.811286,16.095283],[104.784298,16.110828],[104.753626,16.098189],[104.631173,16.120831]]]}},{"type":"Feature","properties":{"CHA_NE":"RoiEt"},"geometry":{"type":"Polygon","coordinates":[[[103.480866,15.928781],[103.45982,15.997142],[103.470583,16.046426],[103.452703,16.0822],[103.485685,16.184583],[103.520932,16.195563],[103.539945,16.222439],[103.53734,16.211366],[103.560283,16.217829],[103.551223,16.203261],[103.598988,16.19255],[103.619418,16.204531],[103.600274,16.215295],[103.617219,16.217634],[103.636431,16.186839],[103.652738,16.203784],[103.661333,16.192673],[103.675922,16.201772],[103.66529,16.221692],[103.685526,16.210849],[103.690947,16.225477],[103.733965,16.223087],[103.755846,16.302102],[103.699118,16.37552],[103.815283,16.467631],[103.866618,16.471007],[103.928545,16.434397],[104.029331,16.443604],[104.046581,16.391087],[104.171047,16.446345],[104.189701,16.430111],[104.237667,16.428573],[104.283928,16.449682],[104.290786,16.4726],[104.310556,16.453115],[104.322125,16.331601],[104.351429,16.325035],[104.343405,16.290867],[104.297739,16.240147],[104.249884,16.219152],[104.22038,16.160256],[104.167625,16.14394],[104.138075,16.110021],[104.108709,16.107227],[104.095203,16.075072],[104.114036,16.035609],[104.102799,15.984266],[104.028381,15.984402],[104.01123,15.958257],[104.027245,15.960751],[104.035927,15.940816],[104.01407,15.910579],[104.015148,15.885967],[104.036614,15.868159],[104.019759,15.867103],[104.027599,15.851562],[104.012712,15.844844],[104.014146,15.817414],[103.997804,15.814432],[104.000327,15.795887],[104.067298,15.813138],[104.074053,15.839157],[104.133495,15.799812],[104.141918,15.728934],[104.11857,15.702043],[104.147724,15.712939],[104.152166,15.690887],[104.187148,15.665678],[104.172196,15.659826],[104.170421,15.632547],[104.190429,15.6324],[104.185799,15.609228],[104.212642,15.614115],[104.161075,15.602939],[104.119746,15.56148],[104.099636,15.56747],[104.105576,15.546726],[104.081606,15.54782],[104.055555,15.515379],[104.061446,15.500282],[104.030422,15.489033],[103.996373,15.449737],[103.98763,15.406919],[103.971206,15.407849],[103.973689,15.425994],[103.949566,15.413574],[103.945499,15.438334],[103.908109,15.436089],[103.890284,15.468958],[103.885994,15.45374],[103.877968,15.468435],[103.858939,15.449048],[103.852338,15.465957],[103.773949,15.434484],[103.671886,15.444211],[103.606815,15.468852],[103.555098,15.454398],[103.532392,15.426386],[103.445346,15.456348],[103.399592,15.434345],[103.41639,15.534467],[103.360653,15.526119],[103.30263,15.562123],[103.294692,15.591978],[103.273665,15.601766],[103.310108,15.664148],[103.271641,15.663416],[103.302378,15.701879],[103.349903,15.725554],[103.39065,15.709276],[103.419926,15.719882],[103.444188,15.86879],[103.480866,15.928781]]]}},{"type":"Feature","properties":{"CHA_NE":"SiSaKet"},"geometry":{"type":"Polygon","coordinates":[[[104.491248,14.371522],[104.463861,14.345591],[104.46071,14.36075],[104.415869,14.371677],[104.332241,14.369122],[104.276154,14.408601],[104.231005,14.371558],[104.216171,14.400845],[104.193334,14.402353],[104.173946,14.359332],[104.144762,14.352345],[104.136736,14.377212],[104.070171,14.34242],[104.045139,14.360604],[104.05868,14.460219],[104.05218,14.491659],[104.034928,14.501551],[104.031975,14.544827],[104.05554,14.580574],[104.056102,14.65193],[104.001464,14.725695],[103.995751,14.799309],[103.901878,14.848717],[103.94549,14.943481],[103.969904,14.949927],[103.966907,14.973802],[103.999248,14.99235],[103.994729,15.016017],[104.020499,15.043821],[104.00543,15.05927],[104.020578,15.078127],[103.991966,15.090475],[104.000407,15.12043],[103.986586,15.129653],[104.000015,15.149459],[103.9671,15.165225],[103.983697,15.20111],[103.970356,15.220198],[103.988318,15.225733],[103.996734,15.251749],[103.972441,15.279548],[103.998,15.272235],[103.996487,15.295283],[104.015357,15.289677],[104.01079,15.316426],[104.029029,15.31805],[104.022537,15.331669],[104.091516,15.356315],[104.058552,15.404968],[104.004471,15.409347],[103.993763,15.393853],[103.995119,15.44578],[104.030422,15.489033],[104.061446,15.500282],[104.055555,15.515379],[104.081606,15.54782],[104.105576,15.546726],[104.099729,15.567523],[104.127792,15.557644],[104.135403,15.508436],[104.180052,15.479311],[104.24635,15.373664],[104.304391,15.342276],[104.353676,15.344411],[104.383113,15.294004],[104.523152,15.252661],[104.578641,15.252557],[104.606156,15.272885],[104.663996,15.231777],[104.652332,15.246984],[104.665388,15.257495],[104.679315,15.226479],[104.696084,15.224053],[104.681485,15.201764],[104.716821,15.191161],[104.698259,15.158305],[104.736395,15.164308],[104.679131,15.123229],[104.670132,15.098708],[104.688716,15.100016],[104.676331,15.085076],[104.693096,15.083162],[104.68623,15.042803],[104.669434,15.032444],[104.683157,14.955417],[104.811019,14.883138],[104.826479,14.838592],[104.797904,14.810869],[104.821248,14.751586],[104.876801,14.699022],[104.890642,14.652322],[104.848398,14.659199],[104.826684,14.607079],[104.816365,14.551045],[104.861961,14.497255],[104.859201,14.471625],[104.829545,14.439897],[104.848021,14.424638],[104.87617,14.436793],[104.907087,14.399179],[104.87207,14.41729],[104.841527,14.403343],[104.805107,14.437264],[104.723943,14.403006],[104.709348,14.433351],[104.679506,14.390804],[104.643117,14.422789],[104.562898,14.351988],[104.491248,14.371522]]]}},{"type":"Feature","properties":{"CHA_NE":"SakonNakhon"},"geometry":{"type":"Polygon","coordinates":[[[103.645327,17.114879],[103.598807,17.169703],[103.570759,17.157739],[103.470208,17.230182],[103.451354,17.212909],[103.416909,17.212384],[103.36117,17.23574],[103.351775,17.255191],[103.281128,17.26661],[103.250552,17.313044],[103.301517,17.389991],[103.274518,17.439798],[103.286656,17.498071],[103.316975,17.523889],[103.338336,17.578656],[103.411142,17.595068],[103.397316,17.618037],[103.410637,17.72932],[103.366867,17.790109],[103.389933,17.829142],[103.380067,17.839909],[103.40018,17.830697],[103.422586,17.842221],[103.393705,17.855561],[103.41773,17.882538],[103.396794,17.907649],[103.394984,17.933116],[103.412785,17.934019],[103.386708,17.980934],[103.407004,17.993554],[103.445725,17.96716],[103.438369,17.983827],[103.472255,18.00551],[103.498161,17.990432],[103.493348,18.059993],[103.514824,18.07425],[103.536682,18.068119],[103.539846,18.088866],[103.542296,18.064797],[103.581634,18.03808],[103.594394,18.049974],[103.611151,18.013324],[103.640492,18.013335],[103.621175,18.003775],[103.625357,17.96796],[103.662361,17.973711],[103.6614,17.950261],[103.71581,17.942869],[103.746077,17.911512],[103.765331,17.955575],[103.756843,17.922098],[103.78209,17.931875],[103.786747,17.891919],[103.764321,17.884288],[103.794,17.842267],[103.810775,17.858819],[103.795871,17.877328],[103.835701,17.870268],[103.856776,17.882904],[103.867028,17.864343],[103.904962,17.880627],[103.900644,17.84774],[103.92269,17.8552],[103.917659,17.820307],[103.942712,17.784737],[103.973545,17.784939],[103.979851,17.770908],[104.015821,17.810472],[104.024466,17.757691],[104.038862,17.769519],[104.057506,17.757373],[104.04955,17.739105],[104.064606,17.747073],[104.059317,17.726329],[104.078283,17.696701],[104.066539,17.690426],[104.083961,17.671619],[104.067066,17.643933],[104.028254,17.639257],[104.053764,17.585663],[104.034709,17.562172],[104.041245,17.527573],[104.009318,17.485815],[104.072928,17.37667],[104.077326,17.393595],[104.098357,17.37808],[104.095988,17.403659],[104.139976,17.384262],[104.153356,17.395474],[104.14451,17.409599],[104.175703,17.41348],[104.172004,17.42928],[104.225433,17.409253],[104.307268,17.431821],[104.416698,17.420715],[104.406582,17.378953],[104.423162,17.336482],[104.405283,17.280128],[104.43526,17.240007],[104.391819,17.179397],[104.400857,17.135906],[104.364547,17.103974],[104.351331,17.068337],[104.398363,17.023195],[104.317771,16.976335],[104.301813,16.92743],[104.276474,16.92468],[104.208675,16.87405],[104.124988,16.887018],[104.104817,16.83464],[104.069668,16.821795],[104.067593,16.839947],[104.019895,16.85693],[103.980082,16.836116],[103.968676,16.810299],[103.95654,16.821305],[103.952998,16.778988],[103.939832,16.772445],[103.844474,16.840774],[103.837472,16.866989],[103.790102,16.88718],[103.769964,16.923196],[103.789176,16.939186],[103.78282,16.958729],[103.742256,16.971121],[103.739563,16.986457],[103.71974,16.980632],[103.723699,17.015408],[103.693863,17.03373],[103.661594,17.019748],[103.654723,17.076521],[103.666708,17.104092],[103.645327,17.114879]]]}},{"type":"Feature","properties":{"CHA_NE":"Surin"},"geometry":{"type":"Polygon","coordinates":[[[103.435991,15.206808],[103.440918,15.262543],[103.459117,15.257005],[103.480234,15.295496],[103.504728,15.292321],[103.502648,15.31432],[103.485842,15.311323],[103.471129,15.337618],[103.446171,15.345133],[103.429474,15.308804],[103.403165,15.308499],[103.385573,15.319645],[103.396889,15.333391],[103.349827,15.347044],[103.290014,15.29891],[103.275477,15.318447],[103.248674,15.306925],[103.251597,15.321877],[103.219024,15.321407],[103.211246,15.343024],[103.19677,15.335594],[103.194182,15.365886],[103.156243,15.352822],[103.163702,15.364206],[103.138215,15.412288],[103.117977,15.401694],[103.090252,15.418754],[103.111307,15.481462],[103.215544,15.461658],[103.269357,15.423475],[103.341284,15.405952],[103.433312,15.454993],[103.480123,15.452133],[103.532392,15.426386],[103.584542,15.467205],[103.773949,15.434484],[103.852338,15.465957],[103.858939,15.449048],[103.877968,15.468435],[103.885994,15.45374],[103.890284,15.468958],[103.898963,15.442059],[103.946284,15.437895],[103.95102,15.412839],[103.974385,15.425861],[103.971206,15.407849],[103.994214,15.393497],[104.019216,15.411192],[104.0833,15.384846],[104.09013,15.348569],[104.022852,15.331883],[104.015184,15.28934],[103.996487,15.295283],[103.99113,15.268378],[103.972441,15.279548],[103.996734,15.251749],[103.988318,15.225733],[103.970356,15.220198],[103.983697,15.20111],[103.9671,15.165225],[104.000015,15.149459],[103.986586,15.129653],[104.000407,15.12043],[103.991966,15.090475],[104.020578,15.078127],[104.00543,15.05927],[104.020499,15.043821],[103.994729,15.016017],[103.999248,14.99235],[103.966907,14.973802],[103.969904,14.949927],[103.94549,14.943481],[103.901878,14.848717],[103.995751,14.799309],[104.001464,14.725695],[104.050607,14.670217],[104.05923,14.603362],[104.031963,14.54428],[104.034928,14.501551],[104.05218,14.491659],[104.05868,14.460219],[104.044961,14.361496],[104.064053,14.342767],[103.979531,14.354585],[103.949641,14.350156],[103.939784,14.330176],[103.881532,14.337937],[103.84678,14.370694],[103.825004,14.352934],[103.802693,14.356624],[103.802299,14.369296],[103.775654,14.360571],[103.758361,14.377914],[103.708282,14.377532],[103.708825,14.432335],[103.686957,14.439342],[103.65312,14.435672],[103.641864,14.421555],[103.654346,14.409477],[103.624414,14.398485],[103.610578,14.419632],[103.558225,14.424022],[103.500087,14.400494],[103.466689,14.364565],[103.435308,14.390552],[103.409209,14.357708],[103.263255,14.350478],[103.226165,14.326703],[103.220369,14.373119],[103.233925,14.394516],[103.221221,14.406633],[103.246301,14.443874],[103.213497,14.504989],[103.212741,14.593763],[103.259613,14.671226],[103.274374,14.736827],[103.266028,14.767065],[103.291575,14.784941],[103.28747,14.807191],[103.345963,14.830774],[103.40458,14.897294],[103.401655,14.919229],[103.425602,14.928378],[103.416712,14.958983],[103.430707,14.977863],[103.409087,15.003509],[103.447974,15.045175],[103.422502,15.06555],[103.442086,15.086759],[103.428496,15.082757],[103.441768,15.1061],[103.425907,15.105305],[103.428858,15.185047],[103.418134,15.188872],[103.435991,15.206808]]]}},{"type":"Feature","properties":{"CHA_NE":"NongKhai"},"geometry":{"type":"Polygon","coordinates":[[[102.466042,17.969291],[102.604086,17.954452],[102.613088,17.908674],[102.589949,17.841395],[102.638411,17.830987],[102.673333,17.803059],[102.697817,17.818539],[102.676152,17.844121],[102.688765,17.870634],[102.759077,17.894151],[102.784145,17.932866],[102.856031,17.971194],[102.958536,18.003425],[103.032812,17.975083],[103.078608,18.034063],[103.08173,18.127039],[103.149106,18.173719],[103.150924,18.228746],[103.167646,18.2564],[103.298269,18.304267],[103.289115,18.324698],[103.252801,18.337223],[103.246491,18.370759],[103.308653,18.432556],[103.403653,18.448672],[103.45787,18.424912],[103.526745,18.425716],[103.609492,18.403976],[103.698513,18.343008],[103.814601,18.339552],[103.858416,18.283839],[103.930137,18.330568],[103.973957,18.336303],[104.062693,18.215257],[104.104321,18.117834],[104.18985,18.023661],[104.172116,18.002638],[104.144919,18.028945],[104.112711,18.003742],[104.134108,17.952531],[104.071797,17.878303],[104.044539,17.908333],[103.996368,17.892049],[103.981569,17.858332],[104.002518,17.848042],[104.014864,17.816078],[103.979392,17.77081],[103.973545,17.784939],[103.942712,17.784737],[103.91805,17.819476],[103.922792,17.854732],[103.900644,17.84774],[103.904962,17.880627],[103.867028,17.864343],[103.856776,17.882904],[103.835701,17.870268],[103.795871,17.877328],[103.810775,17.858819],[103.794,17.842267],[103.764321,17.884288],[103.786747,17.891919],[103.78209,17.931875],[103.756843,17.922098],[103.765331,17.955575],[103.746077,17.911512],[103.71581,17.942869],[103.6614,17.950261],[103.662361,17.973711],[103.625357,17.96796],[103.621175,18.003775],[103.640492,18.013335],[103.611151,18.013324],[103.594394,18.049974],[103.581634,18.03808],[103.542296,18.064797],[103.539846,18.088866],[103.536682,18.068119],[103.514824,18.07425],[103.493348,18.059993],[103.498161,17.990432],[103.472255,18.00551],[103.438369,17.983827],[103.445725,17.96716],[103.407379,17.993449],[103.390594,17.986682],[103.388837,17.957924],[103.412785,17.934019],[103.394984,17.933116],[103.399554,17.903168],[103.303002,17.868538],[103.302826,17.827103],[103.27622,17.833728],[103.240971,17.88607],[103.186966,17.868384],[103.167286,17.808397],[103.149647,17.803187],[103.114045,17.861164],[103.100545,17.856572],[103.078617,17.89038],[103.045861,17.894172],[102.968702,17.823692],[102.927619,17.892829],[102.875898,17.894901],[102.869096,17.8464],[102.82611,17.813555],[102.854153,17.77619],[102.830706,17.693493],[102.784107,17.682401],[102.761347,17.643836],[102.766416,17.620031],[102.740873,17.620533],[102.731161,17.603691],[102.694517,17.620278],[102.648883,17.592172],[102.646028,17.614436],[102.595402,17.622871],[102.595066,17.672682],[102.612671,17.687601],[102.530478,17.760827],[102.468612,17.753084],[102.439646,17.767863],[102.428859,17.795781],[102.440994,17.820777],[102.399616,17.844382],[102.389977,17.89487],[102.308437,17.947167],[102.285626,17.991023],[102.263255,17.984441],[102.204545,18.008569],[102.204961,18.022317],[102.174344,18.018959],[102.15531,17.990332],[102.139723,18.00695],[102.143179,18.035132],[102.105305,18.027789],[102.106895,18.062637],[102.088364,18.055257],[102.055208,18.085324],[102.068431,18.144039],[102.10171,18.162139],[102.105631,18.213512],[102.163957,18.203483],[102.185324,18.148078],[102.288348,18.059026],[102.346909,18.044687],[102.466042,17.969291]]]}},{"type":"Feature","properties":{"CHA_NE":"NongBuaLamPhu"},"geometry":{"type":"Polygon","coordinates":[[[102.07321,17.187627],[101.998182,17.204495],[102.00703,17.216535],[102.0656,17.205102],[102.06921,17.25646],[102.034889,17.262429],[101.990956,17.311996],[101.997363,17.333458],[102.021254,17.341763],[102.018343,17.373592],[101.981194,17.412065],[101.99087,17.456773],[102.052659,17.449134],[102.130492,17.49063],[102.135862,17.55521],[102.083165,17.632282],[102.09135,17.640908],[102.128041,17.635204],[102.156119,17.666958],[102.214482,17.660178],[102.318355,17.678844],[102.332494,17.551291],[102.42896,17.362442],[102.43888,17.281581],[102.517189,17.287998],[102.594477,17.263794],[102.571605,17.230411],[102.47138,17.202226],[102.543709,17.067021],[102.66943,16.993509],[102.681569,16.971409],[102.622762,16.839066],[102.612006,16.771923],[102.496528,16.803771],[102.430569,16.790002],[102.350355,16.831039],[102.343659,16.817919],[102.330427,16.85522],[102.316516,16.855108],[102.324825,16.867081],[102.295559,16.891968],[102.254223,16.894806],[102.248848,16.878372],[102.188539,16.857732],[102.104728,16.897501],[102.098115,16.88301],[102.070142,16.885642],[102.030127,16.951117],[102.072327,16.96286],[102.096595,17.0027],[102.130485,17.006228],[102.154024,17.027673],[102.102585,17.065647],[102.091331,17.111645],[102.01306,17.140917],[102.016091,17.166579],[102.042408,17.154852],[102.07321,17.187627]]]}},{"type":"Feature","properties":{"CHA_NE":"AmnatCharoen"},"geometry":{"type":"Polygon","coordinates":[[[104.807475,15.603773],[104.79519,15.595616],[104.787791,15.621084],[104.73968,15.659455],[104.728618,15.647852],[104.625475,15.689458],[104.602475,15.671685],[104.637383,15.646985],[104.57905,15.604696],[104.586239,15.567646],[104.547212,15.542413],[104.510275,15.560425],[104.505246,15.586961],[104.46268,15.588838],[104.464403,15.628225],[104.439495,15.618587],[104.440936,15.699329],[104.419021,15.698055],[104.435708,15.811753],[104.460567,15.843456],[104.454769,15.901314],[104.504262,15.951395],[104.505029,15.982163],[104.531888,15.998954],[104.515013,16.02575],[104.56121,16.098742],[104.625013,16.123602],[104.741312,16.099155],[104.784298,16.110828],[104.811684,16.095399],[104.822108,16.157084],[104.789391,16.157611],[104.765465,16.196317],[104.81289,16.186167],[104.826801,16.204691],[104.878707,16.210424],[104.912114,16.254773],[104.946385,16.261501],[104.958354,16.283462],[104.979249,16.278709],[105.015859,16.241705],[105.012289,16.190447],[105.040849,16.10934],[105.060468,16.098],[105.02793,16.072004],[105.003689,16.020222],[105.008306,15.963551],[104.976485,15.938516],[104.972031,15.915048],[104.989899,15.911731],[104.964005,15.862165],[104.960234,15.790644],[104.905145,15.754242],[104.894423,15.656681],[104.9333,15.640193],[104.927049,15.6043],[104.886638,15.575234],[104.895581,15.563786],[104.878401,15.537216],[104.861888,15.580597],[104.847307,15.573673],[104.807475,15.603773]]]}},{"type":"Feature","properties":{"CHA_NE":"UdonThani"},"geometry":{"type":"Polygon","coordinates":[[[102.699206,17.086803],[102.66943,16.993509],[102.572019,17.044823],[102.523895,17.093331],[102.47138,17.202226],[102.571605,17.230411],[102.594477,17.263794],[102.517189,17.287998],[102.43888,17.281581],[102.42896,17.362442],[102.332494,17.551291],[102.318355,17.678844],[102.214482,17.660178],[102.156119,17.666958],[102.119694,17.632868],[102.104747,17.647316],[102.082837,17.634573],[102.058036,17.65647],[102.036781,17.650322],[102.017461,17.748503],[102.029998,17.785798],[102.045918,17.78987],[102.036577,17.806305],[102.051401,17.869505],[102.017813,17.982916],[102.042215,17.989516],[102.055208,18.085324],[102.088364,18.055257],[102.106895,18.062637],[102.107172,18.025942],[102.143179,18.035132],[102.148367,17.992482],[102.16105,17.99083],[102.174344,18.018959],[102.204961,18.022317],[102.204545,18.008569],[102.263255,17.984441],[102.285626,17.991023],[102.308437,17.947167],[102.389977,17.89487],[102.399616,17.844382],[102.440994,17.820777],[102.428859,17.795781],[102.439646,17.767863],[102.468612,17.753084],[102.530478,17.760827],[102.612671,17.687601],[102.595066,17.672682],[102.595402,17.622871],[102.646028,17.614436],[102.648883,17.592172],[102.694517,17.620278],[102.731161,17.603691],[102.740873,17.620533],[102.766416,17.620031],[102.761347,17.643836],[102.784107,17.682401],[102.830706,17.693493],[102.854153,17.77619],[102.82611,17.813555],[102.869096,17.8464],[102.876027,17.894968],[102.927619,17.892829],[102.969643,17.82366],[103.013867,17.87641],[103.038281,17.877637],[103.038086,17.891648],[103.078487,17.890425],[103.150013,17.803179],[103.167286,17.808397],[103.190638,17.869827],[103.241641,17.885991],[103.27622,17.833728],[103.302826,17.827103],[103.303002,17.868538],[103.412789,17.901161],[103.416884,17.879853],[103.393637,17.855918],[103.422542,17.841978],[103.39954,17.830662],[103.397381,17.842871],[103.380067,17.839909],[103.389933,17.829142],[103.366867,17.790109],[103.410637,17.72932],[103.397316,17.618037],[103.411142,17.595068],[103.338336,17.578656],[103.316975,17.523889],[103.286656,17.498071],[103.274518,17.439798],[103.301517,17.389991],[103.250561,17.313005],[103.281128,17.26661],[103.351775,17.255191],[103.36117,17.23574],[103.416909,17.212384],[103.451354,17.212909],[103.470208,17.230182],[103.570759,17.157739],[103.600395,17.168803],[103.637249,17.112362],[103.666483,17.10485],[103.654723,17.076521],[103.661594,17.019748],[103.607359,17.099623],[103.547789,17.088698],[103.507522,17.044167],[103.519929,16.99921],[103.494557,16.970185],[103.490962,16.90284],[103.421469,16.801674],[103.395313,16.894711],[103.340638,16.92433],[103.291984,16.922844],[103.220679,16.967771],[103.18526,16.947075],[103.117654,16.962543],[103.082564,16.899242],[102.996355,16.873132],[102.975396,16.847145],[102.916491,16.83516],[102.872923,16.881217],[102.823222,16.863295],[102.808949,16.914814],[102.820836,16.937877],[102.803978,16.955272],[102.822801,16.972965],[102.787059,17.016138],[102.722964,17.049814],[102.699206,17.086803]]]}},{"type":"Feature","properties":{"CHA_NE":"UbonRatchathani"},"geometry":{"type":"Polygon","coordinates":[[[105.597099,15.45842],[105.577617,15.407515],[105.492937,15.385802],[105.467658,15.349576],[105.503742,15.315433],[105.5742,15.328526],[105.592241,15.275004],[105.540301,15.252667],[105.493675,15.203506],[105.469085,15.15847],[105.485916,15.15039],[105.461624,15.115321],[105.514176,15.08544],[105.513562,15.063],[105.553532,15.064254],[105.546854,15.038396],[105.572416,15.020603],[105.574416,14.999085],[105.624507,14.975292],[105.583321,14.940945],[105.554115,14.953173],[105.545544,14.925916],[105.579953,14.878591],[105.549011,14.874249],[105.559708,14.83925],[105.536963,14.819051],[105.519261,14.822757],[105.511242,14.799411],[105.525214,14.782874],[105.512846,14.753296],[105.546586,14.731492],[105.520559,14.72776],[105.515251,14.696461],[105.527407,14.679702],[105.517607,14.652494],[105.542332,14.620137],[105.526335,14.536822],[105.480508,14.506303],[105.428965,14.416187],[105.407142,14.429017],[105.387137,14.397046],[105.358949,14.387139],[105.321384,14.39798],[105.303049,14.365921],[105.280695,14.353579],[105.25342,14.361568],[105.228535,14.333697],[105.175489,14.345019],[105.166032,14.327919],[105.177425,14.315246],[105.151102,14.284499],[105.144564,14.239838],[105.108658,14.21389],[105.050039,14.215111],[104.984237,14.318915],[105.001179,14.360039],[104.993825,14.379247],[104.972091,14.391278],[104.948928,14.381325],[104.907087,14.399179],[104.87617,14.436793],[104.848021,14.424638],[104.829545,14.439897],[104.859201,14.471625],[104.861961,14.497255],[104.816365,14.551045],[104.826684,14.607079],[104.848398,14.659199],[104.890627,14.652497],[104.876801,14.699022],[104.821248,14.751586],[104.797904,14.810869],[104.826479,14.838592],[104.805329,14.895858],[104.684118,14.951544],[104.669434,15.032444],[104.68623,15.042803],[104.693096,15.083162],[104.676331,15.085076],[104.688716,15.100016],[104.670132,15.098708],[104.679131,15.123229],[104.736395,15.164308],[104.698259,15.158305],[104.716821,15.191161],[104.681485,15.201764],[104.696084,15.224053],[104.679315,15.226479],[104.665388,15.257495],[104.652332,15.246984],[104.663996,15.231777],[104.606156,15.272885],[104.578641,15.252557],[104.523991,15.252545],[104.406502,15.288477],[104.418662,15.364155],[104.408283,15.386902],[104.382905,15.393885],[104.391962,15.407244],[104.372793,15.457318],[104.400431,15.544209],[104.481396,15.537074],[104.510706,15.562436],[104.546447,15.542177],[104.584634,15.56586],[104.57905,15.604696],[104.637383,15.646985],[104.602475,15.671685],[104.625475,15.689458],[104.728618,15.647852],[104.742279,15.658014],[104.746207,15.641523],[104.787791,15.621084],[104.79519,15.595616],[104.811206,15.60638],[104.822682,15.585852],[104.861888,15.580597],[104.876579,15.562611],[104.863393,15.557323],[104.86959,15.538709],[104.881305,15.539263],[104.895597,15.56392],[104.88456,15.572152],[104.927049,15.6043],[104.933404,15.638115],[104.894811,15.65461],[104.90776,15.762576],[104.960234,15.790644],[104.964005,15.862165],[104.989899,15.911731],[104.972031,15.915048],[104.976485,15.938516],[105.008306,15.963551],[105.003689,16.020222],[105.02793,16.072004],[105.060468,16.098],[105.423251,16.006423],[105.421317,15.987128],[105.376185,15.98297],[105.343075,15.912984],[105.390689,15.808421],[105.420238,15.788814],[105.433716,15.755253],[105.466753,15.745435],[105.502405,15.767349],[105.552936,15.749735],[105.600447,15.721299],[105.633934,15.664516],[105.625323,15.565006],[105.593054,15.509972],[105.597099,15.45842]]]}},{"type":"Feature","properties":{"CHA_NE":"Loei"},"geometry":{"type":"Polygon","coordinates":[[[102.106234,17.061697],[102.153997,17.027528],[102.130485,17.006228],[102.096595,17.0027],[102.072327,16.96286],[102.030127,16.951117],[102.046325,16.90611],[102.06854,16.892727],[102.059527,16.870688],[102.039961,16.85839],[102.009762,16.870237],[101.993844,16.840125],[101.943793,16.852713],[101.948649,16.840826],[101.866624,16.793456],[101.762216,16.75619],[101.724491,16.755336],[101.686734,16.798217],[101.721672,16.807201],[101.676651,16.866661],[101.691898,16.935972],[101.670157,16.961363],[101.649865,17.041814],[101.628736,17.044963],[101.607773,16.998727],[101.566983,16.985266],[101.533105,17.023041],[101.530467,17.054161],[101.482092,17.071406],[101.463134,17.095236],[101.438429,17.072875],[101.40372,17.092794],[101.385779,17.079168],[101.342705,17.086463],[101.327137,17.071184],[101.310198,17.092554],[101.25998,17.088979],[101.224461,17.131089],[101.20181,17.123589],[101.169933,17.039371],[101.115522,17.016535],[101.106828,16.907006],[101.067049,16.902232],[101.070577,16.924971],[101.027728,16.941477],[101.052509,16.953332],[101.052364,17.115338],[101.070571,17.115456],[101.076822,17.179145],[101.109452,17.234529],[101.083002,17.281294],[101.049358,17.284818],[101.005823,17.335047],[100.914975,17.341955],[100.916153,17.451486],[100.894713,17.465622],[100.85667,17.450948],[100.833596,17.481316],[100.871242,17.529139],[100.871383,17.573886],[100.903539,17.593194],[100.924515,17.570276],[101.023505,17.557511],[101.061512,17.512703],[101.102818,17.508771],[101.09401,17.495766],[101.11028,17.479689],[101.16072,17.467059],[101.162918,17.491044],[101.18275,17.497852],[101.175758,17.524662],[101.229144,17.535896],[101.259477,17.598236],[101.309832,17.635511],[101.305868,17.650458],[101.346312,17.659646],[101.382382,17.697778],[101.408169,17.688744],[101.43047,17.71555],[101.401576,17.734148],[101.44598,17.728983],[101.482565,17.760324],[101.474851,17.748656],[101.490604,17.745735],[101.491154,17.724294],[101.5219,17.776296],[101.574371,17.784848],[101.551556,17.810815],[101.574002,17.869023],[101.591588,17.848954],[101.61696,17.893584],[101.723328,17.911144],[101.777005,18.06464],[101.824704,18.060111],[101.87919,18.027458],[101.907411,18.031513],[101.953337,18.102961],[102.027093,18.150445],[102.044924,18.19812],[102.088861,18.22026],[102.105631,18.213512],[102.10171,18.162139],[102.068084,18.143402],[102.042215,17.989516],[102.017813,17.982916],[102.051854,17.848275],[102.036577,17.806305],[102.045918,17.78987],[102.029998,17.785798],[102.017461,17.748503],[102.031396,17.659367],[102.078184,17.644945],[102.135585,17.556037],[102.139389,17.525744],[102.130492,17.49063],[102.087179,17.461883],[102.051417,17.448977],[101.992316,17.459323],[101.981194,17.412065],[102.018953,17.371211],[102.021027,17.340886],[101.990809,17.322171],[101.997061,17.300201],[102.052357,17.250733],[102.069199,17.256565],[102.065538,17.205059],[101.99739,17.207753],[102.074088,17.193678],[102.042408,17.154852],[102.015522,17.166113],[102.01306,17.140917],[102.091331,17.111645],[102.106234,17.061697]]]}},{"type":"Feature","properties":{"CHA_NE":"Krabi"},"geometry":{"type":"MultiPolygon","coordinates":[[[[98.816597,8.655286],[98.844124,8.655169],[98.935091,8.562569],[98.947739,8.424888],[99.039966,8.363233],[99.129005,8.365635],[99.261138,8.302729],[99.299379,8.315236],[99.330978,8.290443],[99.333668,8.256975],[99.311304,8.233718],[99.319493,8.196573],[99.288338,8.150881],[99.296567,8.13214],[99.34711,8.135476],[99.385294,8.108194],[99.415897,8.00152],[99.386901,7.942297],[99.368412,7.946449],[99.313431,7.914001],[99.303072,7.900797],[99.318036,7.886057],[99.279502,7.853631],[99.287547,7.811655],[99.303371,7.809205],[99.288529,7.763025],[99.306618,7.755101],[99.312546,7.726737],[99.305593,7.697905],[99.258759,7.65717],[99.244575,7.684788],[99.196328,7.67103],[99.202988,7.696644],[99.178588,7.703446],[99.130198,7.760046],[99.115772,7.76017],[99.09821,7.692699],[99.040805,7.704178],[99.017232,7.823212],[99.047847,7.852807],[99.074822,7.84812],[99.064392,7.862981],[99.107289,7.940111],[99.070019,7.91776],[99.121702,7.978636],[99.083027,7.949931],[99.071916,7.971607],[99.078768,7.954876],[99.056306,7.906981],[99.026909,7.88971],[99.012486,7.928137],[98.992173,7.941209],[98.972496,7.932525],[98.942373,7.986557],[98.952594,8.002546],[98.91331,8.045595],[98.882147,8.021081],[98.859098,8.027648],[98.843171,8.001991],[98.797207,8.048512],[98.764461,8.023047],[98.739533,8.076359],[98.757329,8.134473],[98.735267,8.136028],[98.755855,8.201106],[98.728854,8.247308],[98.70687,8.224199],[98.720176,8.264634],[98.710483,8.317571],[98.684,8.304043],[98.680497,8.31617],[98.648706,8.272286],[98.642141,8.289147],[98.62701,8.282101],[98.635658,8.374708],[98.663377,8.387086],[98.643757,8.41374],[98.664489,8.426701],[98.671107,8.459455],[98.649435,8.482567],[98.706694,8.596599],[98.703212,8.632597],[98.721849,8.62965],[98.74674,8.674418],[98.795207,8.640773],[98.816597,8.655286]]],[[[99.109205,7.686072],[99.130105,7.649032],[99.123563,7.592553],[99.091168,7.60306],[99.076006,7.578928],[99.110207,7.49757],[99.097689,7.467736],[99.034984,7.563516],[99.017811,7.6509],[99.035976,7.651263],[99.040011,7.684896],[99.109205,7.686072]]],[[[99.078976,7.916178],[99.058888,7.877231],[99.065195,7.91859],[99.078976,7.916178]]],[[[99.03316,7.869134],[99.031854,7.841784],[99.01528,7.836333],[99.005652,7.88277],[99.03316,7.869134]]],[[[98.991467,7.92343],[98.990491,7.849989],[98.967177,7.923456],[98.991467,7.92343]]],[[[98.974729,7.843948],[98.987318,7.782314],[98.934639,7.843205],[98.955433,7.858132],[98.974729,7.843948]]]]}},{"type":"Feature","properties":{"CHA_NE":"Chumphon"},"geometry":{"type":"Polygon","coordinates":[[[98.937409,10.383603],[98.901349,10.39854],[98.884492,10.458292],[98.962738,10.539633],[98.941582,10.569666],[98.965179,10.604784],[98.945055,10.612079],[98.950997,10.637323],[98.928356,10.648621],[98.930168,10.673117],[98.905987,10.690671],[98.89435,10.6817],[98.914544,10.74771],[98.889118,10.7747],[98.923178,10.82712],[98.958807,10.812153],[99.011429,10.857054],[98.997631,10.911419],[99.020667,10.96686],[99.057305,10.947102],[99.079658,10.954661],[99.102353,11.013016],[99.150623,11.033508],[99.147093,11.015749],[99.169477,11.00056],[99.27956,10.957974],[99.346059,10.975532],[99.407459,10.955603],[99.470529,10.992889],[99.495026,10.986274],[99.492234,10.936102],[99.519612,10.89819],[99.509617,10.872684],[99.49699,10.861156],[99.481748,10.88799],[99.441434,10.871637],[99.41296,10.762346],[99.359365,10.691185],[99.365638,10.671065],[99.348027,10.683334],[99.321641,10.67177],[99.282227,10.602874],[99.273943,10.542889],[99.238074,10.533868],[99.243034,10.508432],[99.267476,10.515214],[99.231615,10.494874],[99.228345,10.471725],[99.283707,10.41167],[99.285165,10.365423],[99.272425,10.352926],[99.252817,10.362328],[99.238898,10.343885],[99.195714,10.372627],[99.14781,10.349087],[99.162576,10.278535],[99.205417,10.271665],[99.22042,10.22747],[99.246998,10.235239],[99.193005,10.205552],[99.147525,10.120489],[99.153358,10.066523],[99.18266,10.036694],[99.176287,10.007371],[99.164681,10.013429],[99.152134,9.996162],[99.165575,9.859866],[99.138865,9.825684],[99.159242,9.704046],[99.078434,9.704251],[99.072246,9.688237],[99.096683,9.663442],[99.072765,9.652017],[99.005507,9.710868],[98.870819,9.730421],[98.844283,9.703852],[98.76861,9.687549],[98.765867,9.62829],[98.738825,9.601055],[98.72201,9.628467],[98.647198,9.662532],[98.659676,9.683971],[98.639131,9.713639],[98.629998,9.778988],[98.719227,9.86444],[98.721305,9.893762],[98.75627,9.934391],[98.780895,9.950715],[98.814252,9.936364],[98.844352,9.993635],[98.866503,9.99369],[98.904019,10.025878],[98.893006,10.064794],[98.835789,10.066253],[98.862819,10.094529],[98.86908,10.154057],[98.888799,10.160635],[98.870366,10.186916],[98.908733,10.266153],[98.900262,10.289735],[98.941074,10.344569],[98.937409,10.383603]]]}},{"type":"Feature","properties":{"CHA_NE":"Trang"},"geometry":{"type":"MultiPolygon","coordinates":[[[[99.49066,7.352691],[99.483542,7.291919],[99.419969,7.29818],[99.406522,7.317026],[99.397614,7.304327],[99.338014,7.379304],[99.347498,7.442697],[99.326289,7.495717],[99.312828,7.512713],[99.296964,7.497476],[99.284907,7.515009],[99.313785,7.537331],[99.2798,7.624902],[99.261435,7.61659],[99.232619,7.63224],[99.253784,7.630349],[99.258759,7.65717],[99.309395,7.705692],[99.306618,7.755101],[99.287399,7.770856],[99.303371,7.809205],[99.287547,7.811655],[99.278281,7.848959],[99.318036,7.886057],[99.303072,7.900797],[99.313431,7.914001],[99.418015,7.956765],[99.424664,7.876628],[99.471614,7.905155],[99.481252,7.880747],[99.532582,7.87843],[99.540646,7.911679],[99.596296,7.957442],[99.602298,7.985419],[99.658714,8.012406],[99.70297,7.990683],[99.730168,7.997724],[99.752173,7.978809],[99.756235,7.957836],[99.733279,7.943164],[99.743723,7.907878],[99.732405,7.848731],[99.783517,7.760028],[99.78869,7.700427],[99.817817,7.679274],[99.813578,7.649593],[99.785133,7.644105],[99.809811,7.621758],[99.797221,7.589774],[99.835598,7.547964],[99.820545,7.512392],[99.851905,7.484388],[99.848912,7.464647],[99.901301,7.388772],[99.905098,7.328768],[99.938929,7.317173],[99.946335,7.265237],[99.932918,7.241054],[99.997911,7.114133],[99.96355,7.097595],[99.898619,7.096136],[99.856735,7.069286],[99.78666,7.127676],[99.734868,7.136032],[99.66791,7.113847],[99.659742,7.164552],[99.642067,7.165889],[99.607324,7.136614],[99.598015,7.157163],[99.584984,7.147341],[99.522351,7.249584],[99.532473,7.28228],[99.562079,7.292491],[99.587475,7.372164],[99.570072,7.362776],[99.560777,7.319528],[99.527114,7.296809],[99.50849,7.30748],[99.496639,7.374098],[99.494128,7.337035],[99.49066,7.352691]],[[99.495403,7.381051],[99.494546,7.385868],[99.493812,7.379605],[99.495403,7.381051]]],[[[99.555171,7.123811],[99.616186,7.080774],[99.565525,7.093464],[99.555171,7.123811]]],[[[99.427592,7.266371],[99.450538,7.254756],[99.374427,7.210518],[99.368503,7.266923],[99.384985,7.281427],[99.398245,7.262878],[99.427592,7.266371]]],[[[99.294167,7.359664],[99.290403,7.390904],[99.314706,7.374329],[99.294167,7.359664]]]]}},{"type":"Feature","properties":{"CHA_NE":"NakhonSiThammarat"},"geometry":{"type":"Polygon","coordinates":[[[100.173634,7.880991],[100.04757,7.837239],[99.960931,7.886884],[99.902299,7.893389],[99.805902,7.890813],[99.782729,7.857021],[99.73629,7.856155],[99.733279,7.943164],[99.756235,7.957836],[99.752173,7.978809],[99.730168,7.997724],[99.70297,7.990683],[99.658714,8.012406],[99.602298,7.985419],[99.596296,7.957442],[99.540646,7.911679],[99.538852,7.881775],[99.481252,7.880747],[99.471614,7.905155],[99.424986,7.876428],[99.420123,7.954339],[99.392827,7.963631],[99.415897,8.001797],[99.385956,8.107061],[99.34711,8.135476],[99.296567,8.13214],[99.288338,8.150881],[99.319493,8.196573],[99.311304,8.233718],[99.336147,8.268421],[99.327441,8.29412],[99.282753,8.316257],[99.275614,8.351151],[99.241965,8.365256],[99.234916,8.399247],[99.25961,8.448286],[99.2952,8.473365],[99.289661,8.486503],[99.301935,8.479077],[99.331611,8.499395],[99.336242,8.51842],[99.361274,8.501338],[99.410862,8.530562],[99.404832,8.554445],[99.455787,8.604425],[99.447977,8.632728],[99.480083,8.648161],[99.492016,8.696917],[99.522596,8.719324],[99.516967,8.835595],[99.55957,8.851384],[99.576068,8.911742],[99.604909,8.927987],[99.627121,8.911937],[99.64293,8.928371],[99.696342,8.935225],[99.693807,8.974269],[99.724611,8.979622],[99.744654,9.026318],[99.740429,9.057612],[99.785427,9.057154],[99.78546,9.108301],[99.725351,9.155741],[99.753891,9.221107],[99.74847,9.293128],[99.769044,9.322806],[99.7803,9.309983],[99.801364,9.319438],[99.817134,9.297364],[99.834998,9.305991],[99.848573,9.253735],[99.881552,9.209271],[99.875345,9.141591],[99.909157,9.098803],[99.913839,9.022506],[99.929022,9.005625],[99.91619,8.994672],[99.915247,8.910517],[99.960912,8.606045],[100.010406,8.576714],[100.087817,8.414218],[100.138069,8.388276],[100.173137,8.387781],[100.155258,8.437729],[100.173041,8.457504],[100.163349,8.49236],[100.12775,8.516028],[100.179793,8.49465],[100.215678,8.440187],[100.263558,8.302864],[100.336271,7.93158],[100.311925,7.936075],[100.308106,7.913801],[100.246152,7.916305],[100.234869,7.898534],[100.173634,7.880991]]]}},{"type":"Feature","properties":{"CHA_NE":"Narathiwat"},"geometry":{"type":"Polygon","coordinates":[[[102.063799,6.105529],[102.053254,6.080226],[101.976995,6.031253],[101.971326,6.005846],[101.944996,5.987176],[101.920628,5.91788],[101.943201,5.872043],[101.916444,5.842934],[101.883857,5.837957],[101.866312,5.791307],[101.835557,5.788369],[101.818586,5.756532],[101.825383,5.733475],[101.754139,5.797181],[101.738445,5.782285],[101.717611,5.788083],[101.697632,5.75253],[101.657613,5.812585],[101.658441,5.874965],[101.622782,5.877166],[101.615098,5.910944],[101.585662,5.932048],[101.502214,5.88971],[101.48989,5.9004],[101.497156,5.948761],[101.472809,5.988712],[101.475562,6.065768],[101.446535,6.082118],[101.435288,6.129076],[101.386741,6.167399],[101.371127,6.208486],[101.403322,6.239236],[101.388117,6.338212],[101.417001,6.372714],[101.424324,6.421985],[101.469162,6.426206],[101.463711,6.466038],[101.549003,6.445221],[101.532769,6.468133],[101.608968,6.543737],[101.57638,6.618379],[101.631273,6.63527],[101.668849,6.574133],[101.724823,6.576877],[101.816282,6.452923],[101.873828,6.424704],[101.958168,6.333689],[102.08765,6.243981],[102.07834,6.171644],[102.093262,6.147863],[102.063799,6.105529]]]}},{"type":"Feature","properties":{"CHA_NE":"Pattani"},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.322712,6.92791],[101.301506,6.927455],[101.283072,6.948769],[101.236632,6.926625],[101.287175,6.951276],[101.322712,6.92791]]],[[[101.328353,6.924201],[101.362022,6.902062],[101.557179,6.84577],[101.683823,6.642038],[101.724823,6.576877],[101.668849,6.574133],[101.631393,6.635164],[101.626753,6.6245],[101.612939,6.63341],[101.576964,6.619425],[101.574389,6.598368],[101.596936,6.579043],[101.564894,6.549962],[101.535254,6.556567],[101.494682,6.606026],[101.458308,6.597715],[101.452386,6.577061],[101.42434,6.593917],[101.341311,6.554697],[101.301306,6.566442],[101.28958,6.683163],[101.274769,6.649343],[101.248633,6.644008],[101.216486,6.596876],[101.133735,6.609035],[101.057939,6.671686],[101.057266,6.716305],[101.018493,6.725684],[101.032392,6.744532],[101.029086,6.780089],[101.073936,6.827754],[101.042911,6.841914],[101.066082,6.857126],[101.192286,6.866028],[101.250172,6.902226],[101.335861,6.870526],[101.343059,6.910387],[101.328353,6.924201]]]]}},{"type":"Feature","properties":{"CHA_NE":"Phang-nga"},"geometry":{"type":"MultiPolygon","coordinates":[[[[98.277939,9.008165],[98.323788,8.983114],[98.307141,8.948363],[98.330078,8.977386],[98.381151,8.98606],[98.358763,9.000023],[98.413211,9.040181],[98.348667,9.002477],[98.318555,9.033893],[98.345817,9.068162],[98.387243,9.056153],[98.37628,9.072391],[98.40141,9.083882],[98.381948,9.092348],[98.369385,9.078975],[98.366226,9.094143],[98.383184,9.102518],[98.351784,9.09552],[98.329122,9.158356],[98.33217,9.126556],[98.311202,9.181429],[98.328969,9.15878],[98.315971,9.194821],[98.325368,9.221049],[98.349781,9.219269],[98.386838,9.181296],[98.343304,9.240506],[98.366466,9.276175],[98.385445,9.264155],[98.359946,9.282891],[98.37607,9.291861],[98.391936,9.34747],[98.448591,9.351032],[98.469244,9.33005],[98.456012,9.316146],[98.527055,9.296901],[98.52768,9.24329],[98.492512,9.188198],[98.50251,9.154081],[98.480989,9.145619],[98.493976,9.081157],[98.472691,9.064061],[98.51059,8.995457],[98.451019,8.966469],[98.44273,8.945424],[98.456429,8.93283],[98.445422,8.895864],[98.505519,8.881222],[98.514464,8.86057],[98.536224,8.857722],[98.5547,8.814615],[98.598647,8.797066],[98.594643,8.712787],[98.536701,8.660986],[98.587531,8.628423],[98.671198,8.661322],[98.703212,8.632597],[98.706694,8.596599],[98.649435,8.482567],[98.671137,8.459247],[98.664489,8.426701],[98.643757,8.41374],[98.661961,8.382776],[98.608667,8.382009],[98.60684,8.366206],[98.570069,8.361428],[98.516454,8.32539],[98.499682,8.340942],[98.501623,8.316887],[98.46881,8.320041],[98.454718,8.266228],[98.474381,8.248828],[98.468943,8.203172],[98.444266,8.191709],[98.440416,8.144249],[98.428553,8.134648],[98.40662,8.162514],[98.387211,8.127835],[98.360404,8.188337],[98.327778,8.186229],[98.335254,8.207586],[98.282244,8.204506],[98.258201,8.360847],[98.205006,8.553634],[98.217785,8.58795],[98.214448,8.563329],[98.227169,8.556624],[98.221978,8.578164],[98.241752,8.597524],[98.230154,8.62113],[98.246672,8.639962],[98.220769,8.738623],[98.241841,8.737823],[98.261668,8.762998],[98.252643,8.809998],[98.289884,8.91234],[98.266911,8.864385],[98.248628,8.913864],[98.262929,8.959896],[98.247846,9.006677],[98.277939,9.008165]]],[[[98.61818,8.09357],[98.608901,8.081613],[98.558703,8.121304],[98.634597,8.186626],[98.61818,8.09357]]],[[[98.528103,8.116529],[98.570688,8.082261],[98.603058,8.080826],[98.593816,8.06355],[98.610799,8.045341],[98.599876,8.017681],[98.613375,7.960607],[98.596085,7.888408],[98.588238,7.915826],[98.576251,7.90117],[98.564248,7.959804],[98.565128,7.989619],[98.584589,7.991133],[98.586506,8.014462],[98.553876,8.027918],[98.52402,8.088225],[98.528103,8.116529]]],[[[98.581984,8.27682],[98.576757,8.293597],[98.59824,8.289765],[98.581984,8.27682]]],[[[98.535407,8.144496],[98.535289,8.156185],[98.557249,8.12798],[98.535407,8.144496]]],[[[98.260999,9.165511],[98.290984,9.167372],[98.334372,9.082112],[98.28705,9.028998],[98.246954,9.031983],[98.260999,9.165511]]],[[[98.263641,9.17922],[98.263658,9.206312],[98.307122,9.263424],[98.316629,9.251968],[98.288889,9.209955],[98.29541,9.196018],[98.259716,9.168287],[98.263641,9.17922]]]]}},{"type":"Feature","properties":{"CHA_NE":"Phatthalung"},"geometry":{"type":"MultiPolygon","coordinates":[[[[100.399703,7.264964],[100.383899,7.281624],[100.38355,7.330099],[100.350503,7.355993],[100.365768,7.35215],[100.361762,7.388109],[100.381734,7.404543],[100.395335,7.386745],[100.394847,7.333326],[100.425781,7.308728],[100.399703,7.264964]]],[[[100.337415,7.353812],[100.320538,7.376537],[100.329546,7.419862],[100.3465,7.423964],[100.333637,7.429442],[100.334295,7.483038],[100.374795,7.506845],[100.373739,7.485983],[100.349928,7.47597],[100.369024,7.437865],[100.346375,7.399291],[100.349399,7.355258],[100.337415,7.353812]]],[[[99.800867,7.598325],[99.809811,7.621758],[99.785133,7.644105],[99.813578,7.649593],[99.817817,7.679274],[99.78869,7.700427],[99.783517,7.760028],[99.767217,7.769038],[99.770822,7.788969],[99.733427,7.855055],[99.782729,7.857021],[99.805902,7.890813],[99.882801,7.89352],[99.960931,7.886884],[100.047189,7.83724],[100.143078,7.869418],[100.127104,7.799995],[100.172885,7.804219],[100.203288,7.774139],[100.144143,7.727556],[100.17824,7.51302],[100.211212,7.490341],[100.225283,7.496875],[100.227715,7.451422],[100.256157,7.388585],[100.299728,7.337777],[100.324954,7.354334],[100.359304,7.346899],[100.374207,7.305299],[100.30521,7.20935],[100.174973,7.175097],[100.156174,7.148774],[100.110624,7.165491],[100.063035,7.137194],[100.065374,7.108992],[100.039108,7.109562],[100.028097,7.09056],[99.960345,7.169737],[99.932414,7.243303],[99.946335,7.265237],[99.938929,7.317173],[99.904395,7.330154],[99.901301,7.388772],[99.848912,7.464647],[99.851905,7.484388],[99.820545,7.512392],[99.835923,7.546778],[99.800867,7.598325]]]]}},{"type":"Feature","properties":{"CHA_NE":"Phuket"},"geometry":{"type":"MultiPolygon","coordinates":[[[[98.457741,8.053948],[98.467867,8.061651],[98.469555,8.0388],[98.457741,8.053948]]],[[[98.395428,7.965658],[98.411457,7.913046],[98.426127,7.896253],[98.441913,7.914569],[98.445344,7.883342],[98.430544,7.878012],[98.437728,7.865285],[98.397036,7.871282],[98.412632,7.801151],[98.388973,7.805438],[98.367074,7.838217],[98.346345,7.824825],[98.33672,7.7774],[98.302953,7.759481],[98.304824,7.776674],[98.284626,7.7883],[98.298694,7.803646],[98.289689,7.85383],[98.260894,7.885714],[98.289838,7.886912],[98.296307,7.908984],[98.258131,7.93529],[98.282566,7.959468],[98.270248,7.987966],[98.292495,8.002357],[98.270335,8.071329],[98.301289,8.107137],[98.286137,8.199944],[98.337017,8.172619],[98.346199,8.122146],[98.373195,8.119468],[98.385906,8.085047],[98.406561,8.07982],[98.425431,8.101045],[98.440025,8.09301],[98.443797,8.065841],[98.413946,8.03056],[98.426342,7.987469],[98.394442,7.982557],[98.395428,7.965658]]],[[[98.41698,7.931964],[98.438183,7.944486],[98.432373,7.92668],[98.41698,7.931964]]],[[[98.361778,7.796497],[98.389415,7.780633],[98.360721,7.781673],[98.361778,7.796497]]]]}},{"type":"Feature","properties":{"CHA_NE":"Yala"},"geometry":{"type":"Polygon","coordinates":[[[101.387792,6.335591],[101.403322,6.239236],[101.371127,6.208486],[101.386741,6.167399],[101.435288,6.129076],[101.446535,6.082118],[101.475337,6.066339],[101.472809,5.988712],[101.496679,5.950461],[101.48989,5.9004],[101.502214,5.88971],[101.484855,5.870326],[101.391087,5.875711],[101.345513,5.809107],[101.276498,5.812416],[101.250184,5.762143],[101.260846,5.717737],[101.250678,5.699214],[101.218136,5.687981],[101.214486,5.661628],[101.172026,5.647935],[101.134515,5.613116],[101.123122,5.661785],[101.082493,5.721321],[101.061722,5.727584],[101.059565,5.744602],[101.03357,5.738704],[100.983331,5.808359],[101.011833,5.837856],[101.027348,5.914537],[101.08489,5.909451],[101.094991,5.950505],[101.123875,5.977157],[101.106864,5.990816],[101.113814,6.039059],[101.100188,6.051034],[101.126588,6.105613],[101.058432,6.142375],[101.085645,6.178965],[101.126421,6.192836],[101.111948,6.251309],[101.063657,6.259491],[101.014774,6.247161],[100.967373,6.28308],[100.943785,6.243276],[100.917467,6.247908],[100.902108,6.233609],[100.871691,6.264609],[100.854957,6.231619],[100.835005,6.296402],[100.84292,6.307936],[100.848051,6.289092],[100.888789,6.295709],[100.928589,6.320979],[100.922112,6.426475],[100.960441,6.450927],[100.976768,6.48618],[101.001903,6.482116],[101.112565,6.587498],[101.089172,6.608374],[101.102689,6.627483],[101.215,6.596219],[101.248633,6.644008],[101.274769,6.649343],[101.288908,6.6832],[101.301306,6.566442],[101.341311,6.554697],[101.42434,6.593917],[101.452386,6.577061],[101.458308,6.597715],[101.494682,6.606026],[101.535254,6.556567],[101.564894,6.549962],[101.592423,6.565627],[101.608866,6.544257],[101.532769,6.468133],[101.547229,6.443904],[101.463447,6.465828],[101.469162,6.426206],[101.424324,6.421985],[101.417001,6.372714],[101.387792,6.335591]]]}},{"type":"Feature","properties":{"CHA_NE":"Ranong"},"geometry":{"type":"MultiPolygon","coordinates":[[[[98.767795,9.941119],[98.721642,9.894358],[98.721027,9.867438],[98.692742,9.833215],[98.633439,9.78897],[98.626945,9.764137],[98.659597,9.684474],[98.647198,9.662532],[98.72201,9.628467],[98.767451,9.545042],[98.693732,9.469578],[98.66804,9.465415],[98.680963,9.435794],[98.671148,9.424898],[98.647364,9.427558],[98.647886,9.388035],[98.672147,9.388403],[98.667988,9.358153],[98.611246,9.342148],[98.586475,9.368035],[98.546861,9.360909],[98.50608,9.309386],[98.48051,9.304694],[98.470978,9.321602],[98.455773,9.316402],[98.469244,9.33005],[98.449546,9.350639],[98.391936,9.34747],[98.397268,9.402769],[98.411966,9.397543],[98.424104,9.427126],[98.455386,9.563318],[98.469155,9.564797],[98.456002,9.536482],[98.469121,9.542334],[98.475184,9.524619],[98.45775,9.492141],[98.47619,9.454577],[98.481113,9.532504],[98.496788,9.513338],[98.480181,9.495502],[98.484303,9.470859],[98.482771,9.495241],[98.493244,9.490591],[98.502263,9.511823],[98.497848,9.553314],[98.530828,9.56834],[98.50819,9.595506],[98.465974,9.600916],[98.462707,9.623281],[98.502087,9.627129],[98.509358,9.646662],[98.484738,9.686276],[98.51061,9.672688],[98.543206,9.711572],[98.54629,9.698654],[98.545917,9.717816],[98.559789,9.712289],[98.552078,9.726962],[98.574723,9.724359],[98.55703,9.730163],[98.568884,9.736749],[98.554597,9.752473],[98.500787,9.739256],[98.507002,9.783474],[98.554852,9.793272],[98.577151,9.829017],[98.573132,9.84918],[98.536582,9.800505],[98.51563,9.853927],[98.578669,9.907942],[98.55791,9.896548],[98.560977,9.920845],[98.587432,9.931085],[98.567042,9.956387],[98.576638,9.982232],[98.619658,10.05495],[98.653375,10.164936],[98.698632,10.210404],[98.755972,10.393381],[98.809143,10.470029],[98.800149,10.483937],[98.821092,10.530269],[98.798652,10.559796],[98.810567,10.592614],[98.771146,10.621138],[98.779557,10.679111],[98.879531,10.789013],[98.914519,10.747934],[98.89435,10.6817],[98.905987,10.690671],[98.930168,10.673117],[98.928356,10.648621],[98.950997,10.637323],[98.945055,10.612079],[98.965179,10.604784],[98.941582,10.569666],[98.962738,10.539633],[98.884492,10.458292],[98.901349,10.39854],[98.928535,10.395337],[98.943225,10.351631],[98.900262,10.289735],[98.908733,10.266153],[98.870366,10.186916],[98.888799,10.160635],[98.86908,10.154057],[98.862819,10.094529],[98.835789,10.066253],[98.893006,10.064794],[98.905548,10.032512],[98.866503,9.99369],[98.844352,9.993635],[98.814252,9.936364],[98.780895,9.950715],[98.767795,9.941119]]],[[[98.483791,9.898073],[98.466224,9.895847],[98.489448,9.913632],[98.483791,9.898073]]],[[[98.46056,9.579227],[98.467216,9.59249],[98.489191,9.576885],[98.46056,9.579227]]],[[[98.461599,9.840511],[98.452263,9.790345],[98.430455,9.821549],[98.45078,9.874264],[98.470193,9.862148],[98.461599,9.840511]]],[[[98.416018,9.777036],[98.427425,9.734919],[98.389921,9.704261],[98.397699,9.719236],[98.379659,9.732595],[98.388048,9.750425],[98.405387,9.746717],[98.400927,9.765694],[98.416018,9.777036]]],[[[98.29629,9.594436],[98.317785,9.607961],[98.301488,9.618582],[98.314108,9.621886],[98.309574,9.637499],[98.339234,9.64607],[98.357777,9.634668],[98.356391,9.603145],[98.331811,9.613857],[98.336029,9.59536],[98.326566,9.599149],[98.337397,9.562979],[98.29629,9.594436]]],[[[98.343749,9.476878],[98.331093,9.468836],[98.354461,9.507798],[98.343749,9.476878]]]]}},{"type":"Feature","properties":{"CHA_NE":"Songkhla"},"geometry":{"type":"MultiPolygon","coordinates":[[[[100.452998,7.1571],[100.491456,7.133685],[100.553669,7.143185],[100.59447,7.178764],[100.581206,7.231709],[100.776413,6.975854],[100.812884,6.95383],[100.849853,6.96147],[100.969781,6.869437],[101.063764,6.854362],[101.042994,6.838768],[101.073823,6.827423],[101.029086,6.780089],[101.032392,6.744532],[101.018493,6.725684],[101.05828,6.714844],[101.057939,6.671686],[101.107806,6.629487],[101.088179,6.612832],[101.112565,6.587498],[101.001903,6.482116],[100.976952,6.486315],[100.96021,6.450684],[100.932891,6.444553],[100.917197,6.398936],[100.928766,6.321329],[100.911856,6.304126],[100.847177,6.289621],[100.811798,6.442582],[100.776168,6.463379],[100.752442,6.458711],[100.738672,6.509897],[100.709439,6.471371],[100.652303,6.442956],[100.646237,6.458688],[100.617619,6.460089],[100.562474,6.496486],[100.518446,6.489465],[100.488748,6.526231],[100.417279,6.519546],[100.401888,6.536691],[100.366312,6.540032],[100.350852,6.57308],[100.304098,6.605143],[100.325225,6.622327],[100.326609,6.664397],[100.294331,6.680048],[100.292572,6.708352],[100.263519,6.699418],[100.256892,6.711304],[100.228351,6.69397],[100.20483,6.72225],[100.21386,6.765948],[100.191158,6.809319],[100.218607,6.879242],[100.197768,6.907775],[100.121037,6.924042],[100.094943,6.964817],[100.078547,6.96353],[100.083485,6.996404],[100.063138,7.02046],[100.079103,7.040029],[100.05459,7.094925],[100.062936,7.137029],[100.114578,7.166803],[100.156174,7.148774],[100.174973,7.175097],[100.304091,7.208681],[100.376545,7.313671],[100.384224,7.277004],[100.436503,7.25063],[100.399606,7.234727],[100.388799,7.203882],[100.41284,7.200411],[100.421464,7.16108],[100.452998,7.1571]]],[[[100.397758,7.664723],[100.464148,7.418867],[100.521499,7.293141],[100.575022,7.230144],[100.577025,7.190828],[100.548745,7.195605],[100.485765,7.25113],[100.447504,7.24925],[100.412082,7.267264],[100.431281,7.279784],[100.430158,7.310228],[100.424221,7.360779],[100.405075,7.381235],[100.411177,7.477714],[100.393144,7.561485],[100.321809,7.578145],[100.293536,7.509126],[100.272515,7.518016],[100.265616,7.558524],[100.289368,7.595138],[100.308872,7.587773],[100.319984,7.62975],[100.297842,7.773504],[100.282052,7.800341],[100.20231,7.777338],[100.172885,7.804219],[100.127456,7.799525],[100.142163,7.868661],[100.231346,7.896879],[100.246152,7.916305],[100.308106,7.913801],[100.311925,7.936075],[100.336271,7.93158],[100.397758,7.664723]]],[[[100.530422,7.146652],[100.543474,7.183082],[100.558067,7.158974],[100.530422,7.146652]]]]}},{"type":"Feature","properties":{"CHA_NE":"Satun"},"geometry":{"type":"MultiPolygon","coordinates":[[[[100.154455,6.545469],[100.158467,6.479899],[100.119699,6.42282],[100.101743,6.495755],[100.084431,6.496944],[100.098713,6.520359],[100.092321,6.549676],[100.077382,6.558542],[100.058109,6.516786],[100.009031,6.558149],[99.991923,6.608848],[99.950263,6.584299],[99.949733,6.617838],[99.973442,6.630333],[99.95661,6.661324],[99.935765,6.65698],[99.9206,6.674447],[99.915149,6.723736],[99.876715,6.720881],[99.841958,6.779088],[99.807682,6.773102],[99.774191,6.842103],[99.754512,6.832546],[99.721423,6.862374],[99.696971,6.85604],[99.677801,6.899533],[99.680753,6.940917],[99.706394,6.962377],[99.68309,6.960027],[99.668816,7.042095],[99.695923,7.076018],[99.704006,7.069633],[99.736483,7.129257],[99.787433,7.127464],[99.857367,7.069214],[99.939507,7.106631],[99.96355,7.097595],[99.997911,7.114133],[100.028097,7.09056],[100.03854,7.109267],[100.056859,7.107738],[100.079103,7.040029],[100.063138,7.02046],[100.083485,6.996404],[100.078547,6.96353],[100.094943,6.964817],[100.121037,6.924042],[100.197768,6.907775],[100.220671,6.8707],[100.191184,6.809601],[100.21386,6.765948],[100.206226,6.729008],[100.171052,6.692081],[100.180408,6.655142],[100.165808,6.631685],[100.183147,6.57374],[100.156557,6.580109],[100.154455,6.545469]]],[[[99.861827,6.726805],[99.864809,6.705154],[99.842027,6.707568],[99.847224,6.732797],[99.861827,6.726805]]],[[[99.62862,6.667323],[99.646711,6.740442],[99.684151,6.685038],[99.677277,6.617249],[99.692514,6.60486],[99.698572,6.549331],[99.693296,6.529407],[99.666991,6.531458],[99.673465,6.511945],[99.658782,6.503578],[99.59564,6.598143],[99.612607,6.618335],[99.614004,6.66041],[99.62862,6.667323]]],[[[99.279488,6.577637],[99.326769,6.556027],[99.313992,6.50926],[99.283452,6.509365],[99.279488,6.577637]]],[[[99.30583,6.480915],[99.28315,6.48253],[99.30549,6.499357],[99.30583,6.480915]]],[[[99.16689,6.554372],[99.182782,6.548782],[99.19722,6.578956],[99.247403,6.583009],[99.259481,6.566263],[99.217832,6.539139],[99.170659,6.542758],[99.16689,6.554372]]],[[[99.153489,6.531651],[99.157717,6.54307],[99.18596,6.521903],[99.153489,6.531651]]]]}},{"type":"Feature","properties":{"CHA_NE":"SuratThani"},"geometry":{"type":"MultiPolygon","coordinates":[[[[100.067159,9.4836],[100.071057,9.467395],[100.04985,9.468711],[100.011818,9.420367],[99.929554,9.417088],[99.934551,9.455714],[99.918789,9.491689],[99.933868,9.499378],[99.934617,9.53654],[99.912319,9.570775],[99.982699,9.587425],[100.052086,9.557146],[100.067249,9.592468],[100.080131,9.588024],[100.088459,9.559839],[100.056222,9.512114],[100.067159,9.4836]]],[[[100.009132,9.69917],[99.985182,9.703437],[99.956655,9.755579],[99.979423,9.802644],[100.004009,9.787035],[100.024711,9.803457],[100.061553,9.78711],[100.056465,9.772624],[100.079226,9.745065],[100.076996,9.666355],[100.009132,9.69917]]],[[[99.682082,9.312432],[99.681561,9.337664],[99.725203,9.312094],[99.744446,9.329311],[99.769551,9.322059],[99.74847,9.293128],[99.753891,9.221107],[99.725351,9.155741],[99.78546,9.108301],[99.785886,9.058137],[99.740429,9.057612],[99.744654,9.026318],[99.724611,8.979622],[99.693807,8.974269],[99.696342,8.935225],[99.64293,8.928371],[99.627121,8.911937],[99.613955,8.927629],[99.582005,8.917857],[99.557037,8.876801],[99.55957,8.851384],[99.516967,8.835595],[99.525379,8.727212],[99.492016,8.696917],[99.480083,8.648161],[99.447977,8.632728],[99.455787,8.604425],[99.404832,8.554445],[99.410862,8.530562],[99.361274,8.501338],[99.336242,8.51842],[99.331611,8.499395],[99.301935,8.479077],[99.289661,8.486503],[99.2952,8.473365],[99.25961,8.448286],[99.234916,8.399247],[99.241965,8.365256],[99.277555,8.347359],[99.291927,8.312595],[99.281083,8.303456],[99.129005,8.365635],[99.039966,8.363233],[98.947739,8.424888],[98.935091,8.562569],[98.844124,8.655169],[98.79978,8.655804],[98.795207,8.640773],[98.74674,8.674418],[98.721849,8.62965],[98.671198,8.661322],[98.604021,8.62671],[98.536701,8.660986],[98.594643,8.712787],[98.598647,8.797066],[98.5547,8.814615],[98.536224,8.857722],[98.514464,8.86057],[98.505519,8.881222],[98.445422,8.895864],[98.456429,8.93283],[98.44273,8.945424],[98.451019,8.966469],[98.51059,8.995457],[98.472692,9.063392],[98.494043,9.081492],[98.48028,9.124035],[98.482107,9.148541],[98.50251,9.154081],[98.496349,9.201253],[98.530518,9.254998],[98.527055,9.296901],[98.506155,9.316067],[98.546861,9.360909],[98.586475,9.368035],[98.611246,9.342148],[98.667988,9.358153],[98.672147,9.388403],[98.647886,9.388035],[98.64721,9.427059],[98.671148,9.424898],[98.680963,9.435794],[98.66804,9.465415],[98.693732,9.469578],[98.767318,9.544163],[98.737514,9.599064],[98.765867,9.62829],[98.769812,9.68846],[98.791361,9.683953],[98.904114,9.735599],[99.005507,9.710868],[99.076059,9.651938],[99.096683,9.663442],[99.072246,9.688237],[99.078434,9.704251],[99.158895,9.703744],[99.244109,9.480604],[99.313338,9.390698],[99.293186,9.403692],[99.216716,9.331206],[99.223976,9.25654],[99.262303,9.22008],[99.318081,9.246451],[99.313317,9.219934],[99.362805,9.215976],[99.370032,9.189917],[99.415099,9.205914],[99.466731,9.198697],[99.499216,9.220858],[99.529351,9.284311],[99.609094,9.267588],[99.647917,9.305019],[99.682082,9.312432]]],[[[99.668677,9.535362],[99.68769,9.553104],[99.707456,9.546722],[99.690496,9.509388],[99.661522,9.514277],[99.668677,9.535362]]],[[[99.67546,9.632256],[99.675948,9.606051],[99.662032,9.637824],[99.67546,9.632256]]]]}}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment