Class LayerMapping
A class that maps OGR Layers to GeoDjango Models.
Declaration
class LayerMapping
source linkDocumentation
Methods
▶ def __init__(self, model, data, mapping, layer=0, source_srs=None, encoding='utf-8', ...) A LayerMapping object is initialized using the given Model (not an instance),
def __init__(
self,
model,
data,
mapping,
layer=0,
source_srs=None,
encoding='utf-8',
transaction_mode='commit_on_success',
transform=True,
unique=None,
using=None,
)
a DataSource (or string path to an OGR-supported data file), and a mapping
dictionary. See the module level docstring for more details and keyword
argument usage.
▷ def check_layer(self) Check the Layer metadata and ensure that it's compatible with the mapping information and model. Unlike previous revisions, there is no need to increment through each feature in the Layer.
▷ def check_srs(self, source_srs) Check the compatibility of the given spatial reference object.
▷ def check_unique(self, unique) Check the `unique` keyword parameter -- may be a sequence or string.
▷ def feature_kwargs(self, feat) Given an OGR Feature, return a dictionary of keyword arguments for constructing the mapped model.
▷ def geometry_field(self) Return the GeometryField instance associated with the geographic column.
▷ def make_multi(self, geom_type, model_field) Given the OGRGeomType for a geometry and its associated GeometryField, determine whether the geometry should be turned into a GeometryCollection.
▶ def save(self, verbose=False, fid_range=False, step=False, progress=False, ...) Save the contents from the OGR DataSource Layer into the database according to the mapping dictionary given at initialization.
def save(
self,
verbose=False,
fid_range=False,
step=False,
progress=False,
silent=False,
stream=sys.stdout,
strict=False,
)
Keyword Parameters:
verbose:
If set, information will be printed subsequent to each model save
executed on the database.
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.
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.
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 pe printed every 1000 features processed,
however, this default may be overridden by setting this keyword with an
integer for the desired interval.
stream:
Status information will be written to this file handle. Defaults to
using `sys.stdout`, but any object with a `write` method is supported.
silent:
By default, non-fatal error notifications are printed to stdout, but
this keyword may be set to disable these notifications.
strict:
Execution of the model mapping will cease upon the first error
encountered. The default behavior is to attempt to continue.
▷ def unique_kwargs(self, kwargs) Given the feature keyword arguments (from `feature_kwargs`), construct and return the uniqueness keyword arguments -- a subset of the feature kwargs.
▷ def verify_fk(self, feat, rel_model, rel_mapping) Given an OGR Feature, the related model and its dictionary mapping, retrieve the related model for the ForeignKey mapping.
▷ def verify_geom(self, geom, model_field) Verify the geometry -- construct and return a GeometryCollection if necessary (for example if the model field is MultiPolygonField while the mapped shapefile only contains Polygons).
▷ def verify_ogr_field(self, ogr_field, model_field) Verify if the OGR Field contents are acceptable to the model field. If they are, return the verified value, otherwise raise an exception.