Skip to content

Instantly share code, notes, and snippets.

@mbaba
Last active November 20, 2015 17:14
Show Gist options
  • Save mbaba/11621f94c590e7778b49 to your computer and use it in GitHub Desktop.
Save mbaba/11621f94c590e7778b49 to your computer and use it in GitHub Desktop.
Map circles text
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script type="text/javascript" src="//d3js.org/d3.v3.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=Lato:400,100,300,400italic,900,700,100italic,300italic,700italic,900italic&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="main.css">
<title>Voivodeships of Poland</title>
</head>
<body>
<div id="wrapper">
<div class="text">
<h1>Voivodeships of Poland</h1>
</div>
<script type="text/javascript">
d3.select("div", "#wrapper")
.append("div")
.attr("id", "content");
var margin = {top: 5, right: 25, bottom: 5, left: 5};
var width = 900 - margin.left - margin.right,
height = 750 - margin.top - margin.bottom;
var projection = d3.geo.mercator()
.center([22, 51])
.translate([ width/2, height/2 ])
.scale(3000);
var path = d3.geo.path()
.projection(projection);
var mapColor = d3.scale.quantize()
.range(["#ffffb2",
"#fed98e",
"#fe9929",
"#d95f0e",
"#993404"])
.domain([7, 16.5]);
var legendColor = ["#ffffb2", "#fed98e", "#fe9929", "#d95f0e", "#993404"];
var svg = d3.select("#content")
.append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var formatNumbers = d3.format(",");
d3.csv("woj_stats.csv", function(data) {
d3.json("woj_maps.json", function(json) {
for (var i = 0; i < data.length; i++) {
var dataWoj = data[i].woj;
var areaWoj = parseFloat(data[i].area);
var populationWoj = parseFloat(data[i].population);
var densityWoj = parseFloat(data[i].density);
var unRateWoj = parseFloat(data[i].un_rate_woj);
var capitalWoj = data[i].capital;
var capitalWojUR = parseFloat(data[i].un_rate_capital);
var capitalLong = parseFloat(data[i].longitude);
var capitalLat = parseFloat(data[i].latitude);
for (var j = 0; j < json.features.length; j++) {
var jsonWoj = json.features[j].properties.name;
if (dataWoj == jsonWoj) {
json.features[j].properties.area = areaWoj;
json.features[j].properties.population = populationWoj;
json.features[j].properties.density = densityWoj;
json.features[j].properties.un_rate_woj = unRateWoj;
json.features[j].properties.capital = capitalWoj;
json.features[j].properties.capitalWojUR = capitalWojUR;
json.features[j].properties.longitude = capitalLong;
json.features[j].properties.latitude = capitalLat;
break;
}
}
}
var mapWoj = svg.selectAll("g")
.data(json.features)
.enter()
.append("g")
mapWoj.append("path")
.attr("d", path)
.attr("class", "path")
.style("fill", function (d) { return mapColor(d.properties.un_rate_woj);
});
mapWoj.append("text")
.attr("x", 550)
.attr("y", 100)
.attr("text-anchor", "start")
.attr("fill", "none")
.text(function(d) { return d.properties.name; })
.append("tspan")
.attr("x", 550)
.attr("dy", 25)
.text(function(d) { return "Area: " + formatNumbers(d.properties.area) + " sq. km"; })
.append("tspan")
.attr("x", 550)
.attr("dy", 25)
.text(function(d) { return "Population: " + formatNumbers(d.properties.population); })
.append("tspan")
.attr("x", 550)
.attr("dy", 25)
.text(function(d) { return "Unemployment rate: " + d.properties.un_rate_woj + "%"; })
.append("tspan")
.attr("x", 550)
.attr("dy", 25)
.text(function(d) { return "Capital: " + d.properties.capital ; })
.append("tspan")
.attr("x", 550)
.attr("dy", 25)
.text(function(d) { return d.properties.capital + "'s unemployment rate: " + d.properties.capitalWojUR + "%"; });
mapWoj.on("mouseover", function() {
d3.select(this)
.classed("hover", true)
});
mapWoj.on("mouseout", function() {
d3.select(this)
.classed("hover", false)
});
var mapCapital = svg.selectAll("circle")
.data(json.features)
.enter()
.append("circle")
.attr("class", "circle")
.attr("cx", function(d) {
return projection([d.properties.longitude, d.properties.latitude])[0];
})
.attr("cy", function(d) {
return projection([d.properties.longitude, d.properties.latitude])[1];
})
.attr("r", function(d) { return Math.sqrt(+d.properties.capitalWojUR * 50);
});
mapCapitalText = svg.append("g")
.selectAll("text")
.data(json.features)
.enter()
.append("text")
.attr("x", 550)
.attr("y", 100)
.attr("text-anchor", "start")
.attr("fill", "none")
.text(function(d) { return d.properties.capital; })
.append("tspan")
.attr("x", 550)
.attr("dy", 25)
.text(function(d) { return "Unemployment rate: " + d.properties.capitalWojUR + "%"; })
.append("tspan")
.attr("x", 550)
.attr("dy", 25)
.text(function(d) { return d.properties.name + "'s nemployment rate: " + d.properties.un_rate_woj; });
mapCapital.on("mouseover", function() {
d3.select(this)
.classed("hover", true)
});
mapCapital.on("mouseout", function() {
d3.select(this)
.classed("hover", false)
});
for (var i = 0; i < 5; i++) {
svg.append("rect")
.attr("y", 490)
.attr("x", (i*20)+75)
.attr("width", 20)
.attr("height", 20)
.attr("fill", legendColor[i])
.attr("class", "rect")
};
svg.append("text")
.attr("x", 70)
.attr("y", 505)
.attr("text-anchor", "end")
.attr("class", "legend")
.text("7%");
svg.append("text")
.attr("x", 210)
.attr("y", 505)
.attr("text-anchor", "end")
.attr("class", "legend")
.text("16.5%");
});
});
</script>
</div>
</body>
</html>
body {
background-color: #ededeb;
font-family: "Lato", sans-serif;
font-weight: 400;
font-size: 16px;
}
h1 {
font-size: 30px;
font-family: "Lato", sans-serif;
font-weight: 400;
text-align: left;
color: dimgrey;
}
.text {
padding: 0 1%;
margin-left: 1%;
margin-right: 1%;
margin-bottom: 0px;
background-color: #ededeb;
text-align: left;
text-indent: 30px;
}
.path {
opacity: 0.75;
stroke: dimgrey;
}
.path:hover {
opacity: 1;
cursor: crosshair;
}
.circle {
stroke: dimgrey;
stroke-opacity: 0.75;
fill: lightgrey;
opacity: 0.75;
}
.circle:hover {
stroke-width: 1.5px;
stroke: dimgrey;
stroke-opacity: 1;
cursor: crosshair;
opacity: 1;
}
.hover text {
fill: red;
font-weight: 700;
font-size: 18px;
}
.hover tspan {
fill: dimgrey;
font-weight: 300;
font-size: 16px;
}
.legend {
font-size: 12px;
font-family: "Lato", sans-serif;
font-weight: 300;
color: dimgrey;
}
.rect {
opacity: 0.75;
stroke: lightgrey;
stroke-width: 0;
}
#wrapper {
width: 50%;
height: 100%;
margin: 0 auto;
position: relative;
}
#content {
padding: 0;
background-color: #ededeb;
margin: 0 1%;
text-align: center;
}
Display the source blob
Display the rendered blob
Raw
{
"type":"FeatureCollection",
"crs":{
"type":"name",
"properties":{
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
}
},
"features":[
{
"type":"Feature",
"properties":{
"iip_przest":"PL.PZGIK.200",
"iip_identy":"9bd0c42a-ca40-4b7d-9b5b-81aae3398015",
"iip_wersja":"2012-09-27T13:45:13+02:00",
"jpt_sjr_ko":"WOJ",
"jpt_kod_je":"16",
"name":"Opolskie",
"jpt_nazw01":null,
"jpt_organ_":null,
"jpt_orga01":"NZN",
"jpt_jor_id":null,
"wazny_od":"2012/09/26",
"wazny_do":null,
"jpt_wazna_":"NZN",
"wersja_od":"2012/09/26",
"wersja_do":null,
"jpt_powier":941272,
"jpt_kj_iip":"EGIB",
"jpt_kj_i01":"16",
"jpt_kj_i02":null,
"jpt_kod_01":null,
"id_bufora_":13890,
"id_bufor01":null,
"id_technic":829371,
"jpt_opis":null,
"jpt_sps_ko":"UZG",
"gra_ids":null,
"status_obi":"AKTUALNY",
"opis_bledu":null,
"typ_bledu":null
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
17.795269170029325,
51.19414635045381
],
[
17.85118377019355,
51.17243909542018
],
[
17.819128156240115,
51.12224839665036
],
[
17.88523798044923,
51.10379342588591
],
[
18.03935287607827,
51.131035738702494
],
[
18.078160477282267,
51.166181389409516
],
[
18.16368129242641,
51.17251722640668
],
[
18.184789595638694,
51.157979496648615
],
[
18.264971728282056,
51.1559648251781
],
[
18.30524291858177,
51.135340822741824
],
[
18.367293913066337,
51.13748573650154
],
[
18.469745972804223,
51.104370931696884
],
[
18.51541357841401,
51.10423113995403
],
[
18.515473099672146,
51.132736816738415
],
[
18.55337355525586,
51.13902059014836
],
[
18.577613706396704,
51.08203253523916
],
[
18.67295452571556,
51.056902644469446
],
[
18.695486740206427,
51.015775479589756
],
[
18.65617894602217,
51.005012560354196
],
[
18.663624059215724,
50.97056812836747
],
[
18.612385640622353,
50.95513802735585
],
[
18.654950394009695,
50.916578927741405
],
[
18.616261894001372,
50.85352326046045
],
[
18.557971946991593,
50.83408397414733
],
[
18.521887402486076,
50.80235998101841
],
[
18.550028273849,
50.75957576717138
],
[
18.548302626178288,
50.7320238418873
],
[
18.483883023372673,
50.70826271075591
],
[
18.51746767425466,
50.62545932094216
],
[
18.58725071490944,
50.61382269625973
],
[
18.605377338464162,
50.552739017045084
],
[
18.559226484482746,
50.54027868672592
],
[
18.477855250177903,
50.5527134628184
],
[
18.438194286887118,
50.546584027512246
],
[
18.440042917284377,
50.480726963568706
],
[
18.38375083938951,
50.48356422172867
],
[
18.393659592817198,
50.391445951066174
],
[
18.357744622086066,
50.35656882369406
],
[
18.393884973377922,
50.33845681337899
],
[
18.39199149903034,
50.313960733446294
],
[
18.426964632828252,
50.26870800436507
],
[
18.405857976253227,
50.254722126016155
],
[
18.312999037048954,
50.240666022669984
],
[
18.25592717815611,
50.222977405845704
],
[
18.236303509760702,
50.20026559932266
],
[
18.064085049042905,
50.16781543514858
],
[
18.05676784364762,
50.086657028673656
],
[
18.035035847595477,
50.06576696087841
],
[
18.03535792240263,
50.01098613728756
],
[
17.954045115261394,
50.00506787535319
],
[
17.90915794582799,
49.97651092334601
],
[
17.861601139069386,
49.98058496009852
],
[
17.827690472874735,
50.011305150645505
],
[
17.77765281909896,
50.02012281620642
],
[
17.749939271039196,
50.077600645349676
],
[
17.705127978881144,
50.1144065771799
],
[
17.676659650530375,
50.103024697372504
],
[
17.592686445968404,
50.15997694957481
],
[
17.702895588653448,
50.18491572440945
],
[
17.758458332048356,
50.206572065574136
],
[
17.764973579508784,
50.236390884902406
],
[
17.726028841368365,
50.25864292469984
],
[
17.750775154584463,
50.29956975767792
],
[
17.68912172643515,
50.30186051249587
],
[
17.610719781914806,
50.26598161586062
],
[
17.495592677309023,
50.275089309384654
],
[
17.45783466750982,
50.27009010253348
],
[
17.34259059465966,
50.2810667066615
],
[
17.353682538722406,
50.30804366013174
],
[
17.327796370737623,
50.327100164368154
],
[
17.289928352850513,
50.317502468352416
],
[
17.201144967145634,
50.364016368381726
],
[
17.14333204020436,
50.380421745359286
],
[
17.110750556962344,
50.40496270602508
],
[
16.983378113754302,
50.420080334213225
],
[
16.907901328333583,
50.44944916367598
],
[
16.97599687197548,
50.47561098695219
],
[
17.061958936101973,
50.47561683945006
],
[
17.06130981617724,
50.53694810841806
],
[
17.114918316288772,
50.58744850777853
],
[
17.121868384128366,
50.607501295917324
],
[
17.235968005954298,
50.61322175580027
],
[
17.238903047463246,
50.661223159852675
],
[
17.22078749791372,
50.713703019930776
],
[
17.252117871746808,
50.71772705878238
],
[
17.297584121111083,
50.75333506083754
],
[
17.256219658034336,
50.7745934500127
],
[
17.284895886812144,
50.79233695680414
],
[
17.344746459390716,
50.78446197644004
],
[
17.32820140622842,
50.85059541108286
],
[
17.38428957994368,
50.86206515721766
],
[
17.381949330923877,
50.92461480009296
],
[
17.43246391924841,
50.91620021260115
],
[
17.431397188067333,
50.96708560810079
],
[
17.501550061832738,
50.97558712122558
],
[
17.514284005039947,
51.011631274462964
],
[
17.55820775375236,
51.06783133154749
],
[
17.57638120583247,
51.12942171367187
],
[
17.544746952074323,
51.15448819519587
],
[
17.620611129115858,
51.1754265154735
],
[
17.669263770898013,
51.16084985511054
],
[
17.795269170029325,
51.19414635045381
]
]
]
}
},
{
"type":"Feature",
"properties":{
"iip_przest":"PL.PZGIK.200",
"iip_identy":"d021c0dd-b22e-4fcd-8444-904c64ec3aa8",
"iip_wersja":"2012-09-27T13:45:13+02:00",
"jpt_sjr_ko":"WOJ",
"jpt_kod_je":"26",
"name":"Świętokrzyskie",
"jpt_nazw01":null,
"jpt_organ_":null,
"jpt_orga01":"NZN",
"jpt_jor_id":null,
"wazny_od":"2012/09/26",
"wazny_do":null,
"jpt_wazna_":"NZN",
"wersja_od":"2012/09/26",
"wersja_do":null,
"jpt_powier":1171136,
"jpt_kj_iip":"EGIB",
"jpt_kj_i01":"26",
"jpt_kj_i02":null,
"jpt_kod_01":null,
"id_bufora_":13890,
"id_bufor01":null,
"id_technic":829374,
"jpt_opis":null,
"jpt_sps_ko":"UZG",
"gra_ids":null,
"status_obi":"AKTUALNY",
"opis_bledu":null,
"typ_bledu":null
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
19.74706000159699,
50.86597005064274
],
[
19.79690811780605,
50.90835299222461
],
[
19.84877013287523,
50.93569659767875
],
[
19.829412057333798,
50.96757319527443
],
[
19.86354388442105,
51.004842758561715
],
[
19.86404492292821,
51.03018828060648
],
[
19.93693224337243,
51.0246234479671
],
[
19.955819010273824,
50.99214677877666
],
[
20.0176556414379,
50.962280535451164
],
[
20.05094663914241,
51.026266386537856
],
[
20.04540035359603,
51.068555532451704
],
[
19.981769272419907,
51.07311773904222
],
[
19.988281530188587,
51.1395387802448
],
[
20.025765266512632,
51.164670045832516
],
[
20.025816303281395,
51.20042135197882
],
[
20.11932268998559,
51.18928814758736
],
[
20.251609574670557,
51.20675984392822
],
[
20.27799432696305,
51.244273782179725
],
[
20.33444389989641,
51.254712378525895
],
[
20.379727811343038,
51.24596851888436
],
[
20.390423075165693,
51.27220488484829
],
[
20.36494001433742,
51.30804484015017
],
[
20.432815027597815,
51.339405038122045
],
[
20.507182358825858,
51.331391300885024
],
[
20.492627439438614,
51.30729569301196
],
[
20.546118660597486,
51.23039597999946
],
[
20.579044254788,
51.244685416148045
],
[
20.700285561885163,
51.195996390695015
],
[
20.71837565419428,
51.172749874417995
],
[
20.81301884873163,
51.145837846718955
],
[
20.821604873594676,
51.17845312661509
],
[
20.879781023510596,
51.1544240643073
],
[
20.920719200988067,
51.195337397936164
],
[
21.000829863969418,
51.15956670851637
],
[
21.056555829644743,
51.1571138696572
],
[
21.075083180537966,
51.198053315062225
],
[
21.116093666365902,
51.178899556444165
],
[
21.091224595742446,
51.15509363722038
],
[
21.153968354339263,
51.12547698318042
],
[
21.152750534906495,
51.08028604292171
],
[
21.355527867326344,
51.08526267921741
],
[
21.381750322344576,
51.04061588181869
],
[
21.463494360982356,
51.0131954741604
],
[
21.529358921643084,
51.05922702382481
],
[
21.590146296484264,
51.05775370334667
],
[
21.67624220281393,
51.0780156642517
],
[
21.705266527961026,
51.042688722679536
],
[
21.770256832094994,
51.04295619652347
],
[
21.80299809180555,
51.072079162915486
],
[
21.826380464253415,
51.047033165525654
],
[
21.812874291519574,
50.93454794210784
],
[
21.866513197099483,
50.82213578260614
],
[
21.864303387232304,
50.80270678610293
],
[
21.81886669870871,
50.690041252420286
],
[
21.778619748469684,
50.65696189756427
],
[
21.722596415081714,
50.64535271857147
],
[
21.675147739569066,
50.6094518885387
],
[
21.657463499583596,
50.57304747158935
],
[
21.604017123446415,
50.52123559700124
],
[
21.55188238874241,
50.520025171138066
],
[
21.454087420791645,
50.49411121818252
],
[
21.451522295302922,
50.46633520860701
],
[
21.39739676534953,
50.43881843967158
],
[
21.368670422578234,
50.441203323735444
],
[
21.28104861400169,
50.40837706571448
],
[
21.275639215089175,
50.39046438653578
],
[
21.208831568560285,
50.35489777348392
],
[
21.14908884984025,
50.353397825498114
],
[
21.086849774214183,
50.33791753661319
],
[
21.0617037692017,
50.31703305801876
],
[
20.946697882908534,
50.313564391454875
],
[
20.80577666436834,
50.2895029354827
],
[
20.727997981605853,
50.25027084873532
],
[
20.72868881600187,
50.23046646733012
],
[
20.68153871710715,
50.20587583787802
],
[
20.55717878943117,
50.20164711857588
],
[
20.51288172988419,
50.186030478648625
],
[
20.47735576932242,
50.19932981837819
],
[
20.41552016634817,
50.19123753963469
],
[
20.38472445164987,
50.207573284021954
],
[
20.367591019229074,
50.248692390629515
],
[
20.333415621749616,
50.26741752967693
],
[
20.32792935893666,
50.31858677386117
],
[
20.307205095573273,
50.34871001857584
],
[
20.337386376974216,
50.35961873821646
],
[
20.289885598480254,
50.41914264425608
],
[
20.270955347776876,
50.45890652775549
],
[
20.193744987843115,
50.49559565005607
],
[
20.166538438530598,
50.48443958872137
],
[
20.094875399809442,
50.490363144560845
],
[
20.076310216998703,
50.50959643495282
],
[
19.987516342898644,
50.51976914250645
],
[
19.949966358605888,
50.50478250507851
],
[
19.91226093569972,
50.51141187604368
],
[
19.901223480322294,
50.53973223956716
],
[
19.841697086126246,
50.55509597669104
],
[
19.840899377370896,
50.590747949702944
],
[
19.87568049998809,
50.64701288460779
],
[
19.87302724681095,
50.68295644355654
],
[
19.810766208318938,
50.725411331623434
],
[
19.75511358985586,
50.71597279634159
],
[
19.719468617418595,
50.73304852829421
],
[
19.77050650918124,
50.777319590398584
],
[
19.78415818978573,
50.81781545883598
],
[
19.81944463651317,
50.838516226963584
],
[
19.74706000159699,
50.86597005064274
]
]
]
}
},
{
"type":"Feature",
"properties":{
"iip_przest":"PL.PZGIK.200",
"iip_identy":"c26354a4-3043-4ca9-9105-df6f0f9c1d93",
"iip_wersja":"2012-09-27T13:45:13+02:00",
"jpt_sjr_ko":"WOJ",
"jpt_kod_je":"04",
"name":"Kujawsko-pomorskie",
"jpt_nazw01":null,
"jpt_organ_":null,
"jpt_orga01":"NZN",
"jpt_jor_id":null,
"wazny_od":"2012/09/26",
"wazny_do":null,
"jpt_wazna_":"NZN",
"wersja_od":"2012/09/26",
"wersja_do":null,
"jpt_powier":1797058,
"jpt_kj_iip":"EGIB",
"jpt_kj_i01":"04",
"jpt_kj_i02":null,
"jpt_kod_01":null,
"id_bufora_":13890,
"id_bufor01":null,
"id_technic":829380,
"jpt_opis":null,
"jpt_sps_ko":"UZG",
"gra_ids":null,
"status_obi":"AKTUALNY",
"opis_bledu":null,
"typ_bledu":null
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
17.390652862344854,
53.490964272151615
],
[
17.421855851716256,
53.53582250463554
],
[
17.421983885783995,
53.584096611577145
],
[
17.51021321754431,
53.6131826921285
],
[
17.544077564741833,
53.58026633781634
],
[
17.60442540926631,
53.596894446939324
],
[
17.650741082846544,
53.5816420696411
],
[
17.73044761821377,
53.59290487095869
],
[
17.71192626531856,
53.63622114795785
],
[
17.740690640610296,
53.67797558295405
],
[
17.85171285846783,
53.687752827492474
],
[
17.89163566684904,
53.70764208247866
],
[
17.900863834703774,
53.74790586955691
],
[
17.948807502094134,
53.74749349240337
],
[
17.991242354155325,
53.72450531387406
],
[
18.031934538498188,
53.724946696708685
],
[
18.072036290758085,
53.7810750374866
],
[
18.151821579003467,
53.765760665999515
],
[
18.17056520843532,
53.74525613439093
],
[
18.256144558629885,
53.74615851327303
],
[
18.26376151528336,
53.70098323420607
],
[
18.35399874270139,
53.68740465056807
],
[
18.50810740579226,
53.699905768970496
],
[
18.550634399860606,
53.65592183524025
],
[
18.630649405427345,
53.67462675105932
],
[
18.68785461892564,
53.699140280526684
],
[
18.769907231585165,
53.675397302548916
],
[
18.74106453146634,
53.63134082488954
],
[
18.773510486638727,
53.607046261094645
],
[
18.890139748191896,
53.59949775631688
],
[
18.942045731929888,
53.58815041663031
],
[
19.096641742194297,
53.59672294716324
],
[
19.129276454104456,
53.58826060377
],
[
19.199700790410255,
53.57005936656959
],
[
19.259198406876386,
53.39648294323827
],
[
19.29122829196561,
53.3891722695362
],
[
19.380519607995847,
53.41079702385292
],
[
19.436226334502926,
53.36837736889921
],
[
19.519012897726068,
53.368790029738335
],
[
19.51972813390015,
53.330453224750556
],
[
19.587626888949817,
53.33179483648742
],
[
19.64152750117172,
53.344605971533845
],
[
19.690110264087345,
53.33629146918231
],
[
19.689267020298164,
53.308154838269196
],
[
19.721555167928344,
53.28652828958781
],
[
19.689079035639818,
53.23605885347918
],
[
19.743085180499186,
53.22789688487125
],
[
19.741653564647464,
53.1888005121934
],
[
19.761595213636024,
53.15179651302575
],
[
19.667052774484162,
53.106109630128685
],
[
19.638522071056656,
53.10662438557966
],
[
19.652178690677612,
53.03776225207655
],
[
19.683518165001097,
53.01857898704504
],
[
19.68161364892892,
52.965080319740224
],
[
19.568269117993353,
52.985689734176155
],
[
19.5825493800256,
52.95685949052531
],
[
19.528886997168836,
52.93642638725634
],
[
19.44466406538568,
52.93904270217836
],
[
19.458572661334845,
52.906744403010705
],
[
19.50873433365229,
52.86794631530604
],
[
19.423008105105595,
52.832717888760946
],
[
19.506454858935967,
52.76199665964098
],
[
19.502570000339183,
52.71497050598457
],
[
19.44688250806719,
52.705806019647184
],
[
19.402959154225154,
52.64445501078905
],
[
19.42610453071023,
52.61144648514347
],
[
19.378182399684412,
52.56857469021167
],
[
19.341114617929115,
52.56705493143625
],
[
19.36011944362534,
52.521474539349676
],
[
19.296566310922604,
52.42372837365744
],
[
19.289184234811696,
52.39271280132373
],
[
19.209168762538795,
52.35344853256108
],
[
19.04712007888713,
52.3328040996857
],
[
18.969334714115142,
52.37783780975804
],
[
18.928906898724673,
52.37807725420774
],
[
18.835591124266692,
52.34312715420254
],
[
18.814221878987947,
52.35236907055554
],
[
18.755498415802585,
52.33276968505948
],
[
18.753230809889413,
52.363420505216915
],
[
18.71195377951404,
52.400741875013445
],
[
18.681047831462717,
52.40016728975597
],
[
18.650126587782275,
52.45029067586297
],
[
18.571734633773332,
52.465011632184066
],
[
18.559837147465544,
52.48384607952878
],
[
18.497688066571918,
52.5022570459793
],
[
18.38443958617421,
52.475095319493086
],
[
18.345232466816867,
52.52174068151008
],
[
18.275541061570877,
52.49142142233127
],
[
18.22029101468759,
52.48271108722796
],
[
18.20260018175219,
52.50063698714476
],
[
18.09024878081797,
52.520517092292046
],
[
18.051709880699235,
52.547049229870396
],
[
17.901472517143684,
52.58564368385449
],
[
17.90895845518759,
52.607970863898394
],
[
17.78428040626988,
52.65140121654972
],
[
17.690807327729566,
52.60298491051324
],
[
17.677569657937095,
52.648579632263974
],
[
17.646534816189913,
52.64480434653125
],
[
17.627635428772,
52.70817998680893
],
[
17.581262499755788,
52.70457768303646
],
[
17.51675915394648,
52.67416026877303
],
[
17.467201548987468,
52.68038399616184
],
[
17.487702425550705,
52.72954116836564
],
[
17.40784712504775,
52.761804427271485
],
[
17.4159379227547,
52.78381657556846
],
[
17.49743967017799,
52.785472008214064
],
[
17.52714808328155,
52.85818140844433
],
[
17.509582552074228,
52.91776822422129
],
[
17.39462666422441,
52.982372315211336
],
[
17.316918868005054,
52.97404373318055
],
[
17.301556495137103,
52.99480315262525
],
[
17.332409908550243,
53.01900016546583
],
[
17.323949476100218,
53.078263655134066
],
[
17.357152066268544,
53.087204857258506
],
[
17.389688956585136,
53.14418228294128
],
[
17.339423972491026,
53.155482803794946
],
[
17.331934753614124,
53.217773858850244
],
[
17.408846287678152,
53.22745710845098
],
[
17.437366450575325,
53.26851251937081
],
[
17.395693957324106,
53.28818951436183
],
[
17.34069559755053,
53.34497663526148
],
[
17.26078267843565,
53.36382773574081
],
[
17.291418380668187,
53.4176832916079
],
[
17.382487827653964,
53.46859560527535
],
[
17.390652862344854,
53.490964272151615
]
]
]
}
},
{
"type":"Feature",
"properties":{
"iip_przest":"PL.PZGIK.200",
"iip_identy":"4b6c492a-eb04-441d-a92a-f44359c06de7",
"iip_wersja":"2012-09-27T13:45:13+02:00",
"jpt_sjr_ko":"WOJ",
"jpt_kod_je":"14",
"name":"Mazowieckie",
"jpt_nazw01":null,
"jpt_organ_":null,
"jpt_orga01":"NZN",
"jpt_jor_id":null,
"wazny_od":"2012/09/26",
"wazny_do":null,
"jpt_wazna_":"NZN",
"wersja_od":"2012/09/26",
"wersja_do":null,
"jpt_powier":3555920,
"jpt_kj_iip":"EGIB",
"jpt_kj_i01":"14",
"jpt_kj_i02":null,
"jpt_kod_01":null,
"id_bufora_":13890,
"id_bufor01":null,
"id_technic":829370,
"jpt_opis":null,
"jpt_sps_ko":"UZG",
"gra_ids":null,
"status_obi":"AKTUALNY",
"opis_bledu":null,
"typ_bledu":null
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
19.761595213636024,
53.15179651302575
],
[
19.84084337179516,
53.14096208127614
],
[
19.825422180758853,
53.1732771851395
],
[
19.84711629899979,
53.19226004911838
],
[
19.913421502587028,
53.21146209160345
],
[
19.90739182008345,
53.177013273026624
],
[
19.978165246799332,
53.14391455591233
],
[
20.104221985441775,
53.168116631972225
],
[
20.290248861934632,
53.13911830953456
],
[
20.370144146980937,
53.17727164216007
],
[
20.45412441845908,
53.24308832209172
],
[
20.561917486001086,
53.226486892450566
],
[
20.657212963627078,
53.25151237532883
],
[
20.69332854696406,
53.29208786646028
],
[
20.751909535015272,
53.31300793753927
],
[
20.824462276293556,
53.30438431695208
],
[
20.91435559797822,
53.348214605768746
],
[
20.991704398591164,
53.36135775972528
],
[
21.055880903696213,
53.3347568331267
],
[
21.141300865091214,
53.377324172174674
],
[
21.281466018308446,
53.42675966007397
],
[
21.339277816594997,
53.41945115986357
],
[
21.4109089292687,
53.427706603106586
],
[
21.432598736239566,
53.46283453790321
],
[
21.516259706149793,
53.47676356497618
],
[
21.612952641046178,
53.48083368984506
],
[
21.607333855078373,
53.435716373488525
],
[
21.624728203306017,
53.40780238332669
],
[
21.683962377014307,
53.36813378584049
],
[
21.692810290174023,
53.33576396204864
],
[
21.648953403799375,
53.29217047905274
],
[
21.66938411961913,
53.20828592193088
],
[
21.70678113893349,
53.16586636708088
],
[
21.694427517992263,
53.13809432886673
],
[
21.736150118992,
53.10919640114413
],
[
21.808342992796803,
53.114752881998356
],
[
21.87178006952102,
53.05895859654978
],
[
21.92264193573818,
53.046245568599204
],
[
21.876889709239652,
53.02167651707629
],
[
21.92906313464266,
52.98561278408218
],
[
22.001760327349576,
52.972328962112314
],
[
22.02784565695558,
52.93425009644741
],
[
21.991739759787944,
52.91964829036551
],
[
22.034964394451908,
52.8851382685166
],
[
22.037979110523093,
52.85082005230311
],
[
22.124193063199737,
52.84270072219046
],
[
22.2071721778731,
52.88301880615492
],
[
22.279359403859957,
52.88612998066055
],
[
22.30506452337789,
52.83934804615722
],
[
22.249175448812018,
52.83447710787571
],
[
22.303656405604134,
52.74797970534357
],
[
22.338485362807187,
52.75098778964852
],
[
22.389676821376494,
52.79545779522742
],
[
22.453771432176808,
52.78823837303778
],
[
22.435109527806738,
52.69621850905093
],
[
22.4512236344175,
52.62461982099658
],
[
22.408588821394222,
52.609689937385255
],
[
22.456743721826452,
52.58684636111039
],
[
22.527412641076207,
52.51902737976718
],
[
22.510109801043097,
52.490237458442095
],
[
22.542139518177617,
52.42304445685054
],
[
22.567788774657345,
52.402837946111056
],
[
22.666328260884278,
52.385739160482245
],
[
22.70670614040574,
52.392247895473425
],
[
22.851264034377866,
52.35878654833842
],
[
22.919726323659876,
52.37447781639697
],
[
22.957157448326637,
52.368235720886396
],
[
22.995584097585656,
52.33189257910715
],
[
23.038067570703344,
52.32924597856506
],
[
23.072510723147296,
52.281646195914014
],
[
23.128408892122103,
52.287841410778064
],
[
23.032972546415124,
52.21863195653682
],
[
23.028826808754122,
52.17410057143523
],
[
22.9330592211921,
52.1365335793382
],
[
22.90264137712327,
52.110254176688585
],
[
22.902187477332543,
52.06352558948655
],
[
22.786221878442387,
52.06815812160836
],
[
22.753857677540815,
52.0949690594431
],
[
22.698293364822856,
52.10850032520309
],
[
22.665978755093015,
52.08112045705854
],
[
22.661360570175535,
52.03659395750258
],
[
22.576225485524656,
52.037938115377216
],
[
22.48329060039558,
52.06722728382029
],
[
22.455083134775187,
52.0288147160672
],
[
22.38428077253134,
52.01630120711026
],
[
22.344880978821372,
51.996798625944706
],
[
22.29745520467103,
52.03745711627057
],
[
22.25835959233742,
52.00629937307517
],
[
22.151913128798732,
52.028354242623614
],
[
22.131281257996413,
52.00407411367659
],
[
22.029853844255552,
52.02171344829182
],
[
21.97146241977739,
51.99264330337594
],
[
21.88030520470166,
51.97102567634095
],
[
21.866380186654975,
51.94342608566083
],
[
21.91213061116794,
51.88647068125838
],
[
21.84532437108368,
51.84124284306089
],
[
21.942203432373894,
51.825967756088474
],
[
21.952888600599213,
51.795575132233424
],
[
21.835747654248127,
51.74379695714494
],
[
21.87364587120665,
51.72873529743431
],
[
21.88174870082493,
51.693632698254255
],
[
21.838724342487822,
51.65222084519097
],
[
21.713759825320587,
51.63510327501178
],
[
21.63623360873681,
51.654323494163656
],
[
21.65355197618671,
51.58576883343936
],
[
21.75299231931352,
51.56080999608571
],
[
21.81871500731787,
51.56386432332011
],
[
21.873175856827793,
51.47491344875811
],
[
21.840164586872188,
51.42034857950926
],
[
21.80136939280879,
51.42759687849407
],
[
21.789815480997714,
51.394877846171816
],
[
21.82833768959851,
51.33928809838363
],
[
21.823392959025302,
51.303332405278205
],
[
21.850630736227075,
51.27847631068235
],
[
21.80824413585271,
51.25433824592319
],
[
21.816551724812257,
51.23059275821064
],
[
21.788458793738318,
51.20152798050841
],
[
21.787005805067313,
51.14520959560328
],
[
21.80299809180555,
51.072079162915486
],
[
21.770256832094994,
51.04295619652347
],
[
21.705266527961026,
51.042688722679536
],
[
21.67624220281393,
51.0780156642517
],
[
21.590146296484264,
51.05775370334667
],
[
21.529358921643084,
51.05922702382481
],
[
21.463494360982356,
51.0131954741604
],
[
21.381750322344576,
51.04061588181869
],
[
21.355527867326344,
51.08526267921741
],
[
21.152750534906495,
51.08028604292171
],
[
21.153968354339263,
51.12547698318042
],
[
21.091224595742446,
51.15509363722038
],
[
21.116093666365902,
51.178899556444165
],
[
21.075083180537966,
51.198053315062225
],
[
21.056555829644743,
51.1571138696572
],
[
21.000829863969418,
51.15956670851637
],
[
20.920719200988067,
51.195337397936164
],
[
20.879781023510596,
51.1544240643073
],
[
20.821604873594676,
51.17845312661509
],
[
20.81301884873163,
51.145837846718955
],
[
20.71837565419428,
51.172749874417995
],
[
20.700285561885163,
51.195996390695015
],
[
20.579044254788,
51.244685416148045
],
[
20.546118660597486,
51.23039597999946
],
[
20.492627439438614,
51.30729569301196
],
[
20.507182358825858,
51.331391300885024
],
[
20.432815027597815,
51.339405038122045
],
[
20.422026741670592,
51.363123492110965
],
[
20.446702299793333,
51.40995127907731
],
[
20.48039475841968,
51.40972776396432
],
[
20.496671689028883,
51.448436789496725
],
[
20.526385780542224,
51.46841008480911
],
[
20.519944048769315,
51.509785824821016
],
[
20.455538192596165,
51.50217627745818
],
[
20.467661087918398,
51.56091013389356
],
[
20.44140191718736,
51.57146742524473
],
[
20.397488398665523,
51.67051081597102
],
[
20.51446822791615,
51.685539298885814
],
[
20.535157876114486,
51.668738406505376
],
[
20.620521507394166,
51.657565843398906
],
[
20.653196181653424,
51.677142205750094
],
[
20.658430364315755,
51.72385845929581
],
[
20.5825574232648,
51.74799882882306
],
[
20.578898366310614,
51.793605462230325
],
[
20.607749631726968,
51.81607081996888
],
[
20.569321879236597,
51.8877537660633
],
[
20.513660416411145,
51.89291909068757
],
[
20.475501279927173,
51.93106145781341
],
[
20.439445595648646,
51.94352001731359
],
[
20.353738931212263,
51.91965995862173
],
[
20.240687562125586,
51.95101206544305
],
[
20.271510858824904,
51.97125428698198
],
[
20.255104830249778,
51.99561869381883
],
[
20.19875894639985,
52.02556984362821
],
[
20.269874047043825,
52.077141878551856
],
[
20.252768606605613,
52.11675270344519
],
[
20.202407236544605,
52.114651520542765
],
[
20.153109500637044,
52.150627996905406
],
[
20.0908866692471,
52.1526521765771
],
[
20.06206619251559,
52.188114627422145
],
[
20.080495674752047,
52.23304896642217
],
[
19.98628027419968,
52.26237525082838
],
[
19.885728587403786,
52.309796423115415
],
[
19.847552078426087,
52.272150121310986
],
[
19.816049652706845,
52.28387360230799
],
[
19.735736466130238,
52.258851389306486
],
[
19.69914277517947,
52.278685863926945
],
[
19.63453071858278,
52.25618661444265
],
[
19.616032913413186,
52.28818677056807
],
[
19.54864064900291,
52.29414174255259
],
[
19.46322790705057,
52.34265031063649
],
[
19.357813568227286,
52.341691989416795
],
[
19.322244875739287,
52.348440680588105
],
[
19.289184234811696,
52.39271280132373
],
[
19.296566310922604,
52.42372837365744
],
[
19.36011944362534,
52.521474539349676
],
[
19.341114617929115,
52.56705493143625
],
[
19.378182399684412,
52.56857469021167
],
[
19.42610453071023,
52.61144648514347
],
[
19.402959154225154,
52.64445501078905
],
[
19.44688250806719,
52.705806019647184
],
[
19.502570000339183,
52.71497050598457
],
[
19.506454858935967,
52.76199665964098
],
[
19.423008105105595,
52.832717888760946
],
[
19.50873433365229,
52.86794631530604
],
[
19.458572661334845,
52.906744403010705
],
[
19.44466406538568,
52.93904270217836
],
[
19.528886997168836,
52.93642638725634
],
[
19.5825493800256,
52.95685949052531
],
[
19.568269117993353,
52.985689734176155
],
[
19.68161364892892,
52.965080319740224
],
[
19.683518165001097,
53.01857898704504
],
[
19.652178690677612,
53.03776225207655
],
[
19.638522071056656,
53.10662438557966
],
[
19.667052774484162,
53.106109630128685
],
[
19.761595213636024,
53.15179651302575
]
]
]
}
},
{
"type":"Feature",
"properties":{
"iip_przest":"PL.PZGIK.200",
"iip_identy":"ece93e09-0215-42f3-8067-be0649f58d46",
"iip_wersja":"2012-09-27T13:45:13+02:00",
"jpt_sjr_ko":"WOJ",
"jpt_kod_je":"22",
"name":"Pomorskie",
"jpt_nazw01":null,
"jpt_organ_":null,
"jpt_orga01":"NZN",
"jpt_jor_id":null,
"wazny_od":"2012/09/26",
"wazny_do":null,
"jpt_wazna_":"NZN",
"wersja_od":"2012/09/26",
"wersja_do":null,
"jpt_powier":1831001,
"jpt_kj_iip":"EGIB",
"jpt_kj_i01":"22",
"jpt_kj_i02":null,
"jpt_kod_01":null,
"id_bufora_":13890,
"id_bufor01":null,
"id_technic":829375,
"jpt_opis":null,
"jpt_sps_ko":"UZG",
"gra_ids":null,
"status_obi":"AKTUALNY",
"opis_bledu":null,
"typ_bledu":null
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
16.699086546128285,
54.56924724851482
],
[
16.747992714593735,
54.56834589199082
],
[
16.89120354892508,
54.59200349043694
],
[
16.95210501826344,
54.61261101239403
],
[
17.050791690751677,
54.669721722908534
],
[
17.24335270972184,
54.72993084306046
],
[
17.386517581370537,
54.75258203597122
],
[
17.445158912213753,
54.754806898368344
],
[
17.660721022278434,
54.78210752952957
],
[
17.756115286491298,
54.80163354615116
],
[
17.96770523441105,
54.83086372413344
],
[
18.081614988297844,
54.83404932183374
],
[
18.33652714921007,
54.83254966877658
],
[
18.423325285552007,
54.78867245427634
],
[
18.393777380585828,
54.72955819572378
],
[
18.472907597726557,
54.694009419749655
],
[
18.464381608919204,
54.65719347390704
],
[
18.511920564967067,
54.61389394253594
],
[
18.560013483188172,
54.54942781003223
],
[
18.580374909691503,
54.437707398188294
],
[
18.661290725329245,
54.41294353279832
],
[
18.72721570724337,
54.376302185483944
],
[
18.855956654529667,
54.351288099750725
],
[
18.98951885317058,
54.345142326901296
],
[
19.18025748215606,
54.351047874909824
],
[
19.354027974662497,
54.37018416676039
],
[
19.49323142132262,
54.400963175611935
],
[
19.648735517758116,
54.45326669266994
],
[
19.63570528414336,
54.392243259171444
],
[
19.414998266344288,
54.32012090321237
],
[
19.29083248367961,
54.299166743673716
],
[
19.25343244461411,
54.27027652297284
],
[
19.317291743220817,
54.22593533148798
],
[
19.32142785499137,
54.1921638656773
],
[
19.247002305270772,
54.167158235300164
],
[
19.22328531056091,
54.12026522855566
],
[
19.22537046703284,
54.077092472794476
],
[
19.292954205370254,
54.02476170556242
],
[
19.36020078858591,
54.004522429364954
],
[
19.377739220889403,
53.984959299515175
],
[
19.3737697257188,
53.93540276054836
],
[
19.41681565167725,
53.9262845729925
],
[
19.458675501781418,
53.942054253832914
],
[
19.555297483726726,
53.94801305827183
],
[
19.582074605581646,
53.93957777262355
],
[
19.518582411706326,
53.84663909870379
],
[
19.45624567624495,
53.79695070237569
],
[
19.370529961415993,
53.81419952624357
],
[
19.323466358468856,
53.81407365247589
],
[
19.302144845022315,
53.75355494884947
],
[
19.21294559733061,
53.691425146843116
],
[
19.21506640844768,
53.64918015861943
],
[
19.130361859917322,
53.60827838277655
],
[
19.129276454104456,
53.58826060377
],
[
19.096641742194297,
53.59672294716324
],
[
18.942045731929888,
53.58815041663031
],
[
18.890139748191896,
53.59949775631688
],
[
18.773510486638727,
53.607046261094645
],
[
18.74106453146634,
53.63134082488954
],
[
18.769907231585165,
53.675397302548916
],
[
18.68785461892564,
53.699140280526684
],
[
18.630649405427345,
53.67462675105932
],
[
18.550634399860606,
53.65592183524025
],
[
18.50810740579226,
53.699905768970496
],
[
18.35399874270139,
53.68740465056807
],
[
18.26376151528336,
53.70098323420607
],
[
18.256144558629885,
53.74615851327303
],
[
18.17056520843532,
53.74525613439093
],
[
18.151821579003467,
53.765760665999515
],
[
18.072036290758085,
53.7810750374866
],
[
18.031934538498188,
53.724946696708685
],
[
17.991242354155325,
53.72450531387406
],
[
17.948807502094134,
53.74749349240337
],
[
17.900863834703774,
53.74790586955691
],
[
17.89163566684904,
53.70764208247866
],
[
17.85171285846783,
53.687752827492474
],
[
17.740690640610296,
53.67797558295405
],
[
17.71192626531856,
53.63622114795785
],
[
17.73044761821377,
53.59290487095869
],
[
17.650741082846544,
53.5816420696411
],
[
17.60442540926631,
53.596894446939324
],
[
17.544077564741833,
53.58026633781634
],
[
17.51021321754431,
53.6131826921285
],
[
17.421983885783995,
53.584096611577145
],
[
17.421855851716256,
53.53582250463554
],
[
17.390652862344854,
53.490964272151615
],
[
17.350777847876408,
53.49348058323586
],
[
17.268487160775603,
53.537268237708936
],
[
17.14936229969421,
53.52939642899146
],
[
17.08978187060093,
53.54272695207935
],
[
17.031152348540694,
53.51578348287924
],
[
17.001388861311522,
53.54976310281274
],
[
16.949938179451948,
53.556715310411555
],
[
16.89338279024085,
53.62848761322721
],
[
16.892247638195624,
53.65586893298559
],
[
16.8773075098936,
53.71908475016931
],
[
16.857653462136277,
53.74709517954286
],
[
16.93065727958256,
53.77723559071284
],
[
16.908633980332453,
53.8212420118532
],
[
16.86845593319516,
53.83406708354858
],
[
16.872331039715014,
53.86838956978259
],
[
16.976462528303248,
53.87962943428266
],
[
16.964709327574173,
53.904647497153135
],
[
16.87546844829783,
53.94457419850452
],
[
16.87459370247489,
53.97702695371108
],
[
16.80410543003752,
53.99362466945927
],
[
16.793500709606977,
54.100890732300634
],
[
16.80460947156855,
54.116072915002405
],
[
16.774059169413402,
54.154765343274576
],
[
16.732254467511687,
54.177450036048015
],
[
16.712988214348822,
54.21255000463753
],
[
16.768496767515337,
54.239265238804606
],
[
16.8651165194657,
54.260984907024685
],
[
16.854327816423467,
54.307587804565564
],
[
16.813893253756333,
54.31849105796457
],
[
16.8215051221016,
54.368330385260734
],
[
16.858620543264102,
54.382576619030424
],
[
16.82439097278962,
54.41571629981213
],
[
16.841119809487793,
54.43842673085741
],
[
16.7933149025783,
54.487438909170564
],
[
16.764022682386532,
54.48614140297973
],
[
16.748142013541127,
54.527565548406
],
[
16.699086546128285,
54.56924724851482
]
]
]
}
},
{
"type":"Feature",
"properties":{
"iip_przest":"PL.PZGIK.200",
"iip_identy":"98a63fe6-1e56-4d05-9c47-ab4233f8a6ff",
"iip_wersja":"2012-09-27T13:45:13+02:00",
"jpt_sjr_ko":"WOJ",
"jpt_kod_je":"24",
"name":"Śląskie",
"jpt_nazw01":null,
"jpt_organ_":null,
"jpt_orga01":"NZN",
"jpt_jor_id":null,
"wazny_od":"2012/09/26",
"wazny_do":null,
"jpt_wazna_":"NZN",
"wersja_od":"2012/09/26",
"wersja_do":null,
"jpt_powier":1233406,
"jpt_kj_iip":"EGIB",
"jpt_kj_i01":"24",
"jpt_kj_i02":null,
"jpt_kod_01":null,
"id_bufora_":13890,
"id_bufor01":null,
"id_technic":829376,
"jpt_opis":null,
"jpt_sps_ko":"UZG",
"gra_ids":null,
"status_obi":"AKTUALNY",
"opis_bledu":null,
"typ_bledu":null
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
18.67295452571556,
51.056902644469446
],
[
18.863008310009327,
51.072693431717425
],
[
18.919167501366797,
51.0982210390907
],
[
19.01163104600219,
51.06650588279944
],
[
19.01786537525523,
51.051368851589416
],
[
19.1044851073103,
51.02620745537112
],
[
19.12356065095023,
50.999598599949984
],
[
19.20647146753885,
50.98552425862681
],
[
19.240733230193907,
50.99039406139164
],
[
19.243152463345172,
51.02357910415985
],
[
19.322687354982072,
51.04619057738948
],
[
19.329245638346897,
51.01315026817231
],
[
19.389252928215416,
51.00124847783233
],
[
19.46334945440818,
50.925867817159606
],
[
19.4711159088534,
50.88588454667536
],
[
19.586714101705716,
50.905284680323845
],
[
19.61393505703718,
50.87730982455517
],
[
19.66156907363423,
50.87438228253183
],
[
19.682926782080187,
50.84521884052972
],
[
19.72790039941087,
50.84327739892976
],
[
19.74706000159699,
50.86597005064274
],
[
19.81944463651317,
50.838516226963584
],
[
19.78415818978573,
50.81781545883598
],
[
19.77050650918124,
50.777319590398584
],
[
19.719468617418595,
50.73304852829421
],
[
19.75511358985586,
50.71597279634159
],
[
19.810766208318938,
50.725411331623434
],
[
19.87302724681095,
50.68295644355654
],
[
19.87568049998809,
50.64701288460779
],
[
19.840899377370896,
50.590747949702944
],
[
19.841697086126246,
50.55509597669104
],
[
19.901223480322294,
50.53973223956716
],
[
19.91226093569972,
50.51141187604368
],
[
19.949966358605888,
50.50478250507851
],
[
19.900556152526487,
50.47351968988189
],
[
19.89673682197794,
50.45222961157733
],
[
19.815381505161465,
50.434551819677
],
[
19.7018576587057,
50.44815981439333
],
[
19.667044537214483,
50.41599036763781
],
[
19.616197703161586,
50.405853584565875
],
[
19.518594996519198,
50.41673729210228
],
[
19.487556550540184,
50.39697913958546
],
[
19.483775982680907,
50.32398171936592
],
[
19.427615133955847,
50.32879749494875
],
[
19.386881319803287,
50.278460477603204
],
[
19.34012882747801,
50.249619486727234
],
[
19.428721085635587,
50.22553774866469
],
[
19.351756446287133,
50.1770213102261
],
[
19.33164083772019,
50.14415200803443
],
[
19.270483258218775,
50.14353546607265
],
[
19.21248488209435,
50.07464550961887
],
[
19.16902894018642,
50.06042790940158
],
[
19.119022808493575,
50.00924476212598
],
[
19.118843899121718,
49.93885090774339
],
[
19.18458333666369,
49.94989376099563
],
[
19.202613007196327,
49.871577302546946
],
[
19.2892349080316,
49.85050633516504
],
[
19.28657047061664,
49.81641303039527
],
[
19.31678436299687,
49.77788683108733
],
[
19.420183671348717,
49.77216977389296
],
[
19.444647059417747,
49.734926309787426
],
[
19.37918513872906,
49.69475833164478
],
[
19.391771971845465,
49.67732839920393
],
[
19.45943533958438,
49.67643342727828
],
[
19.48076485512253,
49.624382419146414
],
[
19.467376160766097,
49.61376272094308
],
[
19.371363925071964,
49.56744282097793
],
[
19.362357248703955,
49.5360727505128
],
[
19.28151537018167,
49.535318778810804
],
[
19.233652184709726,
49.51086243623673
],
[
19.219009728133468,
49.44861442188245
],
[
19.1772805402338,
49.41399558725069
],
[
19.107285207724026,
49.40368689104147
],
[
19.053912673083666,
49.4151629095476
],
[
19.026998361463985,
49.39397771714283
],
[
18.971181502733906,
49.402065659793706
],
[
18.988311094205972,
49.43183254287223
],
[
18.96078328698473,
49.454705577672115
],
[
18.97164620634094,
49.50433778252208
],
[
18.941662860919653,
49.51890133468056
],
[
18.853412842475656,
49.51696442115516
],
[
18.80458927253504,
49.67887885035066
],
[
18.719188941914407,
49.68380728994469
],
[
18.70653968630759,
49.70444961330211
],
[
18.636196607130668,
49.714967525871586
],
[
18.629212791148763,
49.74709383750326
],
[
18.569430019822732,
49.83439803332237
],
[
18.603878256788693,
49.85711480592865
],
[
18.531716050275435,
49.89947229651155
],
[
18.48513313560043,
49.906349200611515
],
[
18.430752092074773,
49.93816130741916
],
[
18.355385830974527,
49.94418353075057
],
[
18.321653084514907,
49.91588804979256
],
[
18.279207492411068,
49.94006460018851
],
[
18.278001045580044,
49.96347844303676
],
[
18.220635277519246,
49.9688663539075
],
[
18.20657321176947,
49.997936557193874
],
[
18.116974989337574,
49.99415445659283
],
[
18.103151690400477,
50.022605728257474
],
[
18.035035847595477,
50.06576696087841
],
[
18.05676784364762,
50.086657028673656
],
[
18.064085049042905,
50.16781543514858
],
[
18.236303509760702,
50.20026559932266
],
[
18.25592717815611,
50.222977405845704
],
[
18.312999037048954,
50.240666022669984
],
[
18.405857976253227,
50.254722126016155
],
[
18.426964632828252,
50.26870800436507
],
[
18.39199149903034,
50.313960733446294
],
[
18.393884973377922,
50.33845681337899
],
[
18.357744622086066,
50.35656882369406
],
[
18.393659592817198,
50.391445951066174
],
[
18.38375083938951,
50.48356422172867
],
[
18.440042917284377,
50.480726963568706
],
[
18.438194286887118,
50.546584027512246
],
[
18.477855250177903,
50.5527134628184
],
[
18.559226484482746,
50.54027868672592
],
[
18.605377338464162,
50.552739017045084
],
[
18.58725071490944,
50.61382269625973
],
[
18.51746767425466,
50.62545932094216
],
[
18.483883023372673,
50.70826271075591
],
[
18.548302626178288,
50.7320238418873
],
[
18.550028273849,
50.75957576717138
],
[
18.521887402486076,
50.80235998101841
],
[
18.557971946991593,
50.83408397414733
],
[
18.616261894001372,
50.85352326046045
],
[
18.654950394009695,
50.916578927741405
],
[
18.612385640622353,
50.95513802735585
],
[
18.663624059215724,
50.97056812836747
],
[
18.65617894602217,
51.005012560354196
],
[
18.695486740206427,
51.015775479589756
],
[
18.67295452571556,
51.056902644469446
]
]
]
}
},
{
"type":"Feature",
"properties":{
"iip_przest":"PL.PZGIK.200",
"iip_identy":"45e7cfc6-6d8b-42ff-acbd-ef1d0a53dacb",
"iip_wersja":"2012-09-27T13:45:13+02:00",
"jpt_sjr_ko":"WOJ",
"jpt_kod_je":"28",
"name":"Warmińsko-mazurskie",
"jpt_nazw01":null,
"jpt_organ_":null,
"jpt_orga01":"NZN",
"jpt_jor_id":null,
"wazny_od":"2012/09/26",
"wazny_do":null,
"jpt_wazna_":"NZN",
"wersja_od":"2012/09/26",
"wersja_do":null,
"jpt_powier":2417419,
"jpt_kj_iip":"EGIB",
"jpt_kj_i01":"28",
"jpt_kj_i02":null,
"jpt_kod_01":null,
"id_bufora_":13890,
"id_bufor01":null,
"id_technic":829377,
"jpt_opis":null,
"jpt_sps_ko":"UZG",
"gra_ids":null,
"status_obi":"AKTUALNY",
"opis_bledu":null,
"typ_bledu":null
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
19.648735517758116,
54.45326669266994
],
[
20.007390497383163,
54.42473672331803
],
[
20.332020998855455,
54.40114876454037
],
[
20.62239013588797,
54.37100793860377
],
[
20.689403505474438,
54.37226090609093
],
[
20.81843535494253,
54.36001148746016
],
[
21.006689816612994,
54.35362412511952
],
[
21.274392624779136,
54.328386366484324
],
[
21.37946697228571,
54.33105204448775
],
[
21.495829542065312,
54.32397322222416
],
[
22.26007627589158,
54.34057927876856
],
[
22.42178672189129,
54.348456232228315
],
[
22.641551625943514,
54.3537714251695
],
[
22.792003081037816,
54.36332354794785
],
[
22.80614482422685,
54.34961613933352
],
[
22.78399552467203,
54.30582906021215
],
[
22.694454494740217,
54.27544867704858
],
[
22.644692378051317,
54.287845740465045
],
[
22.61069695582045,
54.25992307658024
],
[
22.53207914523389,
54.24912018631061
],
[
22.483672997223966,
54.199626405231825
],
[
22.547126730473554,
54.13772755578406
],
[
22.58082533211756,
54.14199986399317
],
[
22.63609988012663,
54.10790038543278
],
[
22.60384036023118,
54.081939863004926
],
[
22.60082515214201,
54.051935662700366
],
[
22.67067797929539,
54.028855422503355
],
[
22.69653088720838,
53.97351458172907
],
[
22.782805862649205,
53.91548959148306
],
[
22.779018131657875,
53.865600071665554
],
[
22.726712315239144,
53.83317414058709
],
[
22.726727686833197,
53.80352567725378
],
[
22.696801553539924,
53.76158878767559
],
[
22.626493577364055,
53.74184954219484
],
[
22.51408788120242,
53.69912181001638
],
[
22.47250969402359,
53.698967825606026
],
[
22.29790345629527,
53.624415599764966
],
[
22.194327250793982,
53.566226322428754
],
[
22.095774997141856,
53.53226682892332
],
[
21.93394797253595,
53.51115013419077
],
[
21.89763540503379,
53.473903070690234
],
[
21.858454730139712,
53.45891618533195
],
[
21.790610389937818,
53.4792693630505
],
[
21.68673478794273,
53.49275667888297
],
[
21.612952641046178,
53.48083368984506
],
[
21.516259706149793,
53.47676356497618
],
[
21.432598736239566,
53.46283453790321
],
[
21.4109089292687,
53.427706603106586
],
[
21.339277816594997,
53.41945115986357
],
[
21.281466018308446,
53.42675966007397
],
[
21.141300865091214,
53.377324172174674
],
[
21.055880903696213,
53.3347568331267
],
[
20.991704398591164,
53.36135775972528
],
[
20.91435559797822,
53.348214605768746
],
[
20.824462276293556,
53.30438431695208
],
[
20.751909535015272,
53.31300793753927
],
[
20.69332854696406,
53.29208786646028
],
[
20.657212963627078,
53.25151237532883
],
[
20.561917486001086,
53.226486892450566
],
[
20.45412441845908,
53.24308832209172
],
[
20.370144146980937,
53.17727164216007
],
[
20.290248861934632,
53.13911830953456
],
[
20.104221985441775,
53.168116631972225
],
[
19.978165246799332,
53.14391455591233
],
[
19.90739182008345,
53.177013273026624
],
[
19.913421502587028,
53.21146209160345
],
[
19.84711629899979,
53.19226004911838
],
[
19.825422180758853,
53.1732771851395
],
[
19.84084337179516,
53.14096208127614
],
[
19.761595213636024,
53.15179651302575
],
[
19.741653564647464,
53.1888005121934
],
[
19.743085180499186,
53.22789688487125
],
[
19.689079035639818,
53.23605885347918
],
[
19.721555167928344,
53.28652828958781
],
[
19.689267020298164,
53.308154838269196
],
[
19.690110264087345,
53.33629146918231
],
[
19.64152750117172,
53.344605971533845
],
[
19.587626888949817,
53.33179483648742
],
[
19.51972813390015,
53.330453224750556
],
[
19.519012897726068,
53.368790029738335
],
[
19.436226334502926,
53.36837736889921
],
[
19.380519607995847,
53.41079702385292
],
[
19.29122829196561,
53.3891722695362
],
[
19.259198406876386,
53.39648294323827
],
[
19.199700790410255,
53.57005936656959
],
[
19.129276454104456,
53.58826060377
],
[
19.130361859917322,
53.60827838277655
],
[
19.21506640844768,
53.64918015861943
],
[
19.21294559733061,
53.691425146843116
],
[
19.302144845022315,
53.75355494884947
],
[
19.323466358468856,
53.81407365247589
],
[
19.370529961415993,
53.81419952624357
],
[
19.45624567624495,
53.79695070237569
],
[
19.518582411706326,
53.84663909870379
],
[
19.582074605581646,
53.93957777262355
],
[
19.555297483726726,
53.94801305827183
],
[
19.458675501781418,
53.942054253832914
],
[
19.41681565167725,
53.9262845729925
],
[
19.3737697257188,
53.93540276054836
],
[
19.377739220889403,
53.984959299515175
],
[
19.36020078858591,
54.004522429364954
],
[
19.292954205370254,
54.02476170556242
],
[
19.22537046703284,
54.077092472794476
],
[
19.22328531056091,
54.12026522855566
],
[
19.247002305270772,
54.167158235300164
],
[
19.32142785499137,
54.1921638656773
],
[
19.317291743220817,
54.22593533148798
],
[
19.25343244461411,
54.27027652297284
],
[
19.29083248367961,
54.299166743673716
],
[
19.414998266344288,
54.32012090321237
],
[
19.63570528414336,
54.392243259171444
],
[
19.648735517758116,
54.45326669266994
]
]
]
}
},
{
"type":"Feature",
"properties":{
"iip_przest":"PL.PZGIK.200",
"iip_identy":"c3f2202a-b491-49c5-a3af-d581108d939a",
"iip_wersja":"2012-09-27T13:45:13+02:00",
"jpt_sjr_ko":"WOJ",
"jpt_kod_je":"32",
"name":"Zachodniopomorskie",
"jpt_nazw01":null,
"jpt_organ_":null,
"jpt_orga01":"NZN",
"jpt_jor_id":null,
"wazny_od":"2012/09/26",
"wazny_do":null,
"jpt_wazna_":"NZN",
"wersja_od":"2012/09/26",
"wersja_do":null,
"jpt_powier":2289315,
"jpt_kj_iip":"EGIB",
"jpt_kj_i01":"32",
"jpt_kj_i02":null,
"jpt_kod_01":null,
"id_bufora_":13890,
"id_bufor01":null,
"id_technic":829378,
"jpt_opis":null,
"jpt_sps_ko":"UZG",
"gra_ids":null,
"status_obi":"AKTUALNY",
"opis_bledu":null,
"typ_bledu":null
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
16.699086546128285,
54.56924724851482
],
[
16.748142013541127,
54.527565548406
],
[
16.764022682386532,
54.48614140297973
],
[
16.7933149025783,
54.487438909170564
],
[
16.841119809487793,
54.43842673085741
],
[
16.82439097278962,
54.41571629981213
],
[
16.858620543264102,
54.382576619030424
],
[
16.8215051221016,
54.368330385260734
],
[
16.813893253756333,
54.31849105796457
],
[
16.854327816423467,
54.307587804565564
],
[
16.8651165194657,
54.260984907024685
],
[
16.768496767515337,
54.239265238804606
],
[
16.712988214348822,
54.21255000463753
],
[
16.732254467511687,
54.177450036048015
],
[
16.774059169413402,
54.154765343274576
],
[
16.80460947156855,
54.116072915002405
],
[
16.793500709606977,
54.100890732300634
],
[
16.80410543003752,
53.99362466945927
],
[
16.87459370247489,
53.97702695371108
],
[
16.87546844829783,
53.94457419850452
],
[
16.964709327574173,
53.904647497153135
],
[
16.976462528303248,
53.87962943428266
],
[
16.872331039715014,
53.86838956978259
],
[
16.86845593319516,
53.83406708354858
],
[
16.908633980332453,
53.8212420118532
],
[
16.93065727958256,
53.77723559071284
],
[
16.857653462136277,
53.74709517954286
],
[
16.8773075098936,
53.71908475016931
],
[
16.892247638195624,
53.65586893298559
],
[
16.841712569680215,
53.6261421253286
],
[
16.760306871607796,
53.617541075676456
],
[
16.72765802559339,
53.56718293209609
],
[
16.720584704608243,
53.52616106619704
],
[
16.64173534448257,
53.484173085139844
],
[
16.584422277253996,
53.48370686062916
],
[
16.436241137019895,
53.46055826552926
],
[
16.474465583736233,
53.38967146113153
],
[
16.59397764510744,
53.34503518816459
],
[
16.623861331997134,
53.34627549029415
],
[
16.714467010012974,
53.29913246251616
],
[
16.650349139158163,
53.27682492915356
],
[
16.62066585903626,
53.233596674943264
],
[
16.558576662082466,
53.229043460858904
],
[
16.5010909646607,
53.172661544391225
],
[
16.455200743351703,
53.16438112926927
],
[
16.346007330112787,
53.1123669190183
],
[
16.36430326979011,
53.0819803447257
],
[
16.31692696837291,
53.03670255616419
],
[
16.270911887561137,
53.049158449854296
],
[
16.186144328315546,
53.03356689742975
],
[
16.13757808794075,
53.013672133881634
],
[
16.08352723667236,
53.01448658158658
],
[
16.02309433166689,
53.03562103197466
],
[
15.962497603490991,
53.0413812022576
],
[
15.994250920158917,
53.073135839582726
],
[
15.979278910985988,
53.11031084350459
],
[
15.912880400763775,
53.119970702736964
],
[
15.848180014076254,
53.11523671308306
],
[
15.811453021280824,
53.08440635564707
],
[
15.767428333713239,
53.02035148832242
],
[
15.769138764048511,
52.99953165675406
],
[
15.719094547785213,
52.98862030330311
],
[
15.68168743530395,
52.99726973982845
],
[
15.633356695908482,
52.97640117394425
],
[
15.573413531385341,
52.986634424008116
],
[
15.55519790751867,
53.01132945295247
],
[
15.44383880921205,
52.98991911660206
],
[
15.350676684094124,
52.94309040608962
],
[
15.282975894936097,
52.94615029012622
],
[
15.332634556969314,
52.898967219446334
],
[
15.071762343511196,
52.8305814795718
],
[
15.038996133104087,
52.86100733660022
],
[
14.904187031107023,
52.883909745891316
],
[
14.851033803978563,
52.828132161536956
],
[
14.865274504576846,
52.79201307526508
],
[
14.813742891892433,
52.773443193636396
],
[
14.791587059674717,
52.69713117440627
],
[
14.722009601903242,
52.632568452456084
],
[
14.672595143261152,
52.63732734331734
],
[
14.638342335406511,
52.65928966419574
],
[
14.564034075888502,
52.62468932701087
],
[
14.471145876434775,
52.65781798585713
],
[
14.352472069842142,
52.75069603738736
],
[
14.28043700676288,
52.77374008031914
],
[
14.210525946932236,
52.818801935160785
],
[
14.14470410433981,
52.82364493141546
],
[
14.123679040400765,
52.845355925387565
],
[
14.158778924758483,
52.87731405465516
],
[
14.14365788585882,
52.96136905472034
],
[
14.23559892124545,
52.99319203647982
],
[
14.337983116060943,
53.04657699182659
],
[
14.366139982239227,
53.07937104699475
],
[
14.387275081902002,
53.142392007251
],
[
14.366257947197576,
53.17198804701891
],
[
14.377267912407211,
53.20175197728006
],
[
14.4495950750195,
53.259455023165216
],
[
14.421204012540194,
53.276136014697386
],
[
14.41544600843892,
53.324372021625074
],
[
14.373329025129097,
53.408946013641305
],
[
14.371274083857767,
53.45644002157195
],
[
14.326934895784538,
53.50382002951182
],
[
14.302605063247873,
53.553402985872395
],
[
14.316944949110027,
53.61806301023749
],
[
14.28389803534467,
53.6344460207526
],
[
14.283696036473753,
53.682584011685194
],
[
14.266823164162298,
53.69869481319411
],
[
14.283608232404939,
53.772290492552024
],
[
14.21235503789573,
53.86744505791647
],
[
14.207639873296126,
53.91587195399544
],
[
14.226719214955125,
53.928827362879524
],
[
14.33372903165196,
53.91166236234407
],
[
14.383382838479314,
53.914345541950574
],
[
14.454037032073861,
53.93602275617043
],
[
14.500361967178627,
53.96383453370825
],
[
14.672272969638719,
54.00410173652574
],
[
14.727735801914253,
54.02285397228468
],
[
14.904858505794664,
54.05619946961012
],
[
15.286024211712173,
54.14705176971764
],
[
15.429404754168827,
54.165423760129144
],
[
15.485060924750846,
54.16632056659864
],
[
15.756516276537651,
54.217523493019414
],
[
15.87599770944059,
54.24427942027001
],
[
16.03033514643894,
54.25864408529226
],
[
16.102422475778845,
54.27442858206488
],
[
16.20468412939423,
54.31521985139758
],
[
16.269007794230514,
54.353489523344614
],
[
16.394619258242717,
54.4476921834341
],
[
16.43152813500092,
54.48699888138402
],
[
16.529881848908367,
54.54068544900065
],
[
16.61450867234949,
54.559783358089966
],
[
16.699086546128285,
54.56924724851482
]
]
]
}
},
{
"type":"Feature",
"properties":{
"iip_przest":"PL.PZGIK.200",
"iip_identy":"f1ef3856-09ba-4e3d-af9d-a876794d570f",
"iip_wersja":"2012-09-27T13:45:13+02:00",
"jpt_sjr_ko":"WOJ",
"jpt_kod_je":"02",
"name":"Dolnośląskie",
"jpt_nazw01":null,
"jpt_organ_":null,
"jpt_orga01":"NZN",
"jpt_jor_id":null,
"wazny_od":"2012/09/26",
"wazny_do":null,
"jpt_wazna_":"NZN",
"wersja_od":"2012/09/26",
"wersja_do":null,
"jpt_powier":1994777,
"jpt_kj_iip":"EGIB",
"jpt_kj_i01":"02",
"jpt_kj_i02":null,
"jpt_kod_01":null,
"id_bufora_":13890,
"id_bufor01":null,
"id_technic":829379,
"jpt_opis":null,
"jpt_sps_ko":"UZG",
"gra_ids":null,
"status_obi":"AKTUALNY",
"opis_bledu":null,
"typ_bledu":null
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
14.974182997864354,
51.36395002077206
],
[
15.017928947781217,
51.39346232465876
],
[
15.071155434436792,
51.39698447525025
],
[
15.085085106549675,
51.42523415158397
],
[
15.15055824397765,
51.442431501360055
],
[
15.26786621906863,
51.44141011437111
],
[
15.324932549354862,
51.41849599220852
],
[
15.33941142455838,
51.47409003658725
],
[
15.382388379635376,
51.51243799845663
],
[
15.487663549930845,
51.5275635492349
],
[
15.595943500194105,
51.46955059074522
],
[
15.645053772997416,
51.47883478937712
],
[
15.713005814174933,
51.54276869458949
],
[
15.769496842481411,
51.569564016866636
],
[
15.82386102260358,
51.57378040034234
],
[
15.81597235584975,
51.602130305139376
],
[
15.834258902688754,
51.672189342996916
],
[
15.871823608051544,
51.72073601759027
],
[
15.976578181891142,
51.74811911311639
],
[
15.965965716905693,
51.79146145507346
],
[
15.994822618647355,
51.804753650980544
],
[
16.034020154532577,
51.78504176197224
],
[
16.133182885186272,
51.75905490988344
],
[
16.17792431731427,
51.76384610766955
],
[
16.1600306312309,
51.711711811456325
],
[
16.217539074687345,
51.714644250262886
],
[
16.26305010210998,
51.67491349042331
],
[
16.355948092832616,
51.716026751385144
],
[
16.383261168270103,
51.77044009317117
],
[
16.416190836204056,
51.78486530783671
],
[
16.545291060409976,
51.78007256637075
],
[
16.580626794127046,
51.752113688656294
],
[
16.63296028685099,
51.74796864217349
],
[
16.682301313410527,
51.70791263795638
],
[
16.63915426274842,
51.666029731165544
],
[
16.681405223874723,
51.64694562368837
],
[
16.769115038121253,
51.64465355165885
],
[
16.772047071317264,
51.61360265317169
],
[
16.820412632022258,
51.57685852425657
],
[
16.887265106015597,
51.58101672282579
],
[
16.927889742246265,
51.552424323340915
],
[
17.00705441642352,
51.54934329627864
],
[
17.108519439577453,
51.57606625517473
],
[
17.12549892799713,
51.565317639804036
],
[
17.214655692798722,
51.57386027601817
],
[
17.215474377443563,
51.629558649724174
],
[
17.260752884437498,
51.643334184181136
],
[
17.330107238639542,
51.647915047272186
],
[
17.49865184875231,
51.6159327389448
],
[
17.556247659968665,
51.584316761624805
],
[
17.576285868615667,
51.539581811025975
],
[
17.513980390331398,
51.50154821170034
],
[
17.520668160099206,
51.46231868488145
],
[
17.570642706774393,
51.405114796376594
],
[
17.61289743203964,
51.42299340230039
],
[
17.668515024684538,
51.41602769852101
],
[
17.719994604453927,
51.38614500899288
],
[
17.710601851342044,
51.35867027531791
],
[
17.743648158295272,
51.34650223832701
],
[
17.766485287938814,
51.300740662443744
],
[
17.742917292515266,
51.25457227891122
],
[
17.756652528665022,
51.21632604337415
],
[
17.795269170029325,
51.19414635045381
],
[
17.669263770898013,
51.16084985511054
],
[
17.620611129115858,
51.1754265154735
],
[
17.544746952074323,
51.15448819519587
],
[
17.57638120583247,
51.12942171367187
],
[
17.55820775375236,
51.06783133154749
],
[
17.514284005039947,
51.011631274462964
],
[
17.501550061832738,
50.97558712122558
],
[
17.431397188067333,
50.96708560810079
],
[
17.43246391924841,
50.91620021260115
],
[
17.381949330923877,
50.92461480009296
],
[
17.38428957994368,
50.86206515721766
],
[
17.32820140622842,
50.85059541108286
],
[
17.344746459390716,
50.78446197644004
],
[
17.284895886812144,
50.79233695680414
],
[
17.256219658034336,
50.7745934500127
],
[
17.297584121111083,
50.75333506083754
],
[
17.252117871746808,
50.71772705878238
],
[
17.22078749791372,
50.713703019930776
],
[
17.238903047463246,
50.661223159852675
],
[
17.235968005954298,
50.61322175580027
],
[
17.121868384128366,
50.607501295917324
],
[
17.114918316288772,
50.58744850777853
],
[
17.06130981617724,
50.53694810841806
],
[
17.061958936101973,
50.47561683945006
],
[
16.97599687197548,
50.47561098695219
],
[
16.907901328333583,
50.44944916367598
],
[
16.860516822826096,
50.41121199144128
],
[
16.908242524996137,
50.39106485321195
],
[
16.940718159490785,
50.319788925934304
],
[
17.00093865330871,
50.30303274065669
],
[
17.01992906164417,
50.278559048055435
],
[
17.001552697307858,
50.25639659352133
],
[
17.0283143435969,
50.229990188787035
],
[
16.99889464167367,
50.21585763410081
],
[
16.89799631266558,
50.22202356979744
],
[
16.809905422502105,
50.18934017382589
],
[
16.78334782279783,
50.14559810979388
],
[
16.744839722713234,
50.13453959181225
],
[
16.706028365287285,
50.09658286029909
],
[
16.64126939631041,
50.11217175122348
],
[
16.560633051605464,
50.16465617307181
],
[
16.548310799977827,
50.22976163211242
],
[
16.516803186800413,
50.24347303944544
],
[
16.430419783525867,
50.32507312883516
],
[
16.39926171352939,
50.31918938384175
],
[
16.361161935833582,
50.35363879534088
],
[
16.36076585232782,
50.37946824843438
],
[
16.267743977329634,
50.37939124966369
],
[
16.220917650579835,
50.40698399151219
],
[
16.198833834149255,
50.44178495893773
],
[
16.360354815468085,
50.50122507889447
],
[
16.40178075116907,
50.52988715379532
],
[
16.418823388527233,
50.56865608240894
],
[
16.444907521772524,
50.57956958039509
],
[
16.343080996799333,
50.66150829331405
],
[
16.23481351404816,
50.67156931768817
],
[
16.220525786565766,
50.63648486420075
],
[
16.187970800840596,
50.62731079045002
],
[
16.148380494205373,
50.6533365310345
],
[
16.103679813080504,
50.663361557765114
],
[
16.02922888312816,
50.603799331369785
],
[
15.988610132069741,
50.68486430263579
],
[
15.96716722987329,
50.69172284752793
],
[
15.863327860627699,
50.68014821163265
],
[
15.816195287553748,
50.755320156437286
],
[
15.779220711373679,
50.74227250171905
],
[
15.705708160579912,
50.73725729292627
],
[
15.683922242091008,
50.7526133974039
],
[
15.578753738061963,
50.77896816874519
],
[
15.524311151043207,
50.77700109951945
],
[
15.438767202154056,
50.80906087643133
],
[
15.392139783323394,
50.77586661113875
],
[
15.358106105531776,
50.847272258911055
],
[
15.309805705225799,
50.86143957770969
],
[
15.27706402105959,
50.891021408296055
],
[
15.267850806619686,
50.93249798309225
],
[
15.292042448239396,
50.95354081196531
],
[
15.236557585239852,
50.99866863583479
],
[
15.175498867501878,
50.98867134932712
],
[
15.171850511633291,
51.02002961087818
],
[
15.105169183136425,
50.99151213382348
],
[
15.077397462153879,
51.01355860550484
],
[
15.016475206031965,
51.02181104833878
],
[
14.968245198400215,
50.99001298591605
],
[
15.017289282770328,
50.9668012942165
],
[
14.989454479858738,
50.92164063309004
],
[
15.001928537041442,
50.86877790208258
],
[
14.962850082976757,
50.86208179391657
],
[
14.819555954614538,
50.88506325013003
],
[
14.896556121089377,
50.94064573398544
],
[
14.904036087537213,
50.96749293450756
],
[
14.99674444194354,
51.12100385000267
],
[
14.993113774991054,
51.16243294130687
],
[
15.03785087060038,
51.243990638887496
],
[
15.032892078978344,
51.29437037686722
],
[
14.977777104644273,
51.34170222856182
],
[
14.974182997864354,
51.36395002077206
]
]
]
}
},
{
"type":"Feature",
"properties":{
"iip_przest":"PL.PZGIK.200",
"iip_identy":"c606b01a-76c8-480d-9470-f24ca0d7a613",
"iip_wersja":"2013-07-09T11:04:17+02:00",
"jpt_sjr_ko":"WOJ",
"jpt_kod_je":"30",
"name":"Wielkopolskie",
"jpt_nazw01":null,
"jpt_organ_":null,
"jpt_orga01":"NZN",
"jpt_jor_id":null,
"wazny_od":"2012/09/26",
"wazny_do":null,
"jpt_wazna_":"NZN",
"wersja_od":"2013/07/09",
"wersja_do":null,
"jpt_powier":2982774,
"jpt_kj_iip":"EGIB",
"jpt_kj_i01":"30",
"jpt_kj_i02":null,
"jpt_kod_01":null,
"id_bufora_":null,
"id_bufor01":14890,
"id_technic":829372,
"jpt_opis":null,
"jpt_sps_ko":"UZG",
"gra_ids":null,
"status_obi":"AKTUALNY",
"opis_bledu":null,
"typ_bledu":null
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
15.962497603490991,
53.0413812022576
],
[
16.02309433166689,
53.03562103197466
],
[
16.08352723667236,
53.01448658158658
],
[
16.13757808794075,
53.013672133881634
],
[
16.186144328315546,
53.03356689742975
],
[
16.270911887561137,
53.049158449854296
],
[
16.31692696837291,
53.03670255616419
],
[
16.36430326979011,
53.0819803447257
],
[
16.346007330112787,
53.1123669190183
],
[
16.455200743351703,
53.16438112926927
],
[
16.5010909646607,
53.172661544391225
],
[
16.558576662082466,
53.229043460858904
],
[
16.62066585903626,
53.233596674943264
],
[
16.650349139158163,
53.27682492915356
],
[
16.714467010012974,
53.29913246251616
],
[
16.623861331997134,
53.34627549029415
],
[
16.59397764510744,
53.34503518816459
],
[
16.474465583736233,
53.38967146113153
],
[
16.436241137019895,
53.46055826552926
],
[
16.584422277253996,
53.48370686062916
],
[
16.64173534448257,
53.484173085139844
],
[
16.720584704608243,
53.52616106619704
],
[
16.72765802559339,
53.56718293209609
],
[
16.760306871607796,
53.617541075676456
],
[
16.841712569680215,
53.6261421253286
],
[
16.892247638195624,
53.65586893298559
],
[
16.89338279024085,
53.62848761322721
],
[
16.949938179451948,
53.556715310411555
],
[
17.001388861311522,
53.54976310281274
],
[
17.031152348540694,
53.51578348287924
],
[
17.08978187060093,
53.54272695207935
],
[
17.14936229969421,
53.52939642899146
],
[
17.268487160775603,
53.537268237708936
],
[
17.350777847876408,
53.49348058323586
],
[
17.390652862344854,
53.490964272151615
],
[
17.382487827653964,
53.46859560527535
],
[
17.291418380668187,
53.4176832916079
],
[
17.26078267843565,
53.36382773574081
],
[
17.34069559755053,
53.34497663526148
],
[
17.395693957324106,
53.28818951436183
],
[
17.437366450575325,
53.26851251937081
],
[
17.408846287678152,
53.22745710845098
],
[
17.331934753614124,
53.217773858850244
],
[
17.339423972491026,
53.155482803794946
],
[
17.389688956585136,
53.14418228294128
],
[
17.357152066268544,
53.087204857258506
],
[
17.323949476100218,
53.078263655134066
],
[
17.332409908550243,
53.01900016546583
],
[
17.301556495137103,
52.99480315262525
],
[
17.316918868005054,
52.97404373318055
],
[
17.39462666422441,
52.982372315211336
],
[
17.509582552074228,
52.91776822422129
],
[
17.52714808328155,
52.85818140844433
],
[
17.49743967017799,
52.785472008214064
],
[
17.4159379227547,
52.78381657556846
],
[
17.40784712504775,
52.761804427271485
],
[
17.487702425550705,
52.72954116836564
],
[
17.467201548987468,
52.68038399616184
],
[
17.51675915394648,
52.67416026877303
],
[
17.581262499755788,
52.70457768303646
],
[
17.627635428772,
52.70817998680893
],
[
17.646534816189913,
52.64480434653125
],
[
17.677569657937095,
52.648579632263974
],
[
17.690807327729566,
52.60298491051324
],
[
17.78428040626988,
52.65140121654972
],
[
17.90895845518759,
52.607970863898394
],
[
17.901472517143684,
52.58564368385449
],
[
18.051709880699235,
52.547049229870396
],
[
18.09024878081797,
52.520517092292046
],
[
18.20260018175219,
52.50063698714476
],
[
18.22029101468759,
52.48271108722796
],
[
18.275541061570877,
52.49142142233127
],
[
18.345232466816867,
52.52174068151008
],
[
18.38443958617421,
52.475095319493086
],
[
18.497688066571918,
52.5022570459793
],
[
18.559837147465544,
52.48384607952878
],
[
18.571734633773332,
52.465011632184066
],
[
18.650126587782275,
52.45029067586297
],
[
18.681047831462717,
52.40016728975597
],
[
18.71195377951404,
52.400741875013445
],
[
18.753230809889413,
52.363420505216915
],
[
18.755498415802585,
52.33276968505948
],
[
18.814221878987947,
52.35236907055554
],
[
18.835591124266692,
52.34312715420254
],
[
18.928906898724673,
52.37807725420774
],
[
18.969334714115142,
52.37783780975804
],
[
19.04712007888713,
52.3328040996857
],
[
19.050210440163383,
52.27339099898043
],
[
19.09478864728206,
52.270619711436034
],
[
19.089767182890956,
52.20671111720978
],
[
19.020187501275103,
52.21536106013852
],
[
18.93058174644479,
52.199221944215
],
[
18.911127720701746,
52.1327370368665
],
[
18.949771554973935,
52.11940927534708
],
[
18.92508729083601,
52.07925871139624
],
[
18.851708837304542,
52.08524663785246
],
[
18.8278087286911,
52.0641882847277
],
[
18.72379732521421,
52.06483141237433
],
[
18.716516408450616,
52.03243164486983
],
[
18.734182102250152,
52.002479083718335
],
[
18.729842842923212,
51.95468121321189
],
[
18.767948075553207,
51.92784433835547
],
[
18.685665417529215,
51.821002923437405
],
[
18.59485968603394,
51.8480502292872
],
[
18.517270976575325,
51.83511003875629
],
[
18.484481427767925,
51.85001899546856
],
[
18.43932337382992,
51.825530068825366
],
[
18.44427353234086,
51.79849484201378
],
[
18.408193748817695,
51.726598208082976
],
[
18.41222238712613,
51.70063555563961
],
[
18.364164591070995,
51.68167366970235
],
[
18.380863210986483,
51.65233447284433
],
[
18.36061745785799,
51.531430677196234
],
[
18.382797531581268,
51.477333665012
],
[
18.326309578764658,
51.419817053062914
],
[
18.227893788142534,
51.451946044829675
],
[
18.206980068862137,
51.40193939416828
],
[
18.149169435542433,
51.39140143347773
],
[
18.135075323348243,
51.36079850789371
],
[
18.098885956518952,
51.36205777824684
],
[
18.09246709518663,
51.325690289708
],
[
18.126392325370347,
51.26892174656053
],
[
18.153304696780488,
51.2640483826134
],
[
18.180160250709022,
51.22343321007181
],
[
18.16368129242641,
51.17251722640668
],
[
18.078160477282267,
51.166181389409516
],
[
18.03935287607827,
51.131035738702494
],
[
17.88523798044923,
51.10379342588591
],
[
17.819128156240115,
51.12224839665036
],
[
17.85118377019355,
51.17243909542018
],
[
17.795269170029325,
51.19414635045381
],
[
17.756652528665022,
51.21632604337415
],
[
17.742917292515266,
51.25457227891122
],
[
17.766485287938814,
51.300740662443744
],
[
17.743648158295272,
51.34650223832701
],
[
17.710601851342044,
51.35867027531791
],
[
17.719994604453927,
51.38614500899288
],
[
17.668515024684538,
51.41602769852101
],
[
17.61289743203964,
51.42299340230039
],
[
17.570642706774393,
51.405114796376594
],
[
17.520668160099206,
51.46231868488145
],
[
17.513980390331398,
51.50154821170034
],
[
17.576285868615667,
51.539581811025975
],
[
17.556247659968665,
51.584316761624805
],
[
17.49865184875231,
51.6159327389448
],
[
17.330107238639542,
51.647915047272186
],
[
17.260752884437498,
51.643334184181136
],
[
17.215474377443563,
51.629558649724174
],
[
17.214655692798722,
51.57386027601817
],
[
17.12549892799713,
51.565317639804036
],
[
17.108519439577453,
51.57606625517473
],
[
17.00705441642352,
51.54934329627864
],
[
16.927889742246265,
51.552424323340915
],
[
16.887265106015597,
51.58101672282579
],
[
16.820412632022258,
51.57685852425657
],
[
16.772047071317264,
51.61360265317169
],
[
16.769115038121253,
51.64465355165885
],
[
16.681405223874723,
51.64694562368837
],
[
16.63915426274842,
51.666029731165544
],
[
16.682301313410527,
51.70791263795638
],
[
16.63296028685099,
51.74796864217349
],
[
16.580626794127046,
51.752113688656294
],
[
16.545291060409976,
51.78007256637075
],
[
16.416190836204056,
51.78486530783671
],
[
16.40054178522916,
51.83782865023197
],
[
16.28101450136905,
51.900220480842876
],
[
16.24813067296442,
51.90073851922451
],
[
16.21473979492341,
51.869765828866555
],
[
16.10926539981316,
51.904524436488074
],
[
16.138162083278843,
51.92547154002375
],
[
16.12121332757591,
51.99188286899824
],
[
16.060644686368487,
51.97715823471838
],
[
16.01002568538456,
51.98148949716827
],
[
15.969187845076616,
52.00261486193746
],
[
15.99299170492287,
52.03517041875527
],
[
15.988385418626395,
52.0672356320051
],
[
15.9244475175169,
52.06747558167766
],
[
15.833296062657942,
52.1111230439293
],
[
15.874976660808706,
52.13047175134505
],
[
15.858416558841089,
52.16901405449179
],
[
15.852401218816098,
52.26211372851318
],
[
15.889719650029134,
52.30755431679375
],
[
15.881281087328995,
52.35215275090603
],
[
15.89746800798899,
52.3936571126397
],
[
15.84357179237755,
52.402903201322204
],
[
15.856432036994105,
52.43260010176372
],
[
15.895558849025802,
52.44664791756651
],
[
15.88574005903476,
52.48962692702698
],
[
15.834775840423072,
52.52925109755201
],
[
15.8323645520087,
52.56618291007193
],
[
15.776346219890776,
52.637869705064055
],
[
15.813961737286101,
52.66778905434492
],
[
15.795318478686422,
52.708519120304295
],
[
15.907881803683026,
52.715153170152526
],
[
15.9449269465604,
52.72916815283317
],
[
15.934562780906052,
52.801440168553306
],
[
15.893221432355924,
52.81277179088095
],
[
15.96785989904373,
52.85376310972348
],
[
15.978932773883376,
52.936879306959796
],
[
15.952009317174195,
52.971936441775355
],
[
15.962497603490991,
53.0413812022576
]
]
]
}
},
{
"type":"Feature",
"properties":{
"iip_przest":"PL.PZGIK.200",
"iip_identy":"7d7e4145-814d-4159-8d85-e91946e444c5",
"iip_wersja":"2012-09-27T13:45:13+02:00",
"jpt_sjr_ko":"WOJ",
"jpt_kod_je":"10",
"name":"Łódzkie",
"jpt_nazw01":null,
"jpt_organ_":null,
"jpt_orga01":"NZN",
"jpt_jor_id":null,
"wazny_od":"2012/09/26",
"wazny_do":null,
"jpt_wazna_":"NZN",
"wersja_od":"2012/09/26",
"wersja_do":null,
"jpt_powier":1821720,
"jpt_kj_iip":"EGIB",
"jpt_kj_i01":"10",
"jpt_kj_i02":null,
"jpt_kod_01":null,
"id_bufora_":13890,
"id_bufor01":null,
"id_technic":829367,
"jpt_opis":null,
"jpt_sps_ko":"UZG",
"gra_ids":null,
"status_obi":"AKTUALNY",
"opis_bledu":null,
"typ_bledu":null
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
19.04712007888713,
52.3328040996857
],
[
19.209168762538795,
52.35344853256108
],
[
19.289184234811696,
52.39271280132373
],
[
19.322244875739287,
52.348440680588105
],
[
19.357813568227286,
52.341691989416795
],
[
19.46322790705057,
52.34265031063649
],
[
19.54864064900291,
52.29414174255259
],
[
19.616032913413186,
52.28818677056807
],
[
19.63453071858278,
52.25618661444265
],
[
19.69914277517947,
52.278685863926945
],
[
19.735736466130238,
52.258851389306486
],
[
19.816049652706845,
52.28387360230799
],
[
19.847552078426087,
52.272150121310986
],
[
19.885728587403786,
52.309796423115415
],
[
19.98628027419968,
52.26237525082838
],
[
20.080495674752047,
52.23304896642217
],
[
20.06206619251559,
52.188114627422145
],
[
20.0908866692471,
52.1526521765771
],
[
20.153109500637044,
52.150627996905406
],
[
20.202407236544605,
52.114651520542765
],
[
20.252768606605613,
52.11675270344519
],
[
20.269874047043825,
52.077141878551856
],
[
20.19875894639985,
52.02556984362821
],
[
20.255104830249778,
51.99561869381883
],
[
20.271510858824904,
51.97125428698198
],
[
20.240687562125586,
51.95101206544305
],
[
20.353738931212263,
51.91965995862173
],
[
20.439445595648646,
51.94352001731359
],
[
20.475501279927173,
51.93106145781341
],
[
20.513660416411145,
51.89291909068757
],
[
20.569321879236597,
51.8877537660633
],
[
20.607749631726968,
51.81607081996888
],
[
20.578898366310614,
51.793605462230325
],
[
20.5825574232648,
51.74799882882306
],
[
20.658430364315755,
51.72385845929581
],
[
20.653196181653424,
51.677142205750094
],
[
20.620521507394166,
51.657565843398906
],
[
20.535157876114486,
51.668738406505376
],
[
20.51446822791615,
51.685539298885814
],
[
20.397488398665523,
51.67051081597102
],
[
20.44140191718736,
51.57146742524473
],
[
20.467661087918398,
51.56091013389356
],
[
20.455538192596165,
51.50217627745818
],
[
20.519944048769315,
51.509785824821016
],
[
20.526385780542224,
51.46841008480911
],
[
20.496671689028883,
51.448436789496725
],
[
20.48039475841968,
51.40972776396432
],
[
20.446702299793333,
51.40995127907731
],
[
20.422026741670592,
51.363123492110965
],
[
20.432815027597815,
51.339405038122045
],
[
20.36494001433742,
51.30804484015017
],
[
20.390423075165693,
51.27220488484829
],
[
20.379727811343038,
51.24596851888436
],
[
20.33444389989641,
51.254712378525895
],
[
20.27799432696305,
51.244273782179725
],
[
20.251609574670557,
51.20675984392822
],
[
20.11932268998559,
51.18928814758736
],
[
20.025816303281395,
51.20042135197882
],
[
20.025765266512632,
51.164670045832516
],
[
19.988281530188587,
51.1395387802448
],
[
19.981769272419907,
51.07311773904222
],
[
20.04540035359603,
51.068555532451704
],
[
20.05094663914241,
51.026266386537856
],
[
20.0176556414379,
50.962280535451164
],
[
19.955819010273824,
50.99214677877666
],
[
19.93693224337243,
51.0246234479671
],
[
19.86404492292821,
51.03018828060648
],
[
19.86354388442105,
51.004842758561715
],
[
19.829412057333798,
50.96757319527443
],
[
19.84877013287523,
50.93569659767875
],
[
19.79690811780605,
50.90835299222461
],
[
19.74706000159699,
50.86597005064274
],
[
19.72790039941087,
50.84327739892976
],
[
19.682926782080187,
50.84521884052972
],
[
19.66156907363423,
50.87438228253183
],
[
19.61393505703718,
50.87730982455517
],
[
19.586714101705716,
50.905284680323845
],
[
19.4711159088534,
50.88588454667536
],
[
19.46334945440818,
50.925867817159606
],
[
19.389252928215416,
51.00124847783233
],
[
19.329245638346897,
51.01315026817231
],
[
19.322687354982072,
51.04619057738948
],
[
19.243152463345172,
51.02357910415985
],
[
19.240733230193907,
50.99039406139164
],
[
19.20647146753885,
50.98552425862681
],
[
19.12356065095023,
50.999598599949984
],
[
19.1044851073103,
51.02620745537112
],
[
19.01786537525523,
51.051368851589416
],
[
19.01163104600219,
51.06650588279944
],
[
18.919167501366797,
51.0982210390907
],
[
18.863008310009327,
51.072693431717425
],
[
18.67295452571556,
51.056902644469446
],
[
18.577613706396704,
51.08203253523916
],
[
18.55337355525586,
51.13902059014836
],
[
18.515473099672146,
51.132736816738415
],
[
18.51541357841401,
51.10423113995403
],
[
18.469745972804223,
51.104370931696884
],
[
18.367293913066337,
51.13748573650154
],
[
18.30524291858177,
51.135340822741824
],
[
18.264971728282056,
51.1559648251781
],
[
18.184789595638694,
51.157979496648615
],
[
18.16368129242641,
51.17251722640668
],
[
18.180160250709022,
51.22343321007181
],
[
18.153304696780488,
51.2640483826134
],
[
18.126392325370347,
51.26892174656053
],
[
18.09246709518663,
51.325690289708
],
[
18.098885956518952,
51.36205777824684
],
[
18.135075323348243,
51.36079850789371
],
[
18.149169435542433,
51.39140143347773
],
[
18.206980068862137,
51.40193939416828
],
[
18.227893788142534,
51.451946044829675
],
[
18.326309578764658,
51.419817053062914
],
[
18.382797531581268,
51.477333665012
],
[
18.36061745785799,
51.531430677196234
],
[
18.380863210986483,
51.65233447284433
],
[
18.364164591070995,
51.68167366970235
],
[
18.41222238712613,
51.70063555563961
],
[
18.408193748817695,
51.726598208082976
],
[
18.44427353234086,
51.79849484201378
],
[
18.43932337382992,
51.825530068825366
],
[
18.484481427767925,
51.85001899546856
],
[
18.517270976575325,
51.83511003875629
],
[
18.59485968603394,
51.8480502292872
],
[
18.685665417529215,
51.821002923437405
],
[
18.767948075553207,
51.92784433835547
],
[
18.729842842923212,
51.95468121321189
],
[
18.734182102250152,
52.002479083718335
],
[
18.716516408450616,
52.03243164486983
],
[
18.72379732521421,
52.06483141237433
],
[
18.8278087286911,
52.0641882847277
],
[
18.851708837304542,
52.08524663785246
],
[
18.92508729083601,
52.07925871139624
],
[
18.949771554973935,
52.11940927534708
],
[
18.911127720701746,
52.1327370368665
],
[
18.93058174644479,
52.199221944215
],
[
19.020187501275103,
52.21536106013852
],
[
19.089767182890956,
52.20671111720978
],
[
19.09478864728206,
52.270619711436034
],
[
19.050210440163383,
52.27339099898043
],
[
19.04712007888713,
52.3328040996857
]
]
]
}
},
{
"type":"Feature",
"properties":{
"iip_przest":"PL.PZGIK.200",
"iip_identy":"53ad7aea-d9d3-40c9-9a5c-ff737d5b076e",
"iip_wersja":"2012-09-27T13:45:13+02:00",
"jpt_sjr_ko":"WOJ",
"jpt_kod_je":"20",
"name":"Podlaskie",
"jpt_nazw01":null,
"jpt_organ_":null,
"jpt_orga01":"NZN",
"jpt_jor_id":null,
"wazny_od":"2012/09/26",
"wazny_do":null,
"jpt_wazna_":"NZN",
"wersja_od":"2012/09/26",
"wersja_do":null,
"jpt_powier":2018598,
"jpt_kj_iip":"EGIB",
"jpt_kj_i01":"20",
"jpt_kj_i02":null,
"jpt_kod_01":null,
"id_bufora_":13890,
"id_bufor01":null,
"id_technic":829373,
"jpt_opis":null,
"jpt_sps_ko":"UZG",
"gra_ids":null,
"status_obi":"AKTUALNY",
"opis_bledu":null,
"typ_bledu":null
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
21.612952641046178,
53.48083368984506
],
[
21.68673478794273,
53.49275667888297
],
[
21.790610389937818,
53.4792693630505
],
[
21.858454730139712,
53.45891618533195
],
[
21.89763540503379,
53.473903070690234
],
[
21.93394797253595,
53.51115013419077
],
[
22.095774997141856,
53.53226682892332
],
[
22.194327250793982,
53.566226322428754
],
[
22.29790345629527,
53.624415599764966
],
[
22.47250969402359,
53.698967825606026
],
[
22.51408788120242,
53.69912181001638
],
[
22.626493577364055,
53.74184954219484
],
[
22.696801553539924,
53.76158878767559
],
[
22.726727686833197,
53.80352567725378
],
[
22.726712315239144,
53.83317414058709
],
[
22.779018131657875,
53.865600071665554
],
[
22.782805862649205,
53.91548959148306
],
[
22.69653088720838,
53.97351458172907
],
[
22.67067797929539,
54.028855422503355
],
[
22.60082515214201,
54.051935662700366
],
[
22.60384036023118,
54.081939863004926
],
[
22.63609988012663,
54.10790038543278
],
[
22.58082533211756,
54.14199986399317
],
[
22.547126730473554,
54.13772755578406
],
[
22.483672997223966,
54.199626405231825
],
[
22.53207914523389,
54.24912018631061
],
[
22.61069695582045,
54.25992307658024
],
[
22.644692378051317,
54.287845740465045
],
[
22.694454494740217,
54.27544867704858
],
[
22.78399552467203,
54.30582906021215
],
[
22.80614482422685,
54.34961613933352
],
[
22.792003081037816,
54.36332354794785
],
[
22.836302287696768,
54.40648096788579
],
[
22.98384634260281,
54.38957414197688
],
[
22.993913507727463,
54.36189844482105
],
[
23.047700072957753,
54.34918764687997
],
[
23.042121628726992,
54.31597442720309
],
[
23.092169652641928,
54.29845368093834
],
[
23.202421256517223,
54.288625848771915
],
[
23.233887354112518,
54.26091127837291
],
[
23.337518904778786,
54.251723696340235
],
[
23.380494005992677,
54.229118983999676
],
[
23.424477837104618,
54.17752912921286
],
[
23.485846929216525,
54.153226784444044
],
[
23.492616377830117,
54.11700709176218
],
[
23.52860138263868,
54.06578011943616
],
[
23.52487834782538,
54.031079995749195
],
[
23.481874951676737,
53.99983073420252
],
[
23.515380367751174,
53.96017025468692
],
[
23.524064056724054,
53.86258803928275
],
[
23.548189000717404,
53.85614105465739
],
[
23.54904996555342,
53.76777998796525
],
[
23.582129057552596,
53.74381999832115
],
[
23.585317933282656,
53.7056800822389
],
[
23.626918006285962,
53.59575002381899
],
[
23.707410034416725,
53.43654598672306
],
[
23.81875007920512,
53.244024073660576
],
[
23.855344993013734,
53.2318269276862
],
[
23.862742959330873,
53.1971390281523
],
[
23.91515409500793,
53.16228201879462
],
[
23.872687999967543,
53.08049907552319
],
[
23.925376913543914,
53.024629012280066
],
[
23.93110995069266,
52.97623202173896
],
[
23.916466888758357,
52.938842988834175
],
[
23.92460708228329,
52.830676106033096
],
[
23.939565083428747,
52.813189971879964
],
[
23.938640055767912,
52.712915952035495
],
[
23.765294989484286,
52.61769504474901
],
[
23.641410947830735,
52.607455913610295
],
[
23.540168990207487,
52.58024310104279
],
[
23.466628065391927,
52.54944802877129
],
[
23.356690956592246,
52.46894599851158
],
[
23.215578891100073,
52.329655050102
],
[
23.178338050709915,
52.283140990603066
],
[
23.128408892122103,
52.287841410778064
],
[
23.072510723147296,
52.281646195914014
],
[
23.038067570703344,
52.32924597856506
],
[
22.995584097585656,
52.33189257910715
],
[
22.957157448326637,
52.368235720886396
],
[
22.919726323659876,
52.37447781639697
],
[
22.851264034377866,
52.35878654833842
],
[
22.70670614040574,
52.392247895473425
],
[
22.666328260884278,
52.385739160482245
],
[
22.567788774657345,
52.402837946111056
],
[
22.542139518177617,
52.42304445685054
],
[
22.510109801043097,
52.490237458442095
],
[
22.527412641076207,
52.51902737976718
],
[
22.456743721826452,
52.58684636111039
],
[
22.408588821394222,
52.609689937385255
],
[
22.4512236344175,
52.62461982099658
],
[
22.435109527806738,
52.69621850905093
],
[
22.453771432176808,
52.78823837303778
],
[
22.389676821376494,
52.79545779522742
],
[
22.338485362807187,
52.75098778964852
],
[
22.303656405604134,
52.74797970534357
],
[
22.249175448812018,
52.83447710787571
],
[
22.30506452337789,
52.83934804615722
],
[
22.279359403859957,
52.88612998066055
],
[
22.2071721778731,
52.88301880615492
],
[
22.124193063199737,
52.84270072219046
],
[
22.037979110523093,
52.85082005230311
],
[
22.034964394451908,
52.8851382685166
],
[
21.991739759787944,
52.91964829036551
],
[
22.02784565695558,
52.93425009644741
],
[
22.001760327349576,
52.972328962112314
],
[
21.92906313464266,
52.98561278408218
],
[
21.876889709239652,
53.02167651707629
],
[
21.92264193573818,
53.046245568599204
],
[
21.87178006952102,
53.05895859654978
],
[
21.808342992796803,
53.114752881998356
],
[
21.736150118992,
53.10919640114413
],
[
21.694427517992263,
53.13809432886673
],
[
21.70678113893349,
53.16586636708088
],
[
21.66938411961913,
53.20828592193088
],
[
21.648953403799375,
53.29217047905274
],
[
21.692810290174023,
53.33576396204864
],
[
21.683962377014307,
53.36813378584049
],
[
21.624728203306017,
53.40780238332669
],
[
21.607333855078373,
53.435716373488525
],
[
21.612952641046178,
53.48083368984506
]
]
]
}
},
{
"type":"Feature",
"properties":{
"iip_przest":"PL.PZGIK.200",
"iip_identy":"dd2e3c64-f861-47cf-a3a3-e7751f272b2f",
"iip_wersja":"2012-09-27T13:45:12+02:00",
"jpt_sjr_ko":"WOJ",
"jpt_kod_je":"12",
"name":"Małopolskie",
"jpt_nazw01":null,
"jpt_organ_":null,
"jpt_orga01":"NZN",
"jpt_jor_id":null,
"wazny_od":"2012/09/26",
"wazny_do":null,
"jpt_wazna_":"NZN",
"wersja_od":"2012/09/26",
"wersja_do":null,
"jpt_powier":1518007,
"jpt_kj_iip":"EGIB",
"jpt_kj_i01":"12",
"jpt_kj_i02":null,
"jpt_kod_01":null,
"id_bufora_":13890,
"id_bufor01":null,
"id_technic":829366,
"jpt_opis":null,
"jpt_sps_ko":"UZG",
"gra_ids":null,
"status_obi":"AKTUALNY",
"opis_bledu":null,
"typ_bledu":null
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
19.949966358605888,
50.50478250507851
],
[
19.987516342898644,
50.51976914250645
],
[
20.076310216998703,
50.50959643495282
],
[
20.094875399809442,
50.490363144560845
],
[
20.166538438530598,
50.48443958872137
],
[
20.193744987843115,
50.49559565005607
],
[
20.270955347776876,
50.45890652775549
],
[
20.289885598480254,
50.41914264425608
],
[
20.337386376974216,
50.35961873821646
],
[
20.307205095573273,
50.34871001857584
],
[
20.32792935893666,
50.31858677386117
],
[
20.333415621749616,
50.26741752967693
],
[
20.367591019229074,
50.248692390629515
],
[
20.38472445164987,
50.207573284021954
],
[
20.41552016634817,
50.19123753963469
],
[
20.47735576932242,
50.19932981837819
],
[
20.51288172988419,
50.186030478648625
],
[
20.55717878943117,
50.20164711857588
],
[
20.68153871710715,
50.20587583787802
],
[
20.72868881600187,
50.23046646733012
],
[
20.727997981605853,
50.25027084873532
],
[
20.80577666436834,
50.2895029354827
],
[
20.946697882908534,
50.313564391454875
],
[
21.0617037692017,
50.31703305801876
],
[
21.086849774214183,
50.33791753661319
],
[
21.14908884984025,
50.353397825498114
],
[
21.208831568560285,
50.35489777348392
],
[
21.22181290766214,
50.31029309697919
],
[
21.183822368411928,
50.297990434602475
],
[
21.14211164858215,
50.237679344948546
],
[
21.170807232684634,
50.20872663274252
],
[
21.152393228914022,
50.147641435560104
],
[
21.180965811658584,
50.117836522015665
],
[
21.160077019596628,
50.08949054361749
],
[
21.177089482335326,
50.07144035331987
],
[
21.151483841876033,
50.04530909085071
],
[
21.192906464871122,
50.029258856329335
],
[
21.154440205990703,
50.00340515569993
],
[
21.15043879805842,
49.976484377915725
],
[
21.17970707075854,
49.92833075275624
],
[
21.284719853100555,
49.92406462686123
],
[
21.279409101127403,
49.89189566686638
],
[
21.225358255589253,
49.88378578851876
],
[
21.22469715974474,
49.853264445080875
],
[
21.282709134386334,
49.8457057381487
],
[
21.348922470845245,
49.814678595151456
],
[
21.308398768510276,
49.79613889730189
],
[
21.28059064800917,
49.80584195085838
],
[
21.24177209005152,
49.77610448780641
],
[
21.2578182231377,
49.752134891087174
],
[
21.310222245187237,
49.748759035327
],
[
21.346797303221262,
49.69004260087208
],
[
21.34172872192366,
49.65931807575911
],
[
21.3626733818687,
49.633606903848126
],
[
21.326661560324556,
49.59365485685391
],
[
21.3753201232391,
49.56294153976481
],
[
21.3932098144726,
49.51127958325923
],
[
21.42092883401164,
49.4919912273751
],
[
21.39213384973455,
49.455795213675714
],
[
21.39865798295024,
49.433841574907056
],
[
21.27752292770425,
49.46093907569989
],
[
21.192127867184947,
49.400992450095984
],
[
21.124021762594687,
49.43657964142045
],
[
21.05647136225715,
49.42167886146034
],
[
21.05457729345366,
49.40405154638429
],
[
21.10410389856937,
49.376401288222944
],
[
21.0438960779011,
49.3653603518471
],
[
20.996696768002533,
49.332897124097585
],
[
20.994138533766048,
49.31267948744364
],
[
20.92563486246563,
49.29605262708688
],
[
20.86554950797237,
49.3474839629272
],
[
20.825903702500185,
49.334404074603185
],
[
20.80024272768373,
49.36300093790732
],
[
20.748658437617514,
49.38918673202948
],
[
20.7229212538612,
49.419655267097184
],
[
20.659707287708958,
49.40348833411801
],
[
20.611272583791724,
49.412453279207796
],
[
20.5739728713187,
49.376391922375454
],
[
20.464208132120362,
49.4159719738635
],
[
20.408059423101644,
49.393168069868565
],
[
20.32950670836605,
49.39107655244869
],
[
20.3195564355566,
49.34696881755204
],
[
20.24201280367125,
49.35052421223991
],
[
20.195229586185953,
49.34226865238613
],
[
20.146528400209547,
49.31823661183953
],
[
20.102424267836373,
49.253124633027845
],
[
20.101623999074864,
49.222661085077696
],
[
20.075501386435377,
49.17876601135175
],
[
20.020528874170218,
49.201506818287925
],
[
20.008626699417608,
49.22005227010155
],
[
19.91926607443131,
49.23578662933395
],
[
19.90233007609691,
49.21331359277633
],
[
19.844677531556492,
49.19506819978178
],
[
19.76310480562613,
49.207581061975624
],
[
19.792471935903887,
49.26797026683151
],
[
19.804964656446188,
49.3227703064459
],
[
19.79059239128199,
49.41068823602144
],
[
19.72964003370919,
49.39173976102604
],
[
19.63464336179044,
49.41251577464744
],
[
19.61144729871252,
49.446874977717485
],
[
19.567070382478832,
49.47111948560649
],
[
19.53044867107335,
49.53576963704897
],
[
19.529331372978664,
49.573018759865874
],
[
19.478406373341482,
49.58802949471867
],
[
19.467376160766097,
49.61376272094308
],
[
19.48076485512253,
49.624382419146414
],
[
19.45943533958438,
49.67643342727828
],
[
19.391771971845465,
49.67732839920393
],
[
19.37918513872906,
49.69475833164478
],
[
19.444647059417747,
49.734926309787426
],
[
19.420183671348717,
49.77216977389296
],
[
19.31678436299687,
49.77788683108733
],
[
19.28657047061664,
49.81641303039527
],
[
19.2892349080316,
49.85050633516504
],
[
19.202613007196327,
49.871577302546946
],
[
19.18458333666369,
49.94989376099563
],
[
19.118843899121718,
49.93885090774339
],
[
19.119022808493575,
50.00924476212598
],
[
19.16902894018642,
50.06042790940158
],
[
19.21248488209435,
50.07464550961887
],
[
19.270483258218775,
50.14353546607265
],
[
19.33164083772019,
50.14415200803443
],
[
19.351756446287133,
50.1770213102261
],
[
19.428721085635587,
50.22553774866469
],
[
19.34012882747801,
50.249619486727234
],
[
19.386881319803287,
50.278460477603204
],
[
19.427615133955847,
50.32879749494875
],
[
19.483775982680907,
50.32398171936592
],
[
19.487556550540184,
50.39697913958546
],
[
19.518594996519198,
50.41673729210228
],
[
19.616197703161586,
50.405853584565875
],
[
19.667044537214483,
50.41599036763781
],
[
19.7018576587057,
50.44815981439333
],
[
19.815381505161465,
50.434551819677
],
[
19.89673682197794,
50.45222961157733
],
[
19.900556152526487,
50.47351968988189
],
[
19.949966358605888,
50.50478250507851
]
]
]
}
},
{
"type":"Feature",
"properties":{
"iip_przest":"PL.PZGIK.200",
"iip_identy":"42d2335f-bd81-491e-b93c-effe1bcab872",
"iip_wersja":"2013-07-09T11:04:17+02:00",
"jpt_sjr_ko":"WOJ",
"jpt_kod_je":"08",
"name":"Lubuskie",
"jpt_nazw01":null,
"jpt_organ_":null,
"jpt_orga01":"NZN",
"jpt_jor_id":null,
"wazny_od":"2012/09/26",
"wazny_do":null,
"jpt_wazna_":"NZN",
"wersja_od":"2013/07/09",
"wersja_do":null,
"jpt_powier":1398751,
"jpt_kj_iip":"EGIB",
"jpt_kj_i01":"08",
"jpt_kj_i02":null,
"jpt_kod_01":null,
"id_bufora_":null,
"id_bufor01":14890,
"id_technic":829368,
"jpt_opis":null,
"jpt_sps_ko":"UZG",
"gra_ids":null,
"status_obi":"AKTUALNY",
"opis_bledu":null,
"typ_bledu":null
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
14.564034075888502,
52.62468932701087
],
[
14.638342335406511,
52.65928966419574
],
[
14.672595143261152,
52.63732734331734
],
[
14.722009601903242,
52.632568452456084
],
[
14.791587059674717,
52.69713117440627
],
[
14.813742891892433,
52.773443193636396
],
[
14.865274504576846,
52.79201307526508
],
[
14.851033803978563,
52.828132161536956
],
[
14.904187031107023,
52.883909745891316
],
[
15.038996133104087,
52.86100733660022
],
[
15.071762343511196,
52.8305814795718
],
[
15.332634556969314,
52.898967219446334
],
[
15.282975894936097,
52.94615029012622
],
[
15.350676684094124,
52.94309040608962
],
[
15.44383880921205,
52.98991911660206
],
[
15.55519790751867,
53.01132945295247
],
[
15.573413531385341,
52.986634424008116
],
[
15.633356695908482,
52.97640117394425
],
[
15.68168743530395,
52.99726973982845
],
[
15.719094547785213,
52.98862030330311
],
[
15.769138764048511,
52.99953165675406
],
[
15.767428333713239,
53.02035148832242
],
[
15.811453021280824,
53.08440635564707
],
[
15.848180014076254,
53.11523671308306
],
[
15.912880400763775,
53.119970702736964
],
[
15.979278910985988,
53.11031084350459
],
[
15.994250920158917,
53.073135839582726
],
[
15.962497603490991,
53.0413812022576
],
[
15.952009317174195,
52.971936441775355
],
[
15.978932773883376,
52.936879306959796
],
[
15.96785989904373,
52.85376310972348
],
[
15.893221432355924,
52.81277179088095
],
[
15.934562780906052,
52.801440168553306
],
[
15.9449269465604,
52.72916815283317
],
[
15.907881803683026,
52.715153170152526
],
[
15.795318478686422,
52.708519120304295
],
[
15.813961737286101,
52.66778905434492
],
[
15.776346219890776,
52.637869705064055
],
[
15.8323645520087,
52.56618291007193
],
[
15.834775840423072,
52.52925109755201
],
[
15.88574005903476,
52.48962692702698
],
[
15.895558849025802,
52.44664791756651
],
[
15.856432036994105,
52.43260010176372
],
[
15.84357179237755,
52.402903201322204
],
[
15.89746800798899,
52.3936571126397
],
[
15.881281087328995,
52.35215275090603
],
[
15.889719650029134,
52.30755431679375
],
[
15.852401218816098,
52.26211372851318
],
[
15.858416558841089,
52.16901405449179
],
[
15.874976660808706,
52.13047175134505
],
[
15.833296062657942,
52.1111230439293
],
[
15.9244475175169,
52.06747558167766
],
[
15.988385418626395,
52.0672356320051
],
[
15.99299170492287,
52.03517041875527
],
[
15.969187845076616,
52.00261486193746
],
[
16.01002568538456,
51.98148949716827
],
[
16.060644686368487,
51.97715823471838
],
[
16.12121332757591,
51.99188286899824
],
[
16.138162083278843,
51.92547154002375
],
[
16.10926539981316,
51.904524436488074
],
[
16.21473979492341,
51.869765828866555
],
[
16.24813067296442,
51.90073851922451
],
[
16.28101450136905,
51.900220480842876
],
[
16.40054178522916,
51.83782865023197
],
[
16.416190836204056,
51.78486530783671
],
[
16.383261168270103,
51.77044009317117
],
[
16.355948092832616,
51.716026751385144
],
[
16.26305010210998,
51.67491349042331
],
[
16.217539074687345,
51.714644250262886
],
[
16.1600306312309,
51.711711811456325
],
[
16.17792431731427,
51.76384610766955
],
[
16.133182885186272,
51.75905490988344
],
[
16.034020154532577,
51.78504176197224
],
[
15.994822618647355,
51.804753650980544
],
[
15.965965716905693,
51.79146145507346
],
[
15.976578181891142,
51.74811911311639
],
[
15.871823608051544,
51.72073601759027
],
[
15.834258902688754,
51.672189342996916
],
[
15.81597235584975,
51.602130305139376
],
[
15.82386102260358,
51.57378040034234
],
[
15.769496842481411,
51.569564016866636
],
[
15.713005814174933,
51.54276869458949
],
[
15.645053772997416,
51.47883478937712
],
[
15.595943500194105,
51.46955059074522
],
[
15.487663549930845,
51.5275635492349
],
[
15.382388379635376,
51.51243799845663
],
[
15.33941142455838,
51.47409003658725
],
[
15.324932549354862,
51.41849599220852
],
[
15.26786621906863,
51.44141011437111
],
[
15.15055824397765,
51.442431501360055
],
[
15.085085106549675,
51.42523415158397
],
[
15.071155434436792,
51.39698447525025
],
[
15.017928947781217,
51.39346232465876
],
[
14.974182997864354,
51.36395002077206
],
[
14.973502894225657,
51.44262791930855
],
[
14.92235811399996,
51.48225804491695
],
[
14.852786048902,
51.48928409589027
],
[
14.796698007463771,
51.51761200301262
],
[
14.735173008338622,
51.52636606067626
],
[
14.711243093302574,
51.56265807581878
],
[
14.761027997608865,
51.6025069558008
],
[
14.757708954439643,
51.660172970490585
],
[
14.735988951062403,
51.688758997933114
],
[
14.691006991897506,
51.70821692030842
],
[
14.656652981048866,
51.74049198730101
],
[
14.64630093017864,
51.7943280914106
],
[
14.607766010991389,
51.803576015095175
],
[
14.590549984850252,
51.83865202199643
],
[
14.692901902177468,
51.900957034460255
],
[
14.721273916952956,
51.9511730433503
],
[
14.714836014806577,
52.004924979283196
],
[
14.748435048493935,
52.03225201945524
],
[
14.75837405842323,
52.06739701371905
],
[
14.70035101330291,
52.09812007338648
],
[
14.679128981086853,
52.14198101620221
],
[
14.705344074013887,
52.1734850253365
],
[
14.685403059695153,
52.19242198772314
],
[
14.714872944082023,
52.23684298746732
],
[
14.692689956210131,
52.25574500813737
],
[
14.592643046296509,
52.2747339637154
],
[
14.534579873527235,
52.39842901345726
],
[
14.545499071927074,
52.428754043684684
],
[
14.577804970219821,
52.44097099169724
],
[
14.631611151510441,
52.488409039582955
],
[
14.60392291576822,
52.53134292779883
],
[
14.639437045608796,
52.56890705548524
],
[
14.564034075888502,
52.62468932701087
]
]
]
}
},
{
"type":"Feature",
"properties":{
"iip_przest":"PL.PZGIK.200",
"iip_identy":"833fe14b-fe8e-40c7-9e4e-fc27c938bb11",
"iip_wersja":"2012-09-27T13:45:13+02:00",
"jpt_sjr_ko":"WOJ",
"jpt_kod_je":"18",
"name":"Podkarpackie",
"jpt_nazw01":null,
"jpt_organ_":null,
"jpt_orga01":"NZN",
"jpt_jor_id":null,
"wazny_od":"2012/09/26",
"wazny_do":null,
"jpt_wazna_":"NZN",
"wersja_od":"2012/09/26",
"wersja_do":null,
"jpt_powier":1784523,
"jpt_kj_iip":"EGIB",
"jpt_kj_i01":"18",
"jpt_kj_i02":null,
"jpt_kod_01":null,
"id_bufora_":13890,
"id_bufor01":null,
"id_technic":829369,
"jpt_opis":null,
"jpt_sps_ko":"UZG",
"gra_ids":null,
"status_obi":"AKTUALNY",
"opis_bledu":null,
"typ_bledu":null
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
21.208831568560285,
50.35489777348392
],
[
21.275639215089175,
50.39046438653578
],
[
21.28104861400169,
50.40837706571448
],
[
21.368670422578234,
50.441203323735444
],
[
21.39739676534953,
50.43881843967158
],
[
21.451522295302922,
50.46633520860701
],
[
21.454087420791645,
50.49411121818252
],
[
21.55188238874241,
50.520025171138066
],
[
21.604017123446415,
50.52123559700124
],
[
21.657463499583596,
50.57304747158935
],
[
21.675147739569066,
50.6094518885387
],
[
21.722596415081714,
50.64535271857147
],
[
21.778619748469684,
50.65696189756427
],
[
21.81886669870871,
50.690041252420286
],
[
21.864303387232304,
50.80270678610293
],
[
21.895415422404874,
50.779672246334336
],
[
21.950234927694748,
50.77162653237545
],
[
21.994430144188986,
50.783210749978316
],
[
22.05196352990462,
50.8205483453953
],
[
22.16291911927188,
50.79731723790252
],
[
22.15231490174275,
50.77178890402527
],
[
22.200773036521905,
50.752418413328975
],
[
22.146366398744057,
50.67215237752896
],
[
22.223178109666414,
50.65976097868889
],
[
22.24920077124641,
50.62067533431602
],
[
22.322463167197014,
50.61845202390254
],
[
22.407323000721018,
50.585534976054426
],
[
22.465280028446987,
50.59193715044675
],
[
22.536242178499684,
50.57206376764051
],
[
22.54122181124882,
50.50566288466931
],
[
22.5672295246554,
50.483226148311914
],
[
22.54549792187031,
50.451983504680925
],
[
22.456341608816995,
50.452189510437336
],
[
22.437187507627534,
50.39968969613559
],
[
22.451414371755217,
50.370799789499976
],
[
22.507132305038613,
50.34399138469749
],
[
22.56455428943543,
50.358538962558406
],
[
22.619708577425758,
50.333035548513806
],
[
22.606873884178185,
50.311193959328214
],
[
22.686073758732146,
50.29927043115151
],
[
22.880115978918354,
50.30074307257415
],
[
23.01718812461214,
50.28691627790311
],
[
23.05379660045709,
50.30556761029259
],
[
23.177119139861805,
50.39174071873059
],
[
23.252119493449243,
50.36527058005798
],
[
23.353527740896787,
50.40186409686523
],
[
23.378949805385197,
50.36834052655839
],
[
23.436152903361698,
50.34478333020908
],
[
23.41284947052922,
50.3076537224102
],
[
23.493827299284977,
50.299717139543674
],
[
23.508797241743306,
50.26130426618709
],
[
23.5478824587251,
50.25182878384149
],
[
23.470127763193368,
50.21787567796384
],
[
23.279326412279516,
50.08628707487828
],
[
23.033271608136396,
49.8813380901441
],
[
22.995464886261153,
49.84215150070559
],
[
22.970690251079287,
49.83864212607862
],
[
22.93281799176178,
49.79329061006323
],
[
22.84778043729367,
49.710080000576006
],
[
22.805557482511293,
49.69340094055669
],
[
22.783311055209698,
49.657239362306065
],
[
22.640830554468295,
49.52999226201439
],
[
22.651221033190943,
49.508381487773725
],
[
22.69668511536484,
49.49512827824642
],
[
22.712855710619003,
49.43755071345364
],
[
22.746807334769063,
49.359894421974936
],
[
22.750956052832574,
49.316592955535775
],
[
22.739630514430544,
49.24734564347566
],
[
22.71488636444088,
49.22649174913953
],
[
22.759552265922878,
49.15263917753254
],
[
22.86274505325183,
49.100100015507806
],
[
22.86658755724264,
49.03977403549574
],
[
22.8912589702278,
49.00745193992093
],
[
22.847406970239327,
49.00250538139013
],
[
22.83374795276307,
49.026076576761554
],
[
22.765493761829408,
49.053528867479834
],
[
22.69910680371954,
49.04969887738926
],
[
22.639718255712154,
49.05971831521479
],
[
22.584478876630182,
49.09731193230533
],
[
22.48707681690047,
49.08844309575557
],
[
22.413883787569056,
49.10207982560304
],
[
22.369665520869482,
49.14546599631108
],
[
22.320533513516473,
49.135578698677755
],
[
22.236063272903145,
49.15442306468748
],
[
22.193047865854194,
49.174421722449566
],
[
22.03042007239396,
49.22516973668479
],
[
22.034024188907768,
49.278546149953534
],
[
21.983695155774328,
49.309952541419
],
[
21.961011605861202,
49.34905210520507
],
[
21.93034828132554,
49.34692612926432
],
[
21.85899870345321,
49.36855447816365
],
[
21.8402408477066,
49.39150912987745
],
[
21.763385587460967,
49.38346778653151
],
[
21.697486190633207,
49.41828140901429
],
[
21.65890342381676,
49.41680063029053
],
[
21.630941947852595,
49.447307766612724
],
[
21.563982570904837,
49.44126246653942
],
[
21.511159546424697,
49.41974786017593
],
[
21.434082566010904,
49.412283818643665
],
[
21.39865798295024,
49.433841574907056
],
[
21.39213384973455,
49.455795213675714
],
[
21.42092883401164,
49.4919912273751
],
[
21.3932098144726,
49.51127958325923
],
[
21.3753201232391,
49.56294153976481
],
[
21.326661560324556,
49.59365485685391
],
[
21.3626733818687,
49.633606903848126
],
[
21.34172872192366,
49.65931807575911
],
[
21.346797303221262,
49.69004260087208
],
[
21.310222245187237,
49.748759035327
],
[
21.2578182231377,
49.752134891087174
],
[
21.24177209005152,
49.77610448780641
],
[
21.28059064800917,
49.80584195085838
],
[
21.308398768510276,
49.79613889730189
],
[
21.348922470845245,
49.814678595151456
],
[
21.282709134386334,
49.8457057381487
],
[
21.22469715974474,
49.853264445080875
],
[
21.225358255589253,
49.88378578851876
],
[
21.279409101127403,
49.89189566686638
],
[
21.284719853100555,
49.92406462686123
],
[
21.17970707075854,
49.92833075275624
],
[
21.15043879805842,
49.976484377915725
],
[
21.154440205990703,
50.00340515569993
],
[
21.192906464871122,
50.029258856329335
],
[
21.151483841876033,
50.04530909085071
],
[
21.177089482335326,
50.07144035331987
],
[
21.160077019596628,
50.08949054361749
],
[
21.180965811658584,
50.117836522015665
],
[
21.152393228914022,
50.147641435560104
],
[
21.170807232684634,
50.20872663274252
],
[
21.14211164858215,
50.237679344948546
],
[
21.183822368411928,
50.297990434602475
],
[
21.22181290766214,
50.31029309697919
],
[
21.208831568560285,
50.35489777348392
]
]
]
}
},
{
"type":"Feature",
"properties":{
"iip_przest":"PL.PZGIK.200",
"iip_identy":"a1e8cdc7-d26d-4982-946f-ff3e5082eecd",
"iip_wersja":"2012-09-27T13:45:12+02:00",
"jpt_sjr_ko":"WOJ",
"jpt_kod_je":"06",
"name":"Lubelskie",
"jpt_nazw01":null,
"jpt_organ_":null,
"jpt_orga01":"NZN",
"jpt_jor_id":null,
"wazny_od":"2012/09/26",
"wazny_do":null,
"jpt_wazna_":"NZN",
"wersja_od":"2012/09/26",
"wersja_do":null,
"jpt_powier":2512291,
"jpt_kj_iip":"EGIB",
"jpt_kj_i01":"06",
"jpt_kj_i02":null,
"jpt_kod_01":null,
"id_bufora_":13890,
"id_bufor01":null,
"id_technic":829365,
"jpt_opis":null,
"jpt_sps_ko":"UZG",
"gra_ids":null,
"status_obi":"AKTUALNY",
"opis_bledu":null,
"typ_bledu":null
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
23.128408892122103,
52.287841410778064
],
[
23.178338050709915,
52.283140990603066
],
[
23.202740966252197,
52.27754804257975
],
[
23.20366609986047,
52.22655406264777
],
[
23.458153980996865,
52.1845960156223
],
[
23.556269090878605,
52.11832600182074
],
[
23.596933030517192,
52.11781391126957
],
[
23.64017686507442,
52.08579610939859
],
[
23.687446038494,
51.98813907930105
],
[
23.612043953088147,
51.917381042942736
],
[
23.636944986251326,
51.89180605370029
],
[
23.607078046722883,
51.87632101751971
],
[
23.641382938076728,
51.800352056127615
],
[
23.630949015602027,
51.78015191601405
],
[
23.55648909448135,
51.757603921005426
],
[
23.52701600978907,
51.72975503823326
],
[
23.55278602865178,
51.71520199499698
],
[
23.55558795779325,
51.66774702376365
],
[
23.54143093026205,
51.60077797985363
],
[
23.567923979008235,
51.57563799140165
],
[
23.565132938534884,
51.53440901566302
],
[
23.613677096123226,
51.523795002014324
],
[
23.62013003088066,
51.4963667259166
],
[
23.671440706968724,
51.47478387290538
],
[
23.69750572414113,
51.403101633858924
],
[
23.63598829190769,
51.318816011193725
],
[
23.657763218326465,
51.289127808666805
],
[
23.70316298595494,
51.282199052810704
],
[
23.72820378331677,
51.23547475509518
],
[
23.814226233747128,
51.17070946510682
],
[
23.857895331289278,
51.158058552518874
],
[
23.85321382057559,
51.12592121428391
],
[
23.873311675224734,
51.08182616168889
],
[
23.912563201568812,
51.070439084334865
],
[
23.9160786280238,
51.02796563303065
],
[
23.967024694889595,
50.97833081503857
],
[
23.969746836979468,
50.95088201349018
],
[
24.062655937200876,
50.8923603556674
],
[
24.126578589127966,
50.86801581149127
],
[
24.09961753673571,
50.835941329075524
],
[
23.989817027099004,
50.83751949911764
],
[
23.95771845809554,
50.79510719788482
],
[
24.01133570454819,
50.772094512916155
],
[
24.018392145329774,
50.72508417335191
],
[
24.07199726313371,
50.72061441214279
],
[
24.098657021402413,
50.59953406284951
],
[
24.070104984016652,
50.50338711892269
],
[
24.034528769096745,
50.444832376139885
],
[
23.9975424801557,
50.41214034967451
],
[
23.940769519684963,
50.41390937541938
],
[
23.803360033456922,
50.4047656048641
],
[
23.703120734590925,
50.37528943288076
],
[
23.686321318918477,
50.331632009792195
],
[
23.63884937854635,
50.32050550263843
],
[
23.581013440102932,
50.265986037833756
],
[
23.5478824587251,
50.25182878384149
],
[
23.508797241743306,
50.26130426618709
],
[
23.493827299284977,
50.299717139543674
],
[
23.41284947052922,
50.3076537224102
],
[
23.436152903361698,
50.34478333020908
],
[
23.378949805385197,
50.36834052655839
],
[
23.353527740896787,
50.40186409686523
],
[
23.252119493449243,
50.36527058005798
],
[
23.177119139861805,
50.39174071873059
],
[
23.05379660045709,
50.30556761029259
],
[
23.01718812461214,
50.28691627790311
],
[
22.880115978918354,
50.30074307257415
],
[
22.686073758732146,
50.29927043115151
],
[
22.606873884178185,
50.311193959328214
],
[
22.619708577425758,
50.333035548513806
],
[
22.56455428943543,
50.358538962558406
],
[
22.507132305038613,
50.34399138469749
],
[
22.451414371755217,
50.370799789499976
],
[
22.437187507627534,
50.39968969613559
],
[
22.456341608816995,
50.452189510437336
],
[
22.54549792187031,
50.451983504680925
],
[
22.5672295246554,
50.483226148311914
],
[
22.54122181124882,
50.50566288466931
],
[
22.536242178499684,
50.57206376764051
],
[
22.465280028446987,
50.59193715044675
],
[
22.407323000721018,
50.585534976054426
],
[
22.322463167197014,
50.61845202390254
],
[
22.24920077124641,
50.62067533431602
],
[
22.223178109666414,
50.65976097868889
],
[
22.146366398744057,
50.67215237752896
],
[
22.200773036521905,
50.752418413328975
],
[
22.15231490174275,
50.77178890402527
],
[
22.16291911927188,
50.79731723790252
],
[
22.05196352990462,
50.8205483453953
],
[
21.994430144188986,
50.783210749978316
],
[
21.950234927694748,
50.77162653237545
],
[
21.895415422404874,
50.779672246334336
],
[
21.864303387232304,
50.80270678610293
],
[
21.866513197099483,
50.82213578260614
],
[
21.812874291519574,
50.93454794210784
],
[
21.826380464253415,
51.047033165525654
],
[
21.80299809180555,
51.072079162915486
],
[
21.787005805067313,
51.14520959560328
],
[
21.788458793738318,
51.20152798050841
],
[
21.816551724812257,
51.23059275821064
],
[
21.80824413585271,
51.25433824592319
],
[
21.850630736227075,
51.27847631068235
],
[
21.823392959025302,
51.303332405278205
],
[
21.82833768959851,
51.33928809838363
],
[
21.789815480997714,
51.394877846171816
],
[
21.80136939280879,
51.42759687849407
],
[
21.840164586872188,
51.42034857950926
],
[
21.873175856827793,
51.47491344875811
],
[
21.81871500731787,
51.56386432332011
],
[
21.75299231931352,
51.56080999608571
],
[
21.65355197618671,
51.58576883343936
],
[
21.63623360873681,
51.654323494163656
],
[
21.713759825320587,
51.63510327501178
],
[
21.838724342487822,
51.65222084519097
],
[
21.88174870082493,
51.693632698254255
],
[
21.87364587120665,
51.72873529743431
],
[
21.835747654248127,
51.74379695714494
],
[
21.952888600599213,
51.795575132233424
],
[
21.942203432373894,
51.825967756088474
],
[
21.84532437108368,
51.84124284306089
],
[
21.91213061116794,
51.88647068125838
],
[
21.866380186654975,
51.94342608566083
],
[
21.88030520470166,
51.97102567634095
],
[
21.97146241977739,
51.99264330337594
],
[
22.029853844255552,
52.02171344829182
],
[
22.131281257996413,
52.00407411367659
],
[
22.151913128798732,
52.028354242623614
],
[
22.25835959233742,
52.00629937307517
],
[
22.29745520467103,
52.03745711627057
],
[
22.344880978821372,
51.996798625944706
],
[
22.38428077253134,
52.01630120711026
],
[
22.455083134775187,
52.0288147160672
],
[
22.48329060039558,
52.06722728382029
],
[
22.576225485524656,
52.037938115377216
],
[
22.661360570175535,
52.03659395750258
],
[
22.665978755093015,
52.08112045705854
],
[
22.698293364822856,
52.10850032520309
],
[
22.753857677540815,
52.0949690594431
],
[
22.786221878442387,
52.06815812160836
],
[
22.902187477332543,
52.06352558948655
],
[
22.90264137712327,
52.110254176688585
],
[
22.9330592211921,
52.1365335793382
],
[
23.028826808754122,
52.17410057143523
],
[
23.032972546415124,
52.21863195653682
],
[
23.128408892122103,
52.287841410778064
]
]
]
}
}
]
}
woj area population density un_rate_woj capital un_rate_capital latitude longitude
Dolnośląskie 19947 2909997 146 9.4 Wrocław 3.5 51.11 17.022222
Kujawsko-pomorskie 17972 2092564 116 13.8 Bydgoszcz 5.7 53.125 18.011111
Lubelskie 25122 2156150 86 11.5 Lublin 8 51.248056 22.570278
Lubuskie 13988 1021470 73 11.3 Gorzów Wielkopolski 4.8 52.730833 15.238333
Łódzkie 18219 2513093 138 11.2 Łódź 9.9 51.776667 19.454722
Małopolskie 15183 3360581 221 8.8 Kraków 4.6 50.061389 19.938333
Mazowieckie 35558 5316840 150 9 Warszawa 3.7 52.232222 21.008333
Opolskie 9412 1004416 107 10.6 Opole 5.3 50.664722 17.926944
Podkarpackie 17846 2129294 119 13.1 Rzeszów 7.3 50.033611 22.004722
Podlaskie 20187 1194965 59 12.1 Białystok 10.9 53.135278 23.145556
Pomorskie 18310 2295811 125 9.8 Gdańsk 4.5 54.3475 18.645278
Śląskie 12333 4599447 373 8.8 Katowice 3.9 50.264167 19.023611
Świętokrzyskie 11711 1268239 108 13 Kielce 8.4 50.874167 20.633333
Warmińsko-mazurskie 24173 1446915 60 16.5 Olsztyn 5.9 53.773056 20.476111
Wielkopolskie 29826 3467016 116 7 Poznań 2.5 52.408333 16.934167
Zachodniopomorskie 22892 1718861 75 13.7 Szczecin 7.4 53.438056 14.542222
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment