Hi Andranik,<br><br>I'd really recommend reading the manual to g.region. If you're using the GUI, just open the manual tab among all the tabs at the top. Otherwise, it's also available here: <br><br><a href="http://ludique.u-bourgogne.fr/grass/grass65/manuals/html65_user/g.region.html">http://ludique.u-bourgogne.fr/grass/grass65/manuals/html65_user/g.region.html</a><br>

<br>What the printout you've posted is the following, I'll comment on it line for line:<br><br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div><div>projection: 0 (x,y)</div></div></blockquote><div>Apparently  you're not working in a projection, your region is in an arbitrary lat/lon location.<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div><div>zone:       0</div></div></blockquote><div>There is no zone assigned because it's not a projection with zones like e.g. UTM <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div><div>north:      4569989.25</div></div></blockquote><div>The northernmost border of your region is at 4569989.25 in whatever unit your projection works with, probably meters. <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div><div>south:      4357350.75</div></div></blockquote><div>This is the southernmost border.<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>
<div>west:       436605.75</div></div></blockquote><div>This is the westernmost border. <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div>east:       670334.25</div>

</div></blockquote><div>This is the easternmost border. <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div>nsres:      28.5</div></div></blockquote><div>

The north-to-south resolution is 28.5 map units, so if you're working e.g. with a raster your cells would be 28.5 m across if your map units are meters. <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div><div>ewres:      28.5</div></div></blockquote><div>The east-to-west resolution is the same as the north-to-west resolution. <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div><div>rows:       7461</div></div></blockquote><div>There's a total of 7461 rows in your region. <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>

<div>cols:       8201</div></div></blockquote><div>And 8201 columns. <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div>cells:      61187661</div></div>

</blockquote><div> That makes for a total of 61187661 cells (7461 x 8201 = 61187661).<br><br>So if you're wanting to split your region into two regions that have the same length north to south and are divided in the middle of your original region, you could e.g. move the eastern border to the west, thus "cutting off" the eastern half of the region:<br>

g.region e=553470<br>and then put the western border there and move the eastern border back to where it was, after you're done working on region 1.<br>g.region w=553470 e=670334.25<br><br>Hope that helps!<br>Daniel<br>

</div></div></div>