Skip to content

Commit

Permalink
v.select example: show selected areas in yellow (OSGeo#44)
Browse files Browse the repository at this point in the history
This is a cosmetic change for better visibility.
  • Loading branch information
neteler authored Jul 9, 2019
1 parent d0764c6 commit b169903
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions vector/v.select/v.select.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ <h3>OVERLAP: features partially or completely overlap (using GRASS)</h3>
d.vect map=boxgrid fill_color=85:130:176
v.select ainput=boxgrid binput=zipcodes_wake output=v_select_OVERLAP operator=overlap
d.vect map=v_select_OVERLAP
d.vect map=zipcodes_wake type=boundary color=50:50:50
d.vect map=zipcodes_wake type=boundary color=255:255:50
</pre></div>

<center>
<img src="v_select_op_overlap.png" alt="v.select with OVERLAP operator"><br>
v.select with OVERLAP operator: selected grid boxes shown in grey
v.select with OVERLAP operator: selected grid boxes shown in yellow (using GRASS method)
</center>

<h3>OVERLAPS features spatially overlap (using GEOS)</h3>
Expand All @@ -79,11 +79,11 @@ <h3>OVERLAPS features spatially overlap (using GEOS)</h3>
d.vect map=boxgrid fill_color=85:130:176
v.select ainput=boxgrid binput=zipcodes_wake output=v_select_OVERLAPS operator=overlaps
d.vect map=v_select_OVERLAPS
d.vect map=zipcodes_wake type=boundary color=50:50:50
d.vect map=zipcodes_wake type=boundary color=255:255:50
</pre></div>
<center>
<img src="v_select_op_overlaps.png" alt="v.select with OVERLAPS operator"><br>
v.select with OVERLAPS operator: selected grid boxes shown in grey
v.select with OVERLAPS operator: selected grid boxes shown in yellow (using GEOS method)
</center>


Expand All @@ -96,12 +96,12 @@ <h3>DISJOINT: features do not spatially intersect (using GEOS)</h3>
d.vect map=boxgrid fill_color=85:130:176
v.select ainput=boxgrid binput=zipcodes_wake output=v_select_DISJOINT operator=disjoint
d.vect map=v_select_DISJOINT
d.vect map=zipcodes_wake type=boundary color=50:50:50
d.vect map=zipcodes_wake type=boundary color=255:255:50
</pre></div>

<center>
<img src="v_select_op_disjoint.png" alt="v.select with DISJOINT operator"><br>
v.select with DISJOINT operator: selected grid boxes shown in grey
v.select with DISJOINT operator: selected grid boxes shown in yellow
</center>


Expand All @@ -114,12 +114,12 @@ <h3>EQUALS: features are spatially equals (using GEOS)</h3>
v.extract input=zipcodes_wake where=ZIPCODE_ID=35 output=zipcodeID35
v.select ainput=zipcodes_wake binput=zipcodeID35 output=v_select_EQUALS operator=equals
d.vect map=v_select_EQUALS
d.vect map=zipcodes_wake type=boundary color=50:50:50
d.vect map=zipcodes_wake type=boundary color=255:255:50
</pre></div>

<center>
<img src="v_select_op_equals.png" alt="v.select with EQUALS operator"><br>
v.select with EQUALS operator: selected grid boxes shown in grey
v.select with EQUALS operator: selected grid boxes shown in yellow
</center>


Expand All @@ -132,12 +132,12 @@ <h3>INTERSECTS: features spatially intersect (using GEOS)</h3>
d.vect map=boxgrid fill_color=85:130:176
v.select ainput=zipcodes_wake binput=boxgrid output=v_select_INTERSECTS operator=intersects
d.vect map=v_select_INTERSECTS
d.vect map=boxgrid type=boundary color=50:50:50
d.vect map=boxgrid type=boundary color=255:255:50
</pre></div>

<center>
<img src="v_select_op_intersects.png" alt="v.select with INTERSECTS operator"><br>
v.select with INTERSECTS operator: selected grid boxes shown in grey
v.select with INTERSECTS operator: selected grid boxes shown in yellow
</center>


Expand All @@ -150,12 +150,12 @@ <h3>TOUCHES: features spatially touches (using GEOS)</h3>
d.vect map=zipcodeID35 fill_color=85:130:176
v.select ainput=zipcodes_wake binput=zipcodeID35 output=v_select_TOUCHES operator=touches
d.vect map=v_select_TOUCHES
d.vect map=zipcodes_wake type=boundary color=50:50:50
d.vect map=zipcodes_wake type=boundary color=255:255:50
</pre></div>

<center>
<img src="v_select_op_touches.png" alt="v.select with TOUCHES operator"><br>
v.select with TOUCHES operator: selected polygons shown in grey (blue: input polygon)
v.select with TOUCHES operator: selected polygons shown in yellow (blue: input polygon)
</center>


Expand All @@ -168,13 +168,13 @@ <h3>CROSSES: features spatially crosses (using GEOS)</h3>
d.vect map=busroute1 color=200:27:27 width=3
v.select ainput=zipcodes_wake binput=busroute1 output=v_select_CROSSES operator=crosses
d.vect map=v_select_CROSSES
d.vect map=zipcodes_wake type=boundary color=50:50:50
d.vect map=zipcodes_wake type=boundary color=255:255:50
d.vect map=busroute1 color=200:27:27 width=3
</pre></div>

<center>
<img src="v_select_op_crosses.png" alt="v.select with CROSSES operator"><br>
v.select with CROSSES operator: selected polygons shown in grey (red: input lines)
v.select with CROSSES operator: selected polygons shown in yellow (red: input lines)
</center>


Expand All @@ -191,7 +191,7 @@ <h3>WITHIN feature A is completely inside feature B (using GEOS)</h3>

<center>
<img src="v_select_op_within.png" alt="v.select with WITHIN operator"><br>
v.select with WITHIN operator: selected polygons shown in grey (blue: input polygons)
v.select with WITHIN operator: selected polygons shown in yellow (blue: input polygons)
</center>


Expand All @@ -211,7 +211,7 @@ <h4>CONTAINS with polygons</h4>

<center>
<img src="v_select_op_contains_pol.png" alt="v.select with CONTAINS operator"><br>
v.select with CONTAINS operator: selected polygon shown in grey (blue: input polygon, not visible)
v.select with CONTAINS operator: selected polygon shown in yellow (blue: input polygon, not visible)
</center>

<h4>CONTAINS with points</h4>
Expand All @@ -227,7 +227,7 @@ <h4>CONTAINS with points</h4>

<center>
<img src="v_select_op_contains_pnts.png" alt="v.select with CONTAINS operator"><br>
v.select with CONTAINS operator: selected polygons shown in grey (red: input points)
v.select with CONTAINS operator: selected polygons shown in yellow (red: input points)
</center>


Expand Down
Binary file modified vector/v.select/v_select_op_contains_pnts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vector/v.select/v_select_op_contains_pol.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vector/v.select/v_select_op_crosses.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vector/v.select/v_select_op_disjoint.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vector/v.select/v_select_op_equals.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vector/v.select/v_select_op_intersects.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vector/v.select/v_select_op_overlap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vector/v.select/v_select_op_overlaps.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vector/v.select/v_select_op_touches.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vector/v.select/v_select_op_within.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b169903

Please sign in to comment.