# Z-Order 0\r
("boundary", "administrative", "admin_level", ["8", "9", "10", "12"], "landuse", "residential-boundary"),\r
# Z-Order 1\r
- ("landuse", "grass", "landuse", "grass"),\r
- ("landuse", "cemetery", "landuse", "grass"),\r
- ("landuse", "greenfield", "landuse", "grass"),\r
("landuse", "orchard", "landuse", "meadow"),\r
("landuse", "meadow", "landuse", "meadow"),\r
("landuse", "recreation_ground", "landuse", "meadow"),\r
("building", "yes", "building", "common"),\r
("place", "sea", "natural", "sea"),\r
("place", "ocean", "natural", "sea"),\r
- ("landuse", "residential", "landuse", "residential-boundary")\r
+ ("landuse", "residential", "landuse", "residential-boundary"),\r
+ ("landuse", "grass", "landuse", "grass"),\r
+ ("landuse", "cemetery", "landuse", "grass"),\r
+ ("landuse", "greenfield", "landuse", "grass")\r
]\r
\r
\r
for y in range(img.height):\r
for x in range(img.width):\r
c = imgp[x,y]\r
- nc = (c[0], c[1], c[2], int(imgp[x,y][3]*0.25))\r
+ nc = (c[0], c[1], c[2], int(imgp[x,y][3]*0.5))\r
imgp[x,y] = nc\r
lx = randrange( self._imgsize - img.width ) \r
ly = randrange( self._imgsize - img.height )\r