Return the name of the layer for the feature.
(self)
| 69 | |
| 70 | @property |
| 71 | def layer_name(self): |
| 72 | "Return the name of the layer for the feature." |
| 73 | name = capi.get_feat_name(self._layer._ldefn) |
| 74 | return force_str(name, self.encoding, strings_only=True) |
| 75 | |
| 76 | @property |
| 77 | def num_fields(self): |
nothing calls this directly
no test coverage detected