<div dir="ltr"><div><div>Dear All,<br><br></div>I am currently learning Overpass API (I need this in order to do my job). I have a query :</div><div><br></div><div>I can extract the state boundary of Maharashtra by doing :</div><div><br>area[name = Maharashtra];<br>rel(area)[boundary = administrative][admin_level=4];<br>(._;>;);<br>out body;<br></div><div><br></div><div><div>I can extract the boundries of districts of Maharashtra by doing :</div><div><br></div>area[name = Maharashtra];<br>rel(area)[boundary = administrative][admin_level=5];<br>(._;>;);<br>out body;<br></div><div><br></div><div>(Please note :  I am doing the above 2 queries in <a href="http://overpass-turbo.eu/">http://overpass-turbo.eu/</a> )</div><div><br></div><div>Query 1 : Why does the boundary returned by the 2nd code chunk - corresponding to districts of Maharashtra - not include Mumbai ?</div><div><br></div><div>Query 2 : I want ONE map  of both the state and the district boundaries. To this I do :</div><div><br></div><div>area[name = Maharashtra];<br>(rel(area)[boundary = administrative][admin_level=4];<br>rel(area)[boundary = administrative][admin_level=5];);<br>(._;>;);<br>out body;<br>  <br></div><div>Basically I have taken the union ie. ( ... ) of the statements for State and District boundaries. <br></div><div><br></div><div>My query is that I am ONLY seeing the state level boundaries. Why is the union not giving me the union of the state and district boundaries ?</div><div><br></div><div>Best Regards,</div><div>Ashim<br></div><div><br></div><div><br></div></div>