Outdated version of the documentation. Find the latest one here.

` `

Geoprocesamiento OGC

Cortar vectores por extensión

Descripción

Clips any OGR-supported vector file to a given extent. The algorithm is derived from the ogr2ogr utility .

Parametros

Capa de entrada [vector: cualquiera]
Input vector layer.
Extensión de corte [extent]

Defines the bounding box that should be used for the output vector file. It has to be defined in target CRS units.

Por defecto: 0,1,0,1

Additional creation Options [string]

Opcional

<colocar la descripción de parámetros aquí>

Por defecto: (no establecer)

Salidas

Capa de salida [vector]

Capa vector de salida.

Uso de la consola

processing.runalg('gdalogr:clipvectorsbyextent', input_layer, clip_extent, options, output_layer)

Ver también

Cortar vectoriales con polígonos

Descripción

Clips any OGR-supported vector layer by a polygon. The algorithm is derived from the ogr2ogr utility .

Parametros

Capa de entrada [vector: cualquiera]
Input vector layer.
Capa a cortar [vector: polygon]
Layer to be used as clipping extent for the input vector layer.
Additional creation Options [string]

Opcional

<colocar la descripción de parámetros aquí>

Por defecto: (no establecer)

Salidas

Capa de salida [vector]
Output vector layer. By default this is an ESRI Shapefile.

Uso de la consola

processing.runalg('gdalogr:clipvectorsbypolygon', input_layer, clip_layer, options, output_layer)

Ver también