Skip to content

Commit

Permalink
Update test after change of level properties format
Browse files Browse the repository at this point in the history
  • Loading branch information
bartromgens committed Jun 26, 2020
1 parent 29ac9cc commit 7edf3ad
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 17 deletions.
4 changes: 2 additions & 2 deletions geojsoncontour/contour.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def contourf_to_geojson_overlap(contourf, geojson_filepath=None, min_angle_deg=N
"""Transform matplotlib.contourf to geojson with overlapping filled contours."""
polygon_features = []
contourf_idx = 0
contourf_levels = get_contourf_levels(contourf.levels,contourf.extend)
contourf_levels = get_contourf_levels(contourf.levels, contourf.extend)
for collection in contourf.collections:
color = collection.get_facecolor()
for path in collection.get_paths():
Expand Down Expand Up @@ -77,7 +77,7 @@ def contourf_to_geojson(contourf, geojson_filepath=None, min_angle_deg=None,
else:
variable_opacity = False
polygon_features = []
contourf_levels = get_contourf_levels(contourf.levels,contourf.extend)
contourf_levels = get_contourf_levels(contourf.levels, contourf.extend)
for coll, level in zip(contourf.collections, contourf_levels):
color = coll.get_facecolor()
muli = MP(coll, min_angle_deg, ndigits)
Expand Down
22 changes: 9 additions & 13 deletions geojsoncontour/utilities/multipoly.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,21 +64,17 @@ def set_contourf_properties(stroke_width, fcolor, fill_opacity, level, unit):
"stroke-opacity": 1,
"fill": fcolor,
"fill-opacity": fill_opacity,
"title": "%s" % level + ' ' + unit
"title": "{} {}".format(level, unit)
}


def get_contourf_levels(levels,extend):

mid_levels=[ "%.2f" % levels[i] + '-' + "%.2f" % levels[i+1] for i in range(len(levels)-1) ]

if extend=='both':
return ["<%.2f" % levels[0],*mid_levels ,">%.2f" % levels[-1]]
elif extend=='max':
return [*mid_levels ,">%.2f" % levels[-1]]
elif extend=='min':
return ["<%.2f" % levels[0],*mid_levels]
def get_contourf_levels(levels, extend):
mid_levels = ["%.2f" % levels[i] + '-' + "%.2f" % levels[i+1] for i in range(len(levels)-1)]
if extend == 'both':
return ["<%.2f" % levels[0], *mid_levels, ">%.2f" % levels[-1]]
elif extend == 'max':
return [*mid_levels, ">%.2f" % levels[-1]]
elif extend == 'min':
return ["<%.2f" % levels[0], *mid_levels]
else:
return mid_levels


2 changes: 1 addition & 1 deletion tests/benchmark_contourf.geojson
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"features":[{"geometry":{"coordinates":[[[-4.0,-22.085],[3.0,-22.243],[8.0,-20.97],[13.401,-18.0],[17.54,-14.0],[20.56,-9.0],[22.085,-4.0],[22.355,2.0],[21.0,7.917],[18.294,13.0],[14.65,17.0],[10.0,20.093],[4.418,22.0],[-2.0,22.355],[-7.917,21.0],[-13.0,18.294],[-17.0,14.65],[-20.093,10.0],[-22.0,4.418],[-22.355,-2.0],[-21.0,-7.917],[-18.294,-13.0],[-14.65,-17.0],[-10.0,-20.093],[-4.0,-22.085]]],"type":"Polygon"},"properties":{"fill":"#0000bf","fill-opacity":0.9,"stroke":"#0000bf","stroke-opacity":1,"stroke-width":1,"title":"0.00 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-8.0,-44.17],[5.0,-44.61],[16.0,-41.94],[26.0,-36.591],[34.263,-29.0],[40.669,-19.0],[44.17,-8.0],[44.71,4.0],[42.0,15.84],[36.591,26.0],[29.0,34.263],[19.0,40.669],[8.0,44.17],[-4.0,44.71],[-15.84,42.0],[-26.0,36.591],[-34.263,29.0],[-40.669,19.0],[-44.17,8.0],[-44.71,-4.0],[-42.0,-15.84],[-36.591,-26.0],[-29.0,-34.263],[-19.0,-40.669],[-8.0,-44.17]]],"type":"Polygon"},"properties":{"fill":"#0028ff","fill-opacity":0.9,"stroke":"#0028ff","stroke-opacity":1,"stroke-width":1,"title":"22.44 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.418,-22.0],[-10.18,-20.0],[-15.0,-16.693],[-19.0,-11.946],[-21.627,-6.0],[-22.444,0.0],[-21.627,6.0],[-19.563,11.0],[-16.0,15.737],[-11.946,19.0],[-6.0,21.627],[0.0,22.444],[6.0,21.627],[11.0,19.563],[15.737,16.0],[19.0,11.946],[21.627,6.0],[22.444,0.0],[21.627,-6.0],[19.563,-11.0],[16.0,-15.737],[11.946,-19.0],[6.0,-21.627],[0.0,-22.444],[-4.418,-22.0]]],"type":"Polygon"},"properties":{"fill":"#0028ff","fill-opacity":0.9,"stroke":"#0028ff","stroke-opacity":1,"stroke-width":1,"title":"22.44 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-6.0,-67.065],[13.0,-66.066],[29.0,-60.768],[43.963,-51.0],[55.585,-38.0],[63.638,-22.0],[67.147,-5.0],[66.066,13.0],[60.768,29.0],[51.0,43.963],[38.0,55.585],[22.0,63.638],[5.0,67.147],[-13.0,66.066],[-29.0,60.768],[-43.963,51.0],[-55.585,38.0],[-63.638,22.0],[-67.147,5.0],[-66.066,-13.0],[-60.768,-29.0],[-51.0,-43.963],[-38.0,-55.585],[-22.0,-63.638],[-6.0,-67.065]]],"type":"Polygon"},"properties":{"fill":"#009cff","fill-opacity":0.9,"stroke":"#009cff","stroke-opacity":1,"stroke-width":1,"title":"44.89 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-8.883,-44.0],[-20.0,-40.187],[-29.307,-34.0],[-37.282,-25.0],[-42.65,-14.0],[-44.789,-3.0],[-44.0,8.883],[-40.187,20.0],[-34.0,29.307],[-25.0,37.282],[-14.0,42.65],[-3.0,44.789],[8.883,44.0],[20.0,40.187],[29.307,34.0],[37.282,25.0],[42.65,14.0],[44.789,3.0],[44.0,-8.883],[40.187,-20.0],[34.0,-29.307],[25.0,-37.282],[14.0,-42.65],[3.0,-44.789],[-8.883,-44.0]]],"type":"Polygon"},"properties":{"fill":"#009cff","fill-opacity":0.9,"stroke":"#009cff","stroke-opacity":1,"stroke-width":1,"title":"44.89 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-11.0,-89.101],[13.0,-88.832],[36.0,-82.244],[56.213,-70.0],[72.464,-53.0],[83.881,-32.0],[89.326,-9.0],[88.679,14.0],[82.0,36.549],[70.0,56.213],[53.0,72.464],[32.0,83.881],[11.785,89.0],[-12.0,88.972],[-34.218,83.0],[-55.0,70.958],[-71.722,54.0],[-83.091,34.0],[-89.0,11.785],[-88.972,-12.0],[-83.0,-34.218],[-70.958,-55.0],[-54.0,-71.722],[-34.0,-83.091],[-11.0,-89.101]]],"type":"Polygon"},"properties":{"fill":"#1fffd7","fill-opacity":0.9,"stroke":"#1fffd7","stroke-opacity":1,"stroke-width":1,"title":"67.33 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-6.675,-67.0],[-24.0,-62.911],[-39.0,-54.888],[-52.0,-42.775],[-61.235,-28.0],[-66.429,-11.0],[-67.0,6.675],[-62.911,24.0],[-54.888,39.0],[-42.775,52.0],[-28.0,61.235],[-11.0,66.429],[6.675,67.0],[24.0,62.911],[39.0,54.888],[52.0,42.775],[61.235,28.0],[66.429,11.0],[67.0,-6.675],[62.911,-24.0],[54.888,-39.0],[42.775,-52.0],[28.0,-61.235],[11.0,-66.429],[-6.675,-67.0]]],"type":"Polygon"},"properties":{"fill":"#1fffd7","fill-opacity":0.9,"stroke":"#1fffd7","stroke-opacity":1,"stroke-width":1,"title":"67.33 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-68.0,-89.273],[-67.0,-90.0],[67.036,-90.0],[68.0,-89.273],[88.503,-69.0],[103.237,-44.0],[111.076,-16.0],[111.467,13.0],[104.464,41.0],[90.762,66.0],[70.886,87.0],[68.0,89.0],[11.785,89.0],[12.0,88.972],[34.218,83.0],[55.0,70.958],[71.722,54.0],[83.091,34.0],[89.0,11.785],[88.972,-12.0],[83.0,-34.218],[70.958,-55.0],[54.0,-71.722],[34.0,-83.091],[11.785,-89.0],[-12.0,-88.972],[-34.218,-83.0],[-55.0,-70.958],[-71.722,-54.0],[-83.091,-34.0],[-89.0,-11.785],[-88.972,12.0],[-83.0,34.218],[-70.958,55.0],[-54.0,71.722],[-34.0,83.091],[-11.785,89.0],[-12.0,89.0],[-68.357,89.0],[-69.0,88.503],[-89.273,68.0],[-104.0,42.163],[-111.346,14.0],[-111.215,-15.0],[-103.657,-43.0],[-89.0,-68.357],[-68.0,-89.273]]],"type":"Polygon"},"properties":{"fill":"#7dff7a","fill-opacity":0.9,"stroke":"#7dff7a","stroke-opacity":1,"stroke-width":1,"title":"89.78 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-101.0,-89.073],[-100.0,-90.0],[-67.036,-90.0],[-68.0,-89.273],[-88.503,-69.0],[-103.237,-44.0],[-111.076,-16.0],[-111.467,13.0],[-104.464,41.0],[-90.762,66.0],[-70.886,87.0],[-68.357,89.0],[-69.0,89.0],[-101.065,89.0],[-101.937,88.0],[-121.054,59.0],[-132.133,26.0],[-134.366,-9.0],[-127.617,-43.0],[-112.0,-74.773],[-101.0,-89.073]]],"type":"Polygon"},"properties":{"fill":"#d7ff1f","fill-opacity":0.9,"stroke":"#d7ff1f","stroke-opacity":1,"stroke-width":1,"title":"112.22 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[68.0,-90.0],[100.175,-90.0],[101.0,-89.073],[120.561,-60.0],[131.932,-27.0],[134.429,8.0],[127.95,42.0],[113.0,73.253],[101.0,89.0],[68.357,89.0],[69.0,88.503],[89.273,68.0],[104.0,42.163],[111.346,14.0],[111.215,-15.0],[103.657,-43.0],[89.0,-68.357],[68.0,-89.273],[68.0,-90.0]]],"type":"Polygon"},"properties":{"fill":"#d7ff1f","fill-opacity":0.9,"stroke":"#d7ff1f","stroke-opacity":1,"stroke-width":1,"title":"112.22 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-129.0,-89.681],[-128.778,-90.0],[-128.0,-90.0],[-100.175,-90.0],[-101.0,-89.073],[-120.561,-60.0],[-131.932,-27.0],[-134.429,8.0],[-127.95,42.0],[-113.0,73.253],[-101.065,89.0],[-102.0,89.0],[-129.471,89.0],[-130.0,88.226],[-148.256,52.0],[-156.652,12.0],[-154.411,-29.0],[-141.633,-68.0],[-129.0,-89.681]]],"type":"Polygon"},"properties":{"fill":"#ffb200","fill-opacity":0.9,"stroke":"#ffb200","stroke-opacity":1,"stroke-width":1,"title":"134.67 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[101.0,-90.0],[128.778,-90.0],[129.0,-89.681],[147.902,-53.0],[156.572,-13.0],[154.596,28.0],[142.109,67.0],[129.471,89.0],[129.0,89.0],[101.065,89.0],[101.937,88.0],[121.054,59.0],[132.133,26.0],[134.366,-9.0],[127.617,-43.0],[112.0,-74.773],[101.0,-90.0]]],"type":"Polygon"},"properties":{"fill":"#ffb200","fill-opacity":0.9,"stroke":"#ffb200","stroke-opacity":1,"stroke-width":1,"title":"134.67 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-155.0,-90.0],[-128.778,-90.0],[-129.0,-89.681],[-147.902,-53.0],[-156.572,-13.0],[-154.596,28.0],[-142.109,67.0],[-129.471,89.0],[-130.0,89.0],[-156.0,88.905],[-173.825,45.0],[-179.544,-2.0],[-173.0,-48.074],[-155.0,-90.0]]],"type":"Polygon"},"properties":{"fill":"#ff4700","fill-opacity":0.9,"stroke":"#ff4700","stroke-opacity":1,"stroke-width":1,"title":"157.11 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[129.0,-90.0],[155.371,-90.0],[155.946,-89.0],[173.563,-46.0],[179.0,-14.0],[173.295,47.0],[155.946,89.0],[155.0,89.0],[129.471,89.0],[130.0,88.226],[148.256,52.0],[156.652,12.0],[154.411,-29.0],[141.633,-68.0],[129.0,-90.0]]],"type":"Polygon"},"properties":{"fill":"#ff4700","fill-opacity":0.9,"stroke":"#ff4700","stroke-opacity":1,"stroke-width":1,"title":"157.11 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-179.0,-90.0],[-155.371,-90.0],[-155.946,-89.0],[-173.563,-46.0],[-179.556,0.0],[-173.563,46.0],[-156.0,89.0],[-180.0,89.0],[-180.0,88.0],[-179.0,-90.0]]],"type":"Polygon"},"properties":{"fill":"#bf0000","fill-opacity":0.9,"stroke":"#bf0000","stroke-opacity":1,"stroke-width":1,"title":"179.56 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[156.0,-90.0],[179.0,-90.0],[179.0,-89.0],[179.0,-14.11],[178.928,-15.0],[169.0,-60.655],[156.0,-90.0]]],"type":"Polygon"},"properties":{"fill":"#bf0000","fill-opacity":0.9,"stroke":"#bf0000","stroke-opacity":1,"stroke-width":1,"title":"179.56 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[179.0,14.11],[179.0,89.0],[178.0,89.0],[155.946,89.0],[156.0,88.905],[173.825,45.0],[179.0,14.11]]],"type":"Polygon"},"properties":{"fill":"#bf0000","fill-opacity":0.9,"stroke":"#bf0000","stroke-opacity":1,"stroke-width":1,"title":"179.56 [unit]"},"type":"Feature"}],"type":"FeatureCollection"}
{"features":[{"geometry":{"coordinates":[[[-4.0,-22.085],[3.0,-22.243],[8.0,-20.97],[13.401,-18.0],[17.54,-14.0],[20.56,-9.0],[22.085,-4.0],[22.355,2.0],[21.0,7.917],[18.294,13.0],[14.65,17.0],[10.0,20.093],[4.418,22.0],[-2.0,22.355],[-7.917,21.0],[-13.0,18.294],[-17.0,14.65],[-20.093,10.0],[-22.0,4.418],[-22.355,-2.0],[-21.0,-7.917],[-18.294,-13.0],[-14.65,-17.0],[-10.0,-20.093],[-4.0,-22.085]]],"type":"Polygon"},"properties":{"fill":"#0000bf","fill-opacity":0.9,"stroke":"#0000bf","stroke-opacity":1,"stroke-width":1,"title":"0.00-22.44 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-8.0,-44.17],[5.0,-44.61],[16.0,-41.94],[26.0,-36.591],[34.263,-29.0],[40.669,-19.0],[44.17,-8.0],[44.71,4.0],[42.0,15.84],[36.591,26.0],[29.0,34.263],[19.0,40.669],[8.0,44.17],[-4.0,44.71],[-15.84,42.0],[-26.0,36.591],[-34.263,29.0],[-40.669,19.0],[-44.17,8.0],[-44.71,-4.0],[-42.0,-15.84],[-36.591,-26.0],[-29.0,-34.263],[-19.0,-40.669],[-8.0,-44.17]]],"type":"Polygon"},"properties":{"fill":"#0028ff","fill-opacity":0.9,"stroke":"#0028ff","stroke-opacity":1,"stroke-width":1,"title":"22.44-44.89 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-4.418,-22.0],[-10.18,-20.0],[-15.0,-16.693],[-19.0,-11.946],[-21.627,-6.0],[-22.444,0.0],[-21.627,6.0],[-19.563,11.0],[-16.0,15.737],[-11.946,19.0],[-6.0,21.627],[0.0,22.444],[6.0,21.627],[11.0,19.563],[15.737,16.0],[19.0,11.946],[21.627,6.0],[22.444,0.0],[21.627,-6.0],[19.563,-11.0],[16.0,-15.737],[11.946,-19.0],[6.0,-21.627],[0.0,-22.444],[-4.418,-22.0]]],"type":"Polygon"},"properties":{"fill":"#0028ff","fill-opacity":0.9,"stroke":"#0028ff","stroke-opacity":1,"stroke-width":1,"title":"22.44-44.89 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-6.0,-67.065],[13.0,-66.066],[29.0,-60.768],[43.963,-51.0],[55.585,-38.0],[63.638,-22.0],[67.147,-5.0],[66.066,13.0],[60.768,29.0],[51.0,43.963],[38.0,55.585],[22.0,63.638],[5.0,67.147],[-13.0,66.066],[-29.0,60.768],[-43.963,51.0],[-55.585,38.0],[-63.638,22.0],[-67.147,5.0],[-66.066,-13.0],[-60.768,-29.0],[-51.0,-43.963],[-38.0,-55.585],[-22.0,-63.638],[-6.0,-67.065]]],"type":"Polygon"},"properties":{"fill":"#009cff","fill-opacity":0.9,"stroke":"#009cff","stroke-opacity":1,"stroke-width":1,"title":"44.89-67.33 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-8.883,-44.0],[-20.0,-40.187],[-29.307,-34.0],[-37.282,-25.0],[-42.65,-14.0],[-44.789,-3.0],[-44.0,8.883],[-40.187,20.0],[-34.0,29.307],[-25.0,37.282],[-14.0,42.65],[-3.0,44.789],[8.883,44.0],[20.0,40.187],[29.307,34.0],[37.282,25.0],[42.65,14.0],[44.789,3.0],[44.0,-8.883],[40.187,-20.0],[34.0,-29.307],[25.0,-37.282],[14.0,-42.65],[3.0,-44.789],[-8.883,-44.0]]],"type":"Polygon"},"properties":{"fill":"#009cff","fill-opacity":0.9,"stroke":"#009cff","stroke-opacity":1,"stroke-width":1,"title":"44.89-67.33 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-11.0,-89.101],[13.0,-88.832],[36.0,-82.244],[56.213,-70.0],[72.464,-53.0],[83.881,-32.0],[89.326,-9.0],[88.679,14.0],[82.0,36.549],[70.0,56.213],[53.0,72.464],[32.0,83.881],[11.785,89.0],[-12.0,88.972],[-34.218,83.0],[-55.0,70.958],[-71.722,54.0],[-83.091,34.0],[-89.0,11.785],[-88.972,-12.0],[-83.0,-34.218],[-70.958,-55.0],[-54.0,-71.722],[-34.0,-83.091],[-11.0,-89.101]]],"type":"Polygon"},"properties":{"fill":"#1fffd7","fill-opacity":0.9,"stroke":"#1fffd7","stroke-opacity":1,"stroke-width":1,"title":"67.33-89.78 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-6.675,-67.0],[-24.0,-62.911],[-39.0,-54.888],[-52.0,-42.775],[-61.235,-28.0],[-66.429,-11.0],[-67.0,6.675],[-62.911,24.0],[-54.888,39.0],[-42.775,52.0],[-28.0,61.235],[-11.0,66.429],[6.675,67.0],[24.0,62.911],[39.0,54.888],[52.0,42.775],[61.235,28.0],[66.429,11.0],[67.0,-6.675],[62.911,-24.0],[54.888,-39.0],[42.775,-52.0],[28.0,-61.235],[11.0,-66.429],[-6.675,-67.0]]],"type":"Polygon"},"properties":{"fill":"#1fffd7","fill-opacity":0.9,"stroke":"#1fffd7","stroke-opacity":1,"stroke-width":1,"title":"67.33-89.78 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-68.0,-89.273],[-67.0,-90.0],[67.036,-90.0],[68.0,-89.273],[88.503,-69.0],[103.237,-44.0],[111.076,-16.0],[111.467,13.0],[104.464,41.0],[90.762,66.0],[70.886,87.0],[68.0,89.0],[11.785,89.0],[12.0,88.972],[34.218,83.0],[55.0,70.958],[71.722,54.0],[83.091,34.0],[89.0,11.785],[88.972,-12.0],[83.0,-34.218],[70.958,-55.0],[54.0,-71.722],[34.0,-83.091],[11.785,-89.0],[-12.0,-88.972],[-34.218,-83.0],[-55.0,-70.958],[-71.722,-54.0],[-83.091,-34.0],[-89.0,-11.785],[-88.972,12.0],[-83.0,34.218],[-70.958,55.0],[-54.0,71.722],[-34.0,83.091],[-11.785,89.0],[-12.0,89.0],[-68.357,89.0],[-69.0,88.503],[-89.273,68.0],[-104.0,42.163],[-111.346,14.0],[-111.215,-15.0],[-103.657,-43.0],[-89.0,-68.357],[-68.0,-89.273]]],"type":"Polygon"},"properties":{"fill":"#7dff7a","fill-opacity":0.9,"stroke":"#7dff7a","stroke-opacity":1,"stroke-width":1,"title":"89.78-112.22 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-101.0,-89.073],[-100.0,-90.0],[-67.036,-90.0],[-68.0,-89.273],[-88.503,-69.0],[-103.237,-44.0],[-111.076,-16.0],[-111.467,13.0],[-104.464,41.0],[-90.762,66.0],[-70.886,87.0],[-68.357,89.0],[-69.0,89.0],[-101.065,89.0],[-101.937,88.0],[-121.054,59.0],[-132.133,26.0],[-134.366,-9.0],[-127.617,-43.0],[-112.0,-74.773],[-101.0,-89.073]]],"type":"Polygon"},"properties":{"fill":"#d7ff1f","fill-opacity":0.9,"stroke":"#d7ff1f","stroke-opacity":1,"stroke-width":1,"title":"112.22-134.67 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[68.0,-90.0],[100.175,-90.0],[101.0,-89.073],[120.561,-60.0],[131.932,-27.0],[134.429,8.0],[127.95,42.0],[113.0,73.253],[101.0,89.0],[68.357,89.0],[69.0,88.503],[89.273,68.0],[104.0,42.163],[111.346,14.0],[111.215,-15.0],[103.657,-43.0],[89.0,-68.357],[68.0,-89.273],[68.0,-90.0]]],"type":"Polygon"},"properties":{"fill":"#d7ff1f","fill-opacity":0.9,"stroke":"#d7ff1f","stroke-opacity":1,"stroke-width":1,"title":"112.22-134.67 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-129.0,-89.681],[-128.778,-90.0],[-128.0,-90.0],[-100.175,-90.0],[-101.0,-89.073],[-120.561,-60.0],[-131.932,-27.0],[-134.429,8.0],[-127.95,42.0],[-113.0,73.253],[-101.065,89.0],[-102.0,89.0],[-129.471,89.0],[-130.0,88.226],[-148.256,52.0],[-156.652,12.0],[-154.411,-29.0],[-141.633,-68.0],[-129.0,-89.681]]],"type":"Polygon"},"properties":{"fill":"#ffb200","fill-opacity":0.9,"stroke":"#ffb200","stroke-opacity":1,"stroke-width":1,"title":"134.67-157.11 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[101.0,-90.0],[128.778,-90.0],[129.0,-89.681],[147.902,-53.0],[156.572,-13.0],[154.596,28.0],[142.109,67.0],[129.471,89.0],[129.0,89.0],[101.065,89.0],[101.937,88.0],[121.054,59.0],[132.133,26.0],[134.366,-9.0],[127.617,-43.0],[112.0,-74.773],[101.0,-90.0]]],"type":"Polygon"},"properties":{"fill":"#ffb200","fill-opacity":0.9,"stroke":"#ffb200","stroke-opacity":1,"stroke-width":1,"title":"134.67-157.11 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-155.0,-90.0],[-128.778,-90.0],[-129.0,-89.681],[-147.902,-53.0],[-156.572,-13.0],[-154.596,28.0],[-142.109,67.0],[-129.471,89.0],[-130.0,89.0],[-156.0,88.905],[-173.825,45.0],[-179.544,-2.0],[-173.0,-48.074],[-155.0,-90.0]]],"type":"Polygon"},"properties":{"fill":"#ff4700","fill-opacity":0.9,"stroke":"#ff4700","stroke-opacity":1,"stroke-width":1,"title":"157.11-179.56 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[129.0,-90.0],[155.371,-90.0],[155.946,-89.0],[173.563,-46.0],[179.0,-14.0],[173.295,47.0],[155.946,89.0],[155.0,89.0],[129.471,89.0],[130.0,88.226],[148.256,52.0],[156.652,12.0],[154.411,-29.0],[141.633,-68.0],[129.0,-90.0]]],"type":"Polygon"},"properties":{"fill":"#ff4700","fill-opacity":0.9,"stroke":"#ff4700","stroke-opacity":1,"stroke-width":1,"title":"157.11-179.56 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[-179.0,-90.0],[-155.371,-90.0],[-155.946,-89.0],[-173.563,-46.0],[-179.556,0.0],[-173.563,46.0],[-156.0,89.0],[-180.0,89.0],[-180.0,88.0],[-179.0,-90.0]]],"type":"Polygon"},"properties":{"fill":"#bf0000","fill-opacity":0.9,"stroke":"#bf0000","stroke-opacity":1,"stroke-width":1,"title":"179.56-202.00 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[156.0,-90.0],[179.0,-90.0],[179.0,-89.0],[179.0,-14.11],[178.928,-15.0],[169.0,-60.655],[156.0,-90.0]]],"type":"Polygon"},"properties":{"fill":"#bf0000","fill-opacity":0.9,"stroke":"#bf0000","stroke-opacity":1,"stroke-width":1,"title":"179.56-202.00 [unit]"},"type":"Feature"},{"geometry":{"coordinates":[[[179.0,14.11],[179.0,89.0],[178.0,89.0],[155.946,89.0],[156.0,88.905],[173.825,45.0],[179.0,14.11]]],"type":"Polygon"},"properties":{"fill":"#bf0000","fill-opacity":0.9,"stroke":"#bf0000","stroke-opacity":1,"stroke-width":1,"title":"179.56-202.00 [unit]"},"type":"Feature"}],"type":"FeatureCollection"}
Loading

0 comments on commit 7edf3ad

Please sign in to comment.