瀏覽代碼

scripts: add v.to.lines from addons

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@61929 15284696-431f-4ddb-bdfa-cd5b030d7da7
Luca Delucchi 10 年之前
父節點
當前提交
ae86858385
共有 4 個文件被更改,包括 194 次插入0 次删除
  1. 1 0
      scripts/Makefile
  2. 7 0
      scripts/v.to.lines/Makefile
  3. 45 0
      scripts/v.to.lines/v.to.lines.html
  4. 141 0
      scripts/v.to.lines/v.to.lines.py

+ 1 - 0
scripts/Makefile

@@ -68,6 +68,7 @@ SUBDIRS = \
 	v.report \
 	v.out.gps \
 	v.pack \
+        v.to.lines \
 	v.unpack \
 	v.what.vect \
 	wxpyimgview \

+ 7 - 0
scripts/v.to.lines/Makefile

@@ -0,0 +1,7 @@
+MODULE_TOPDIR = ../..
+
+PGM = v.to.lines
+
+include $(MODULE_TOPDIR)/include/Make/Script.make
+
+default: script

+ 45 - 0
scripts/v.to.lines/v.to.lines.html

@@ -0,0 +1,45 @@
+<h2>DESCRIPTION</h2>
+
+<em>v.to.lines</em> converts vector polygons (boundaries) to lines as well
+as vector points to lines via triangulations.
+
+<h2>NOTES</h2>
+
+<em>v.to.lines</em> is able to convert point data (via triangulation)
+and areas to lines (via boundary to line conversion).
+
+This script is a wrapper script to <em>>v.category</em>,
+<em>v.delaunay</em>, and <em>v.edit</em>.
+
+<h2>EXAMPLES</h2>
+
+The examples are for the North Carolina sample dataset location:
+
+<h3>Area to line conversion</h3>
+
+<div class="code"><pre>
+v.to.lines input=boundary_municp output=boundary_municp_lines
+</pre></div>
+
+<h3>Point to line conversion</h3>
+<div class="code"><pre>
+v.to.lines input=geodetic_pts output=geodetic_pts_lines
+</pre></div>
+
+
+<h2>SEE ALSO</h2>
+
+<em>
+<a href="v.category.html">v.category</a>,
+<a href="v.delaunay.html">v.delaunay</a>,
+<a href="v.edit.html">v.edit</a>,
+<a href="v.to.points.html">v.to.points</a>,
+<a href="v.type.html">v.type</a>
+</em>
+
+<h2>AUTHOR</h2>
+
+Luca Delucchi, Fondazione Edmund Mach
+
+<p>
+<i>Last changed: $Date$</i>

+ 141 - 0
scripts/v.to.lines/v.to.lines.py

@@ -0,0 +1,141 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+############################################################################
+#
+# MODULE:       v.to.lines (former v.polytoline)
+# AUTHOR(S):    Luca Delucchi
+#               point support added by Markus Neteler
+#
+# PURPOSE:      Converts polygons and points to lines
+# COPYRIGHT:    (C) 2013-2014 by the GRASS Development Team
+#
+#               This program is free software under the GNU General Public
+#               License (version 2). Read the file COPYING that comes with GRASS
+#               for details.
+# TODO
+#    support centroids (treat as points)?
+#############################################################################
+
+#%module
+#% description: Converts vector polygons or points to lines.
+#% keywords: vector
+#% keywords: geometry
+#%end
+
+#%option G_OPT_V_INPUT
+#%end
+
+#%option G_OPT_V_OUTPUT
+#%end
+
+#%option
+#% key: method
+#% type: string
+#% description: Method used for point interpolation
+#% options: delaunay
+#% answer: delaunay
+#% guisection: Area
+#%end
+
+import grass.script as grass
+import os
+import sys
+
+
+def main():
+    # Get the options
+    input = options["input"]
+    output = options["output"]
+    method = options["method"]
+    min_cat = None
+    max_cat = None
+    point = None
+    overwrite = grass.overwrite()
+
+    quiet = True
+
+    if grass.verbosity() > 2:
+        quiet = False
+
+    in_info = grass.vector_info(input)
+    # check for wild mixture of vector types
+    if in_info['points'] > 0 and in_info['boundaries'] > 0:
+        grass.fatal(_("The input vector map contains both polygons and points,"
+                      " cannot handle mixed types"))
+
+    pid = os.getpid()
+    # process points via triangulation, then exit
+    if in_info['points'] > 0:
+        point = True
+        layer = 1  # hardcoded for now
+        out_temp = '{inp}_point_tmp_{pid}'.format(inp=input, pid=pid)
+        if method == 'delaunay':
+            grass.message(_("Processing point data (%d points found)...") % in_info['points'])
+            grass.run_command('v.delaunay', input=input, layer=layer,
+                              output=out_temp, quiet=quiet)
+
+        grass.run_command('v.db.addtable', map=out_temp, quiet=True)
+        input = out_temp
+        in_info = grass.vector_info(input)
+
+    # process areas
+    if in_info['areas'] == 0 and in_info['boundaries'] == 0:
+        grass.fatal(_("The input vector map does not contain polygons"))
+
+    out_type = '{inp}_type_{pid}'.format(inp=input, pid=pid)
+    input_tmp = '{inp}_tmp_{pid}'.format(inp=input, pid=pid)
+    remove_names = "%s,%s" % (out_type, input_tmp)
+    grass.message(_("Processing area data (%d areas found)...") % in_info['areas'])
+    if 0 != grass.run_command('v.category', layer="2", type='boundary',
+                              option='add', input=input, out=input_tmp,
+                              quiet=quiet):
+        grass.run_command('g.remove', vect=input_tmp, quiet=quiet)
+        grass.fatal(_("Error creating layer 2"))
+    if 0 != grass.run_command('v.db.addtable', map=input_tmp, layer="2",
+                              columns="left integer,right integer",
+                              quiet=quiet):
+        grass.run_command('g.remove', vect=input_tmp, quiet=quiet)
+        grass.fatal(_("Error creating new table for layer 2"))
+    if 0 != grass.run_command('v.to.db', map=input_tmp, option="sides",
+                              columns="left,right", layer="2", quiet=quiet):
+        grass.run_command('g.remove', vect=input_tmp, quiet=quiet)
+        grass.fatal(_("Error populating new table for layer 2"))
+
+    if 0 != grass.run_command('v.type', input=input_tmp, output=out_type,
+                              from_type='boundary', to_type='line',
+                              quiet=quiet, layer="2"):
+        grass.run_command('g.remove', vect=remove_names, quiet=quiet)
+        grass.fatal(_("Error converting polygon to line"))
+    report = grass.read_command('v.category', flags='g', input=out_type,
+                                option='report', quiet=quiet).split('\n')
+    for r in report:
+        if r.find('centroid') != -1:
+            min_cat = report[0].split()[-2]
+            max_cat = report[0].split()[-1]
+            break
+    if min_cat and max_cat:
+        if 0 != grass.run_command('v.edit', map=out_type, tool='delete',
+                                  type='centroid', layer=2, quiet=quiet,
+                                  cats='{mi}-{ma}'.format(mi=min_cat, ma=max_cat)):
+            grass.run_command('g.remove', vect=remove_names, quiet=quiet)
+            grass.fatal(_("Error removing centroids"))
+
+    try:
+        if 0 != grass.run_command('v.db.droptable', map=out_type, layer=1,
+                                  flags='f', quiet=True):
+            grass.run_command('g.remove', vect=remove_names, quiet=quiet)
+            grass.fatal(_("Error removing table from layer 1"))
+    except:
+        grass.warning(_("No table for layer %d" % 1))
+    if 0 != grass.run_command('v.category', input=out_type, option='transfer',
+                              output=output, layer="2,1", quiet=quiet,
+                              overwrite=overwrite):
+        grass.run_command('g.remove', vect=remove_names, quiet=quiet)
+        grass.fatal(_("Error adding categories"))
+    grass.run_command('g.remove', vect=remove_names, quiet=quiet)
+    if point:
+        grass.run_command('g.remove', vect=out_temp, quiet=quiet)
+
+if __name__ == "__main__":
+    options, flags = grass.parser()
+    main()