LayerMapping.save(verbose=False, fid_range=False, step=False, progress=False, silent=False, stream=sys.stdout, strict=False)
The save()
method also accepts keywords. These keywords are used for controlling output logging, error handling, and for importing specific feature ranges.
Save Keyword Arguments | Description |
---|---|
fid_range | May be set with a slice or tuple of (begin, end) feature ID’s to map from the data source. In other words, this keyword enables the user to selectively import a subset range of features in the geographic data source. |
progress | When this keyword is set, status information will be printed giving the number of features processed and successfully saved. By default, progress information will be printed every 1000 features processed, however, this default may be overridden by setting this keyword with an integer for the desired interval. |
silent | By default, non-fatal error notifications are printed to sys.stdout , but this keyword may be set to disable these notifications. |
step | If set with an integer, transactions will occur at every step interval. For example, if step=1000 , a commit would occur after the 1,000th feature, the 2,000th feature etc. |
stream | Status information will be written to this file handle. Defaults to using sys.stdout , but any object with a write method is supported. |
strict | Execution of the model mapping will cease upon the first error encountered. The default value (False ) behavior is to attempt to continue. |
verbose | If set, information will be printed subsequent to each model save executed on the database. |
Please login to continue.