~ubuntu-branches/ubuntu/wily/grass/wily

« back to all changes in this revision

Viewing changes to vector/v.select/description.html

Tags: 7.0.0~rc1+ds1-1~exp1
* New upstream release candidate.
* Repack upstream tarball, remove precompiled Python objects.
* Add upstream metadata.
* Update gbp.conf and Vcs-Git URL to use the experimental branch.
* Update watch file for GRASS 7.0.
* Drop build dependencies for Tcl/Tk, add build dependencies:
  python-numpy, libnetcdf-dev, netcdf-bin, libblas-dev, liblapack-dev
* Update Vcs-Browser URL to use cgit instead of gitweb.
* Update paths to use grass70.
* Add configure options: --with-netcdf, --with-blas, --with-lapack,
  remove --with-tcltk-includes.
* Update patches for GRASS 7.
* Update copyright file, changes:
  - Update copyright years
  - Group files by license
  - Remove unused license sections
* Add patches for various typos.
* Fix desktop file with patch instead of d/rules.
* Use minimal dh rules.
* Bump Standards-Version to 3.9.6, no changes.
* Use dpkg-maintscript-helper to replace directories with symlinks.
  (closes: #776349)
* Update my email to use @debian.org address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<h2>DESCRIPTION</h2>
2
 
 
3
 
<em>v.select</em> allows the user to select features from a vector 
4
 
by features from another one.
5
 
 
6
 
<h2>NOTES</h2>
7
 
 
8
 
Only features with category numbers will be considered. If required
9
 
the <em>v.category</em> module can be used to add them. Typically
10
 
boundaries do not need to be given a category number, as an area's
11
 
attributes are inherited from the centroid. Typically points, lines, and
12
 
centroids will always want to have a cat number.
13
 
<p>
14
 
e.g. take a road which separates two farms. It is ambiguous as to which
15
 
farm an attribute that is attached to the road belongs to. The boundary
16
 
only needs a cat number if it will hold its own attributes, such as road
17
 
name or pavement form. A centroid in each paddock holds the information
18
 
with respect to ownership, area, etc.
19
 
 
20
 
 
21
 
<h2>EXAMPLES</h2>
22
 
 
23
 
Extract forest fire points from larger fire map:
24
 
 
25
 
<div class="code"><pre>
26
 
v.select ainput=fire binput=forest output=forest_fire
27
 
</pre></div>
28
 
<P>
29
 
 
30
 
Extract Italian rivers from VMAP0 watercourses map:
31
 
 
32
 
<div class="code"><pre>
33
 
v.select ainput=watrcrsl_eurnasia_wgs84 binput=italy_area \
34
 
         output=watrcrsl_italy operator=overlap
35
 
</pre></div>
36
 
 
37
 
 
38
 
<h2>SEE ALSO</h2>
39
 
 
40
 
<em>
41
 
<a HREF="v.category.html">v.category</a>,
42
 
<a HREF="v.overlay.html">v.overlay</a>,
43
 
<a HREF="sql.html">GRASS SQL interface</a></em>
44
 
 
45
 
 
46
 
<h2>AUTHORS</h2>
47
 
 
48
 
Radim Blazek
49
 
 
50
 
<p>
51
 
<i>Last changed: $Date: 2008-12-13 18:43:05 +0100 (Sat, 13 Dec 2008) $</i>