VECAPPEND

Append database vector segments


EnvironmentsPYTHON :: EASI :: MODELER
Quick linksDescription :: Parameters :: Parameter descriptions :: Details :: Example :: Related

Back to top

Description


VECAPPEND appends one or more vector segments from one image database file to a vector segment in another image database file.
Back to top

Parameters


vecappend(fili, filo, dbiv, dbov)

Name Type Caption Length Value range
FILI * str Input file name 1 -    
FILO * str Output file name 1 -    
DBIV * List[int] Vector segment(s) to be appended 1 -    
DBOV * List[int] Vector segment to append to 1 - 1  

* Required parameter
Back to top

Parameter descriptions

FILI

Specifies the name of the GDB-supported input file containing the vector segment(s) to be appended.

FILO

Specifies the name of the GDB-supported file that will store the appended vector segment(s).

DBIV

Specifies the input vector segments to be appended.

DBOV

Specifies the vector layer to which the input vector segment(s) will be appended.

The output vector segment must exist in the output file (FILO).

Back to top

Details

VECAPPEND appends vector segment(s) from one image file to a vector segment in another image file.

Only one output vector segment is allowed.

Back to top

Example

Append vector shapes from vector segments 25 and 26 of irvine.pix into vector segment 28 in new.pix.

from pci.vecappend import vecappend

fili="irvine.pix"
dbiv=[25,26]
filo="new.pix"
dbov=[28]

vecappend( fili, filo, dbiv, dbov )

© PCI Geomatics Enterprises, Inc.®, 2026. All rights reserved.