FeatureClass¶
| CLASS | DESCRIPTION |
|---|---|
AttributeRuleManager |
Handler for interacting with AttributeRules on a FeatureClass or Table |
FeatureClass |
A Wrapper for ArcGIS FeatureClass objects |
Table |
A Wrapper for ArcGIS Table objects |
| FUNCTION | DESCRIPTION |
|---|---|
as_dict |
Take a Cusrsor object and yield rows from it |
count |
Get the record count of a FeatureClass |
extract_singleton |
Helper function to allow passing single values to arguments that expect a tuple |
filter_fields |
Decorator for filter functions that limits fields checked by the SearchCursor |
format_query_list |
Format a list of values into a SQL list |
norm |
Normalize a value for SQL query (wrap strings in single quotes) |
valid_field |
Validate a fieldname |
where |
Wrap a string in a WhereClause object to use with indexing |
| ATTRIBUTE | DESCRIPTION |
|---|---|
FieldName |
Alias for string that specifies the function needs a valid fieldname
|
FilterFunc |
The expected type signature for function indexing
|
RowRecord |
Alias for a dictionary of fieldnames and field values
|
FieldName
module-attribute
¶
FieldName = str
Alias for string that specifies the function needs a valid fieldname
FilterFunc
module-attribute
¶
The expected type signature for function indexing
-
Modules
FeatureClass
filter_fields
RowRecord
module-attribute
¶
Alias for a dictionary of fieldnames and field values
- Modules FeatureClass
-
Modules
FeatureClass
as_dict
AttributeRuleManager
¶
AttributeRuleManager(parent: Table[Any] | FeatureClass)
Handler for interacting with AttributeRules on a FeatureClass or Table
| METHOD | DESCRIPTION |
|---|---|
__setitem__ |
The primary method for interacting with attribute rules |
delete_attribute_rule |
Delete provided attribute rules from the ruleset |
disable_attribute_rule |
Disable provided attribute rules from the ruleset |
enable_attribute_rule |
Enable provided attribute rules in the ruleset |
export_rules |
Write attribute rules out to a structured directory |
import_rules |
Import attribute rules that were previously exported to the filesystem for editing |
sync |
Sync the rules in this FeatureClass/Table instance with those of another overwriting |
Source code in src/arcpie/featureclass.py
2161 2162 | |
__setitem__
¶
__setitem__(
rule_name: str, new_rule: AttributeRule
) -> None
The primary method for interacting with attribute rules
The setitem override will take any dictionary that contains the keys expected by
the AttributeRule definition. Alteration or Addition is determined and applied
depending on the name of the rule and its state compared to the matching rule in
the current ruleset.
Example
>>> fc.attribute_rules.names
['Rule A', 'Rule B']
>>> fc.attribute_rules['Rule A'] = {'isEnabled': False}
Source code in src/arcpie/featureclass.py
2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 | |
delete_attribute_rule
¶
delete_attribute_rule(
*rule_name: str, delete_all: bool = False
) -> None
Delete provided attribute rules from the ruleset
| PARAMETER | DESCRIPTION |
|---|---|
|
The rule names to delete as positional varargs
TYPE:
|
|
If this flag is set, the noarg case will delete all rules (default: False)
TYPE:
|
Source code in src/arcpie/featureclass.py
2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 | |
disable_attribute_rule
¶
disable_attribute_rule(
*rule_name: str, disable_all: bool = False
) -> None
Disable provided attribute rules from the ruleset
| PARAMETER | DESCRIPTION |
|---|---|
|
The rule names to delete as positional varargs
TYPE:
|
|
If this flag is set, the noarg case will disable all rules (default: False)
TYPE:
|
Source code in src/arcpie/featureclass.py
2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 | |
enable_attribute_rule
¶
enable_attribute_rule(
*rule_name: str, enable_all: bool = False
) -> None
Enable provided attribute rules in the ruleset
| PARAMETER | DESCRIPTION |
|---|---|
|
The rule names to delete as positional varargs
TYPE:
|
|
If this flag is set, the noarg case will enable all rules (default: False)
TYPE:
|
Source code in src/arcpie/featureclass.py
2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 | |
export_rules
¶
Write attribute rules out to a structured directory
| PARAMETER | DESCRIPTION |
|---|---|
|
The target directory to dump all attribute rules and configs to |
Note
out_dir -> fc_name -> [rule_name.cfg, rule_name.js]
Source code in src/arcpie/featureclass.py
2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 | |
import_rules
¶
import_rules(
src_dir: Path | str,
*,
strict: bool = False,
disable: bool = False,
) -> Iterator[AttributeRule]
Import attribute rules that were previously exported to the filesystem for editing
| PARAMETER | DESCRIPTION |
|---|---|
|
The directory that contains the |
|
Delete any attribute rules in the FeatureClass that do not have a matching file (default: False)
TYPE:
|
|
Disable any attribute rules in the FeatureClass that do not have a matching file (default: False)
TYPE:
|
Note
the disable option will be ignored if strict is not set
Source code in src/arcpie/featureclass.py
2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 | |
sync
¶
sync(target: FeatureClass | Table) -> None
Sync the rules in this FeatureClass/Table instance with those of another overwriting the current ruleset with the targeted ruleset
| PARAMETER | DESCRIPTION |
|---|---|
|
The target ruleset to overwrite the current rules with
TYPE:
|
Source code in src/arcpie/featureclass.py
2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 | |
FeatureClass
¶
FeatureClass(
path: str | Path,
*,
search_options: SearchOptions | None = None,
update_options: UpdateOptions | None = None,
insert_options: InsertOptions | None = None,
clause: SQLClause | None = None,
where: str | None = None,
shape_token: ShapeToken = "SHAPE@",
)
Bases: Table[_Schema], Generic[_GeometryType, _Schema]
A Wrapper for ArcGIS FeatureClass objects
Example
>>> # Initialize FeatureClass with Geometry Type
>>> point_features = FeatureClass[PointGeometry]('<feature_class_path>')
>>> # Create a buffer Iterator
>>> buffers = (pt.buffer(10) for pt in point_features.shapes)
...
>>> sr = SpatialReference(4206)
>>> # Set a new spatial reference
>>> with point_features.reference_as(sr):
... # Consume the Iterator, but with the new reference
... for buffer in buffers:
... area = buffer.area
... units = sr.linearUnitName
... print(f"{area} Sq{units}")
| METHOD | DESCRIPTION |
|---|---|
__contains__ |
Implementation of contains that checks for a field existing in the |
__eq__ |
Determine if the datasource of two featureclass objects is the same |
__getitem__ |
Handle all defined overloads using pattern matching syntax |
__iter__ |
Iterate all rows in the Table or FeatureClass yielding mappings of field name to field value |
__len__ |
Iterate all rows and count them. Only count with |
__repr__ |
Provide a constructor string e.g. |
__str__ |
Return the |
add_field |
Add a new field to a Table or FeatureClass, if no type is provided, deafault of |
add_fields |
Provide a mapping of fieldnames to Fields |
add_to_map |
Add the featureclass to a map |
bind_to_layer |
Update the provided layer's datasource to this Table or FeatureClass |
clear |
Clear all records from the table |
copy |
Create a new FeatureClass instance to prevent overriding a shared resource |
copy_to |
Copy this |
create_annotations |
Create an AnnotationClass for the Features (requires a linked Layer object) |
delete |
Delete the object permanently using arcpy.management.Delete |
delete_field |
Delete a field from a Table or FeatureClass |
delete_identical |
Delete all records that have matching field values |
delete_where |
Delete all records that match the provided where clause |
distinct |
Yield rows of distinct values |
exists |
Check if the Table or FeatureClass actually exists (check for deletion or initialization with bad path) |
fields_as |
Override the default fields for the Table or FeatureClass so all non-explicit Iterators will |
filter |
Apply a function filter to rows in the Table or FeatureClass |
footprint |
Merge all geometry in the featureclass using current SelectionOptions into a single geometry object to use |
from_layer |
Build a FeatureClass object from a layer applying the layer's current selection to the stored cursors |
from_table |
See |
get |
Allows safe indexing of a FeatureClass, see |
get_records |
Generate row dicts with in the form |
get_schema |
Get python code for the Table/FeatureClass schema |
get_transformation |
Get the name of the transformation to convert from feature reference to provided reference |
get_tuples |
Generate tuple rows in the for (val1, val2, ...) for each row in the cursor |
group_by |
Group features by matching field values and yield full records in groups |
has_field |
Check if the field exists in the featureclass or is a valid Token (@[TOKEN]) |
insert_cursor |
See |
insert_record |
Insert a single record into the table |
insert_records |
Provide an iterable of records to insert |
is_empty |
Check if a Table/FeatureClass is empty |
options |
Enter a context block where the supplied options replace the stored options for the |
recalculate_extent |
Recalculate the FeatureClass Extent |
reference_as |
Allows you to temporarily set a spatial reference on SearchCursor and UpdateCursor objects within a context block |
row_updater |
A Bi-Directional generator that yields rows and updates them with the sent value |
search_cursor |
Get a |
select |
If the Table or FeatureClass is bound to a layer, update the layer selection with the active SearchOptions |
spatial_filter |
Apply a spatial filter to the FeatureClass in a context |
unselect |
If the Table or FeatureClass is bound to a layer, Remove layer selection |
update_cursor |
See |
updater |
A wrapper around |
where |
Apply a where clause to a Table or FeatureClass in a context |
| ATTRIBUTE | DESCRIPTION |
|---|---|
attribute_rules |
Get an
TYPE:
|
clause |
Default SQLClause
TYPE:
|
current_reference |
The CURRENT SpatialReference object for the FeatureClass (using
TYPE:
|
da_describe |
Access the da.Describe dictionary for the |
describe |
A describe object fort the FeatureClass
TYPE:
|
editor |
Get an Editor manager for the Table or FeatureClass
TYPE:
|
extent |
Get the stored extent of the FeatureClass
TYPE:
|
field_defs |
Get a mapping of Field properties to fieldnames |
fields |
Tuple of all fieldnames in the FeatureClass with |
insert_options |
Default InsertCursor options
TYPE:
|
is_currently_geographic |
True if the features are CURRENTLY in a Geographic coordiante system (respects
TYPE:
|
is_geographic |
True if the features are in a Geographic coordinate system
TYPE:
|
layer |
A Layer object for the FeatureClass/Table if one is bound
TYPE:
|
name |
The common name of the FeatureClass/Table
TYPE:
|
np_dtypes |
Numpy dtypes for each field
|
oid_field_name |
ObjectID fieldname (ususally FID or OID or ObjectID)
TYPE:
|
parent |
The parent of the Table/FeatureClass (either a Dataset or a Database)
TYPE:
|
path |
The filepath of the FeatureClass/Table
TYPE:
|
py_types |
Get a mapping of the field types for the FeatureClass |
search_options |
Default SearchCursor options
TYPE:
|
shape_extent |
Get a new extent by finding the maximum extent of the current shapes.
TYPE:
|
shape_field_name |
The name for the base shape field of the FeatureClass
TYPE:
|
shape_token |
Set the default
TYPE:
|
shapes |
An iterator of feature shapes
TYPE:
|
spatial_reference |
The SpatialReference object for the FeatureClass
TYPE:
|
subtype_field |
The Subtype field (ususally SUBTYPE or SUBTYPE_CODE, etc.)
TYPE:
|
subtypes |
Result of ListSubtypes, mapping of code to Subtype object |
units |
The unit name of the FeatureClass
TYPE:
|
update_options |
Default UpdateCursor options
TYPE:
|
workspace |
Get the workspace of the
TYPE:
|
Source code in src/arcpie/featureclass.py
1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 | |
attribute_rules
property
¶
attribute_rules: AttributeRuleManager
Get an AttributeRuleManager object bound to the Table/FeatureClass
current_reference
property
¶
current_reference: SpatialReference
The CURRENT SpatialReference object for the FeatureClass (using reference_as will update this value)
da_describe
property
¶
Access the da.Describe dictionary for the Table or FeatureClass
editor
property
¶
editor: Editor
Get an Editor manager for the Table or FeatureClass Will set multiuser_mode to True if the feature can version
field_defs
property
¶
Get a mapping of Field properties to fieldnames
fields
property
¶
Tuple of all fieldnames in the FeatureClass with OID@ and SHAPE@ as first 2
is_currently_geographic
property
¶
is_currently_geographic: bool
True if the features are CURRENTLY in a Geographic coordiante system (respects reference_as)
is_geographic
property
¶
is_geographic: bool
True if the features are in a Geographic coordinate system
layer
property
writable
¶
layer: Layer | None
A Layer object for the FeatureClass/Table if one is bound
shape_extent
property
¶
shape_extent: Extent | None
Get a new extent by finding the maximum extent of the current shapes.
If no features, None is returned will respect the spatial reference applied in a context manager (inherit ref from shapes)
shape_field_name
property
¶
shape_field_name: str
The name for the base shape field of the FeatureClass
shape_token
property
writable
¶
shape_token: ShapeToken
Set the default SHAPE@?? token for iteration. Use SHAPE@ for full shape (default: SHAPE@)
spatial_reference
property
¶
spatial_reference: SpatialReference
The SpatialReference object for the FeatureClass
subtype_field
property
¶
subtype_field: str | None
The Subtype field (ususally SUBTYPE or SUBTYPE_CODE, etc.)
subtypes
property
¶
Result of ListSubtypes, mapping of code to Subtype object
__contains__
¶
Implementation of contains that checks for a field existing in the FeatureClass
Source code in src/arcpie/featureclass.py
1191 1192 1193 1194 | |
__eq__
¶
Determine if the datasource of two featureclass objects is the same
Source code in src/arcpie/featureclass.py
1244 1245 1246 | |
__getitem__
¶
__getitem__(
field: FilterFunc[_Schema],
) -> Iterator[_Schema]
__getitem__(field: WhereClause) -> Iterator[_Schema]
__getitem__(
field: _IndexableTypes
| FilterFunc[_Schema]
| Extent
| GeometryType
| Literal["SHAPE@"],
) -> Iterator[Any]
Handle all defined overloads using pattern matching syntax
| PARAMETER | DESCRIPTION |
|---|---|
|
Yield values in the specified column (values only)
TYPE:
|
|
Yield lists of values for requested columns (requested fields) |
|
Yield tuples of values for requested columns (requested fields) |
|
Yield dictionaries of values for requested columns (requested fields) |
|
Yield dictionaries of values for all features intersecting the specified shape
TYPE:
|
|
Yield rows that match function (all fields)
TYPE:
|
|
Yield rows that match clause (all fields)
TYPE:
|
Example
>>> # Single Field
>>> print(list(fc['field']))
[val1, val2, val3, ...]
>>> # Field Tuple
>>> print(list(fc[('field1', 'field2')]))
[(val1, val2), (val1, val2), ...]
>>> # Field List
>>> print(list(fc[['field1', 'field2']]))
[[val1, val2], [val1, val2], ...]
>>> # Field Set (Row mapping limited to only requested fields)
>>> print(list(fc[{'field1', 'field2'}]))
[{'field1': val1, 'field2': val2}, {'field1': val1, 'field2': val2}, ...]
>>> # Last two options always return all fields in a mapping
>>> # Filter Function (passed to FeatureClass.filter())
>>> print(list(fc[lambda r: r['field1'] == target]))
[{'field1': val1, 'field2': val2, ...}, {'field1': val1, 'field2': val2, ...}, ...]
>>> # Where Clause (Use where() helper function or a WhereClause object)
>>> print(list(fc[where('field1 = target')]))
[{'field1': val1, 'field2': val2, ...}, {'field1': val1, 'field2': val2, ...}, ...]
>>> # Shape Filter (provide a shape to use as a spatial filter on the rows)
>>> print(list(fc[shape]))
[{'field1': val1, 'field2': val2, ...}, {'field1': val1, 'field2': val2, ...}, ...]
>>> # None (Empty Iterator)
>>> print(list(fc[None]))
Source code in src/arcpie/featureclass.py
1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 | |
__iter__
¶
__iter__() -> Iterator[_Schema]
Iterate all rows in the Table or FeatureClass yielding mappings of field name to field value
Note
It was decided to yield mappings because without specifying fields, it is up to the user to deal with the data as they see fit. Yielding tuples in an order that's not defined by the user would be confusing, so a mapping makes it clear exactly what they're accessing
Note
When a single field is specified using the fields_as context, values will be yielded
Source code in src/arcpie/featureclass.py
1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 | |
__len__
¶
__len__() -> int
Iterate all rows and count them. Only count with self.search_options queries.
Note
The __format__('len') spec calls this function. So len(fc) and f'{fc:len}' are the same,
with the caveat that the format spec option returns a string
Warning
This operation will traverse the whole dataset when called! You should not use it in loops:
# Bad
for i, _ in enumerate(fc):
print(f'{i}/{len(fc)}')
# Good
count = len(fc)
for i, _ in enumerate(fc):
print(f'{i}/{count}')
Source code in src/arcpie/featureclass.py
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 | |
__repr__
¶
__repr__() -> str
Provide a constructor string e.g. Table or FeatureClass[Polygon]('path')
Source code in src/arcpie/featureclass.py
1236 1237 1238 | |
__str__
¶
__str__() -> str
Return the Table or FeatureClass path for use with other arcpy methods
Source code in src/arcpie/featureclass.py
1240 1241 1242 | |
add_field
¶
Add a new field to a Table or FeatureClass, if no type is provided, deafault of VARCHAR(255) is used
| PARAMETER | DESCRIPTION |
|---|---|
|
The name of the new field (must not start with a number and be alphanum or underscored)
TYPE:
|
|
A Field object that contains the desired field properties
TYPE:
|
|
Allow passing keyword arguments for field directly (Overrides field arg)
TYPE:
|
Example
>>> new_field = Field(
... field_alias='Abbreviated Month',
... field_type='TEXT',
... field_length='3',
... field_domain='Months_ABBR',
... )
>>> print(fc.fields)
['OID@', 'SHAPE@', 'name', 'year']
>>> fc['month'] = new_field
>>> fc2['month'] = new_field # Can re-use a field definition
>>> print(fc.fields)
['OID@', 'SHAPE@', 'name', 'year', 'month']
Source code in src/arcpie/featureclass.py
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 | |
add_fields
¶
Provide a mapping of fieldnames to Fields
| PARAMETER | DESCRIPTION |
|---|---|
|
A mapping of fieldnames to Field objects |
Example
>>> fields = {'f1': Field(...), 'f2': Field(...)}
>>> fc.add_fields(fields)
>>> fc.fields
['OID@', 'SHAPE@', 'f1', 'f2']
Source code in src/arcpie/featureclass.py
983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 | |
add_to_map
¶
Add the featureclass to a map
Note
If the Table or FeatureClass has a layer, the bound layer will be added to the map. Otherwise a default layer will be added. And the new layer will be bound to the Table or FeatureClass
| PARAMETER | DESCRIPTION |
|---|---|
|
The map to add the featureclass to
TYPE:
|
Source code in src/arcpie/featureclass.py
1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 | |
bind_to_layer
¶
bind_to_layer(layer: Layer) -> None
Update the provided layer's datasource to this Table or FeatureClass
| PARAMETER | DESCRIPTION |
|---|---|
|
The layer to update connection properties for
TYPE:
|
Raises: ValueError
Source code in src/arcpie/featureclass.py
1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 | |
clear
¶
clear() -> None
Clear all records from the table
Source code in src/arcpie/featureclass.py
1031 1032 1033 1034 1035 | |
copy
¶
copy() -> FeatureClass[_GeometryType, _Schema]
Create a new FeatureClass instance to prevent overriding a shared resource
Source code in src/arcpie/featureclass.py
2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 | |
copy_to
¶
Copy this Table or FeatureClass to a new workspace
| PARAMETER | DESCRIPTION |
|---|---|
|
The path to the workspace
TYPE:
|
|
Copy the cursor options to the new
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Table or FeatureClass
|
A |
Example
>>> new_fc = fc.copy('workspace2')
>>> new_fc == fc
False
Source code in src/arcpie/featureclass.py
885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 | |
create_annotations
¶
create_annotations(
name: str,
reference_scale: float,
*,
single_class: bool = False,
require_symbol: bool = False,
auto_create: bool = True,
auto_update: bool = True,
) -> FeatureClass
Create an AnnotationClass for the Features (requires a linked Layer object)
| PARAMETER | DESCRIPTION |
|---|---|
|
The name of the annotation feature layer (can include a dataset, e.g.
TYPE:
|
|
The reference scale of the output annotation features
TYPE:
|
|
Merge all annotations will be merged into one class
TYPE:
|
|
Symbol must be selected from the symbol collection
TYPE:
|
|
Create a new annotation when a new feature is created
TYPE:
|
|
Update the annotation when the linked feature is modified
TYPE:
|
Note
If the output Annotation Features already exist, the new annotations will be appended
Source code in src/arcpie/featureclass.py
2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 | |
delete
¶
delete() -> None
Delete the object permanently using arcpy.management.Delete
Note: After calling this method, the current FeatureClass object becomes unbound so del is called on self
Source code in src/arcpie/featureclass.py
877 878 879 880 881 882 883 | |
delete_field
¶
Delete a field from a Table or FeatureClass
| PARAMETER | DESCRIPTION |
|---|---|
|
The name of the field to delete/drop
TYPE:
|
Example
>>> print(fc.fields)
['OID@', 'SHAPE@', 'name', 'year', 'month']
>>> del fc['month']
>>> print(fc.fields)
['OID@', 'SHAPE@', 'name', 'year']
>>> fc.delete_field('year')
>>> print(fc.fields)
['OID@', 'SHAPE@', 'name']
Source code in src/arcpie/featureclass.py
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 | |
delete_identical
¶
Delete all records that have matching field values
| PARAMETER | DESCRIPTION |
|---|---|
|
The fields used to define an identical feature |
| RETURNS | DESCRIPTION |
|---|---|
dict[int, int]
|
A dictionary of count of identical features deleted per feature |
Note
Insertion order takes precidence unless the Table or FeatureClass is ordered. The first feature found by the cursor will be maintained and all subsequent matches will be removed
Source code in src/arcpie/featureclass.py
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 | |
delete_where
¶
delete_where(clause: WhereClause | str) -> None
Delete all records that match the provided where clause
| PARAMETER | DESCRIPTION |
|---|---|
|
The SQL query that determines the records that will be deleted
TYPE:
|
Source code in src/arcpie/featureclass.py
1037 1038 1039 1040 1041 1042 1043 1044 | |
distinct
¶
Yield rows of distinct values
| PARAMETER | DESCRIPTION |
|---|---|
|
The field or fields to find distinct values for. Choosing multiple fields will find all distinct instances of those field combinations
TYPE:
|
| YIELDS | DESCRIPTION |
|---|---|
tuple[Any, ...]
|
A tuple containing the distinct values (single fields will yield |
Source code in src/arcpie/featureclass.py
722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 | |
exists
¶
exists() -> bool
Check if the Table or FeatureClass actually exists (check for deletion or initialization with bad path)
Source code in src/arcpie/featureclass.py
914 915 916 | |
fields_as
¶
Override the default fields for the Table or FeatureClass so all non-explicit Iterators will
only yield these fields (e.g. for row in fc: ...)
| PARAMETER | DESCRIPTION |
|---|---|
|
Varargs of the fieldnames to limit all unspecified Iterators to
TYPE:
|
Example
>>> with fc.fields_as('OID@', 'NAME'):
... for row in fc:
... print(row)
{'OID@': 1, 'NAME': 'John'}
{'OID@': 2, 'NAME': 'Michael'}
...
>>> for row in fc:
... print(row)
{'OID@': 1, 'NAME': 'John', 'AGE': 75, 'ADDRESS': 123 Silly Walk}
{'OID@': 2, 'NAME': 'Michael', 'AGE': 70, 'ADDRESS': 42 Dead Parrot Blvd}
...
Source code in src/arcpie/featureclass.py
1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 | |
filter
¶
filter(
func: FilterFunc[_Schema], invert: bool = False
) -> Iterator[_Schema]
Apply a function filter to rows in the Table or FeatureClass
| PARAMETER | DESCRIPTION |
|---|---|
|
A callable that takes a row dictionary and returns True or False |
|
Invert the function. Only yield rows that return
TYPE:
|
| YIELDS | DESCRIPTION |
|---|---|
dict[str, Any]
|
Rows in the Table or FeatureClass that match the filter (or inverted filter) |
Example
>>> def area_filter(row: dict) -> bool:
>>> return row['Area'] >= 10
>>> for row in fc:
>>> print(row['Area'])
1
2
10
<etc>
>>> for row in fc.filter(area_filter):
>>> print(row['Area'])
10
11
90
<etc>
Source code in src/arcpie/featureclass.py
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 | |
footprint
¶
footprint(buffer: None) -> _GeometryType | None
footprint() -> _GeometryType | None
Merge all geometry in the featureclass using current SelectionOptions into a single geometry object to use as a spatial filter on other FeatureClasses
| PARAMETER | DESCRIPTION |
|---|---|
|
Optional buffer (in feature units, respects projection context) to buffer by (default: None)
TYPE:
|
|
Will use the PairwiseBuffer and PairwiseDissolve functions to generate the footprint (default:
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
_GeometryType | Polygon | None
|
A merged Multi-Geometry of all feature geometries or |
If you have issues with footprint geometry, you can disable pairwise since that uses Pairwise functions.
when pairwise == False, an iterative geometry union is done with a buffer applied to the result (this can be exponentially slower)
Source code in src/arcpie/featureclass.py
1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 | |
from_layer
classmethod
¶
from_layer(
layer: Layer,
*,
ignore_selection: bool = False,
ignore_def_query: bool = False,
) -> FeatureClass[Any, Any]
Build a FeatureClass object from a layer applying the layer's current selection to the stored cursors
| PARAMETER | DESCRIPTION |
|---|---|
|
The layer to convert to a FeatureClass
TYPE:
|
|
Ignore the layer selection (default: False)
TYPE:
|
|
Ignore the layer definition query (default: False)
TYPE:
|
Returns: ( FeatureClass ): The FeatureClass object with the layer query applied
Source code in src/arcpie/featureclass.py
2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 | |
from_table
classmethod
¶
from_table(
table: Table,
*,
ignore_selection: bool = False,
ignore_def_query: bool = False,
) -> Table
See from_layer for documentation, this is an alternative constructor that builds from a mp.Table object
Source code in src/arcpie/featureclass.py
1567 1568 1569 1570 1571 1572 1573 | |
get
¶
get(
field: FilterFunc[_Schema], default: _T
) -> Iterator[_Schema] | _T
get(
field: WhereClause, default: _T
) -> Iterator[_Schema] | _T
get(field: None, default: _T) -> Iterator[None] | _T
get(
field: GeometryType | Extent, default: _T
) -> Iterator[_Schema] | _T
get(
field: _IndexableTypes
| FilterFunc[_Schema]
| Extent
| GeometryType
| Literal["SHAPE@"],
default: _T = None,
) -> Iterator[Any] | _T
Allows safe indexing of a FeatureClass, see Table.get for more information
Source code in src/arcpie/featureclass.py
1965 1966 1967 1968 1969 1970 1971 1972 | |
get_records
¶
get_records(
field_names: Iterable[FieldName] | FieldName,
**options: Unpack[SearchOptions],
) -> Iterator[_Schema]
Generate row dicts with in the form {field: value, ...} for each row in the cursor
| PARAMETER | DESCRIPTION |
|---|---|
|
The columns to iterate |
|
Additional options to pass on to the cursor
TYPE:
|
Yields ( dict[str, Any] ): A mapping of fieldnames to field values for each row
Source code in src/arcpie/featureclass.py
738 739 740 741 742 743 744 745 746 747 748 | |
get_schema
¶
get_schema(
*,
fallback_type: type = object,
docs: dict[str, str] | None = None,
include_shape_token: bool = True,
include_oid_token: bool = True,
default_doc: Callable[[Field], str]
| None
| Literal["nodoc"] = None,
) -> str
Get python code for the Table/FeatureClass schema
Args:
fallback_type: The default type annotation for any fields that aren't mapped properly
docs: Optional docs to include for each field (e.g. `{'FieldName': 'field doc', ...}`)
include_shape_token: Include a `SHAPE@` key with the FeatureClass shape type (no effect on Tables)
include_oid_token: Include the `OID@` key
default_doc: A function that takes a Field dictionary and retuens a formatted doc (default: `k: v
...`)
Source code in src/arcpie/featureclass.py
1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 | |
get_transformation
¶
Get the name of the transformation to convert from feature reference to provided reference
| PARAMETER | DESCRIPTION |
|---|---|
|
The spatial reference to get a transformation for
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
str | None
|
The name of the first transformation or None if no transformation available |
Source code in src/arcpie/featureclass.py
2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 | |
get_tuples
¶
get_tuples(
field_names: Iterable[FieldName] | FieldName,
**options: Unpack[SearchOptions],
) -> Iterator[tuple[Any, ...]]
Generate tuple rows in the for (val1, val2, ...) for each row in the cursor
| PARAMETER | DESCRIPTION |
|---|---|
|
The columns to iterate |
|
Additional parameters to pass to the SearchCursor
TYPE:
|
Source code in src/arcpie/featureclass.py
750 751 752 753 754 755 756 757 758 | |
group_by
¶
group_by(
group_fields: Sequence[FieldName] | FieldName,
return_fields: Sequence[FieldName] | FieldName = "*",
) -> Iterator[tuple[GroupIdent, GroupIter]]
Group features by matching field values and yield full records in groups
| PARAMETER | DESCRIPTION |
|---|---|
|
The fields to group the data by
TYPE:
|
|
The fields to include in the output record (
TYPE:
|
Yields: ( Iterator[tuple[tuple[FieldName, ...], Iterator[tuple[Any, ...] | Any]]] ): A nested iterator of groups and then rows
Example
>>> # With a field group, you will be able to unpack the tuple
>>> for group, rows in fc.group_by(['GroupField1', 'GroupField2'], ['ValueField1', 'ValueField2', ...]):
... print(group)
... for v1, v2 in rows:
... if v1 > 10:
... print(v2)
(GroupValue1A, GroupValue1B)
valueA
valueB
...
>>> # With a single field, you will have direct access to the field values
>>> for group, district_populations in fc.group_by(['City', 'State'], 'Population'):
>>> print(f"{group}: {sum(district_populations)}")
(New York, NY): 8260000
(Boston, MA): 4941632
...
Source code in src/arcpie/featureclass.py
669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 | |
has_field
¶
Check if the field exists in the featureclass or is a valid Token (@[TOKEN])
Source code in src/arcpie/featureclass.py
925 926 927 | |
insert_cursor
¶
insert_cursor(
*field_names: FieldName,
insert_options: InsertOptions | None = None,
**overrides: Unpack[InsertOptions],
) -> InsertCursor
See Table.search_cursor doc for general info. Operation of this method is identical but returns an InsertCursor
Source code in src/arcpie/featureclass.py
586 587 588 589 590 591 592 593 594 | |
insert_record
¶
Insert a single record into the table
Source code in src/arcpie/featureclass.py
760 761 762 763 764 765 766 767 768 | |
insert_records
¶
Provide an iterable of records to insert Args: records (Iterable[RowRecord]): The sequence of records to insert ignore_errors (bool): Ignore per-row errors and continue. Otherwise raise KeyError (default: True)
| RETURNS | DESCRIPTION |
|---|---|
Iterator[int]
|
Returns the OIDs of the newly inserted rows |
| RAISES | DESCRIPTION |
|---|---|
KeyError
|
If the records have varying keys or the keys are not in the Table or FeatureClass |
Example
>>> new_rows = [
... {'first': 'John', 'last': 'Cleese', 'year': 1939},
... {'first': 'Michael', 'last': 'Palin', 'year': 1943}
... ]
>>> print(fc.insert_rows(new_rows))
(2,3)
>>> # Insert all shapes from fc into fc2
>>> fc2.insert_rows(fc.get_records(['first', 'last', 'year']))
(1,2)
Source code in src/arcpie/featureclass.py
770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 | |
is_empty
¶
is_empty() -> bool
Check if a Table/FeatureClass is empty
Source code in src/arcpie/featureclass.py
918 919 920 921 922 923 | |
options
¶
options(
*,
strict: bool = False,
search_options: SearchOptions | None = None,
update_options: UpdateOptions | None = None,
insert_options: InsertOptions | None = None,
clause: SQLClause | None = None,
)
Enter a context block where the supplied options replace the stored options for the Table or FeatureClass
| PARAMETER | DESCRIPTION |
|---|---|
|
If this is set to
TYPE:
|
|
Contextual search overrides
TYPE:
|
|
Contextual update overrides
TYPE:
|
|
Contextual insert overrides
TYPE:
|
|
Contextual
TYPE:
|
Source code in src/arcpie/featureclass.py
1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 | |
recalculate_extent
¶
recalculate_extent() -> None
Recalculate the FeatureClass Extent
Source code in src/arcpie/featureclass.py
1863 1864 1865 | |
reference_as
¶
reference_as(spatial_reference: SpatialReference)
Allows you to temporarily set a spatial reference on SearchCursor and UpdateCursor objects within a context block
| PARAMETER | DESCRIPTION |
|---|---|
|
The spatial reference to apply to the cursor objects
TYPE:
|
| YIELDS | DESCRIPTION |
|---|---|
self
|
Mutated self with search and update options set to use the provided spatial reference |
Example
>>> sr = arcpy.SpatialReference(26971)
>>> fc = FeatureClass[Polygon]('<fc_path>')
>>> orig_shapes = list(fc.shapes)
>>> with fc.project_as(sr):
... proj_shapes = list(fc.shapes)
>>> print(orig_shapes[0].spatialReference)
SpatialReference(4326)
>>> print(proj_shapes[0].spatialReference)
SpatialReference(26971)
Source code in src/arcpie/featureclass.py
1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 | |
row_updater
¶
row_updater(
*field_names: FieldName,
strict: bool = False,
update_options: UpdateOptions | None = None,
**overrides: Unpack[UpdateOptions],
) -> Generator[_Schema, _Schema | None, None]
A Bi-Directional generator that yields rows and updates them with the sent value
Note
This method will assume the full provided schema if there is one, so make sure you keep track of any applied field filters.
| PARAMETER | DESCRIPTION |
|---|---|
|
The fields to include in the update operation (default: All) |
|
Raise a KeyError if an invalid fieldname is passed, otherwise drop invalid updates (default: False)
TYPE:
|
|
Additional context to pass to the UpdateCursor as a dictionary
TYPE:
|
|
Additional context to pass to the UpdateCursor as keyword arguments
TYPE:
|
Example
>>> updater = fc.row_updater()
>>> for row in updater:
... if row['Name'] = 'No Name':
... row['Name'] = None
... updater.send(row)
Source code in src/arcpie/featureclass.py
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 | |
search_cursor
¶
search_cursor(
*field_names: FieldName,
search_options: SearchOptions | None = None,
**overrides: Unpack[SearchOptions],
) -> SearchCursor
Get a SearchCursor for the Table or FeatureClass
Supplied search options are resolved by updating the base Table or FeatureClass Search options in this order:
**overrides['kwarg'] -> search_options['kwarg'] -> self.search_options['kwarg']
This is implemented using unpacking operations with the lowest importance option set being unpacked first
{**self.search_options, **(search_options or {}), **overrides}
With direct key word arguments (**overrides) shadowing all other supplied options. This allows a FeatureClass to
be initialized using a base set of options, then a shared SearchOptions set to be applied in some contexts,
then a direct keyword override to be supplied while never mutating the base options of the FeatureClass.
| PARAMETER | DESCRIPTION |
|---|---|
|
The column names to include from the |
|
A
TYPE:
|
|
Additional keyword arguments for the cursor that shadow
both the
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
SearchCursor
|
A |
Example
>>> cleese_search = SearchOptions(where_clause="NAME = 'John Cleese'")
>>> idle_search = SearchOptions(where_clause="NAME = 'Eric Idle'")
>>> monty = Table or FeatureClass('<path>', search_options=cleese_search)
>>> print(list(monty.search_cursor('NAME')))
[('John Cleese',)]
>>> print(list(monty.search_cursor('NAME', search_options=idle_search)))
[('Eric Idle', )]
>>> print(list(monty.search_cursor('NAME', search_options=idle_search)), where_clause="NAME = Graham Chapman")
[('Graham Chapman', )]
In this example, you can see that the keyword override is the most important. The fact that the other searches are created outside initialization allows you to store common queries in one place and update them for all cursors using them at the same time, while still allowing specific instances of a cursor to override those shared/stored defaults.
Source code in src/arcpie/featureclass.py
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 | |
select
¶
select(
method: Literal[
"NEW",
"DIFFERENCE",
"INTERSECT",
"SYMDIFFERENCE",
"UNION",
] = "NEW",
) -> None
If the Table or FeatureClass is bound to a layer, update the layer selection with the active SearchOptions
| PARAMETER | DESCRIPTION |
|---|---|
|
The method to use to apply the selection
TYPE:
|
Note
Selection changes require the project file to be saved to take effect.
Source code in src/arcpie/featureclass.py
1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 | |
spatial_filter
¶
spatial_filter(
spatial_filter: GeometryType | Extent,
spatial_relationship: SpatialRelationship = "INTERSECTS",
)
Apply a spatial filter to the FeatureClass in a context
| PARAMETER | DESCRIPTION |
|---|---|
|
The geometry to use as a spatial filter
TYPE:
|
|
The relationship to check for (default:
TYPE:
|
Example
>>> with fc.spatial_filter(boundary) as f:
... print(len(fc))
100
>>> print(len(fc))
50000
Note
Same as with where, this method will be much faster than any manual filter you can apply using python.
If you need to filter a FeatureClass by a spatial relationship, use this method, then do your expensive
filter operation on the reduced dataset
>>> def expensive_filter(rec):
>>> ...
>>> with fc.spatial_filter(boundary) as local:
>>> for row in fc.filter(expensive_filter):
>>> ...
Source code in src/arcpie/featureclass.py
2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 | |
unselect
¶
unselect() -> None
If the Table or FeatureClass is bound to a layer, Remove layer selection
Note
Selection changes require the project file to be saved to take effect.
Source code in src/arcpie/featureclass.py
1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 | |
update_cursor
¶
update_cursor(
*field_names: FieldName,
update_options: UpdateOptions | None = None,
**overrides: Unpack[UpdateOptions],
) -> UpdateCursor
See Table.search_cursor doc for general info. Operation of this method is identical but returns an UpdateCursor
Source code in src/arcpie/featureclass.py
596 597 598 599 600 601 602 603 604 | |
updater
¶
A wrapper around row_updater that allows use as a context manager
This simplifies the interaction with the row_updater method by allowing inline declaration
of the generator. For most simple update operations, this manager should work well.
| PARAMETER | DESCRIPTION |
|---|---|
|
The fields to include in the update operation (default: All) |
|
Raise a KeyError if an invalid fieldname is passed, otherwise drop invalid updates (default: False)
TYPE:
|
Example
with fc.editor, fc.updater() as upd: ... for row in upd: ... row['Name'] = 'Dave' ... upd.send(row)
Source code in src/arcpie/featureclass.py
640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 | |
where
¶
where(where_clause: WhereClause | str)
Apply a where clause to a Table or FeatureClass in a context
| PARAMETER | DESCRIPTION |
|---|---|
|
The where clause to apply to the Table or FeatureClass
TYPE:
|
Example
>>> with fc.where("first = 'John'") as f:
... for f in fc:
... print(f)
{'first': 'John', 'last': 'Cleese', 'year': 1939}
>>> with fc.where('year > 1939'):
... print(len(fc))
5
... print(len(fc))
6
Note
This method of filtering a Table or FeatureClass will always be more performant than using the
.filter method. If you can achieve the filtering you want with a where clause, do it.
Source code in src/arcpie/featureclass.py
1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 | |
Table
¶
Table(
path: str | Path,
*,
search_options: SearchOptions | None = None,
update_options: UpdateOptions | None = None,
insert_options: InsertOptions | None = None,
clause: SQLClause | None = None,
where: str | None = None,
)
Bases: Generic[_Schema]
A Wrapper for ArcGIS Table objects
- Modules
-
Modules
FeatureClass
FeatureClass
- Modules
-
Modules
Database
Datasetfrom_schema_module
| METHOD | DESCRIPTION |
|---|---|
__contains__ |
Implementation of contains that checks for a field existing in the |
__eq__ |
Determine if the datasource of two featureclass objects is the same |
__format__ |
Implement format specs for string formatting a featureclass. |
__getitem__ |
Handle all defined overloads using pattern matching syntax |
__iter__ |
Iterate all rows in the Table or FeatureClass yielding mappings of field name to field value |
__len__ |
Iterate all rows and count them. Only count with |
__repr__ |
Provide a constructor string e.g. |
__str__ |
Return the |
add_field |
Add a new field to a Table or FeatureClass, if no type is provided, deafault of |
add_fields |
Provide a mapping of fieldnames to Fields |
add_to_map |
Add the featureclass to a map |
bind_to_layer |
Update the provided layer's datasource to this Table or FeatureClass |
clear |
Clear all records from the table |
copy |
Create a new FeatureClass instance to prevent overriding a shared resource |
copy_to |
Copy this |
delete |
Delete the object permanently using arcpy.management.Delete |
delete_field |
Delete a field from a Table or FeatureClass |
delete_identical |
Delete all records that have matching field values |
delete_where |
Delete all records that match the provided where clause |
distinct |
Yield rows of distinct values |
exists |
Check if the Table or FeatureClass actually exists (check for deletion or initialization with bad path) |
fields_as |
Override the default fields for the Table or FeatureClass so all non-explicit Iterators will |
filter |
Apply a function filter to rows in the Table or FeatureClass |
from_layer |
Build a Table or FeatureClass object from a layer applying the layer's current selection to the stored cursors |
from_table |
See |
get |
Allow accessing the implemented indexes defined by |
get_records |
Generate row dicts with in the form |
get_schema |
Get python code for the Table/FeatureClass schema |
get_tuples |
Generate tuple rows in the for (val1, val2, ...) for each row in the cursor |
group_by |
Group features by matching field values and yield full records in groups |
has_field |
Check if the field exists in the featureclass or is a valid Token (@[TOKEN]) |
insert_cursor |
See |
insert_record |
Insert a single record into the table |
insert_records |
Provide an iterable of records to insert |
is_empty |
Check if a Table/FeatureClass is empty |
options |
Enter a context block where the supplied options replace the stored options for the |
row_updater |
A Bi-Directional generator that yields rows and updates them with the sent value |
search_cursor |
Get a |
select |
If the Table or FeatureClass is bound to a layer, update the layer selection with the active SearchOptions |
unselect |
If the Table or FeatureClass is bound to a layer, Remove layer selection |
update_cursor |
See |
updater |
A wrapper around |
where |
Apply a where clause to a Table or FeatureClass in a context |
| ATTRIBUTE | DESCRIPTION |
|---|---|
attribute_rules |
Get an
TYPE:
|
clause |
Default SQLClause
TYPE:
|
da_describe |
Access the da.Describe dictionary for the |
describe |
Access the arcpy.Describe object for the
TYPE:
|
editor |
Get an Editor manager for the Table or FeatureClass
TYPE:
|
field_defs |
Get a mapping of Field properties to fieldnames |
fields |
Tuple of all fieldnames in the Table or FeatureClass with |
insert_options |
Default InsertCursor options
TYPE:
|
layer |
A Layer object for the FeatureClass/Table if one is bound
TYPE:
|
name |
The common name of the FeatureClass/Table
TYPE:
|
np_dtypes |
Numpy dtypes for each field
|
oid_field_name |
ObjectID fieldname (ususally FID or OID or ObjectID)
TYPE:
|
parent |
The parent of the Table/FeatureClass (either a Dataset or a Database)
TYPE:
|
path |
The filepath of the FeatureClass/Table
TYPE:
|
py_types |
Get a mapping of fieldnames to python types for the Table |
search_options |
Default SearchCursor options
TYPE:
|
subtype_field |
The Subtype field (ususally SUBTYPE or SUBTYPE_CODE, etc.)
TYPE:
|
subtypes |
Result of ListSubtypes, mapping of code to Subtype object |
update_options |
Default UpdateCursor options
TYPE:
|
workspace |
Get the workspace of the
TYPE:
|
Source code in src/arcpie/featureclass.py
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 | |
attribute_rules
property
¶
attribute_rules: AttributeRuleManager
Get an AttributeRuleManager object bound to the Table/FeatureClass
da_describe
property
¶
Access the da.Describe dictionary for the Table or FeatureClass
editor
property
¶
editor: Editor
Get an Editor manager for the Table or FeatureClass Will set multiuser_mode to True if the feature can version
field_defs
property
¶
Get a mapping of Field properties to fieldnames
fields
property
¶
Tuple of all fieldnames in the Table or FeatureClass with OID@ as first
layer
property
writable
¶
layer: Layer | None
A Layer object for the FeatureClass/Table if one is bound
py_types
property
¶
Get a mapping of fieldnames to python types for the Table
subtype_field
property
¶
subtype_field: str | None
The Subtype field (ususally SUBTYPE or SUBTYPE_CODE, etc.)
subtypes
property
¶
Result of ListSubtypes, mapping of code to Subtype object
__contains__
¶
Implementation of contains that checks for a field existing in the FeatureClass
Source code in src/arcpie/featureclass.py
1191 1192 1193 1194 | |
__eq__
¶
Determine if the datasource of two featureclass objects is the same
Source code in src/arcpie/featureclass.py
1244 1245 1246 | |
__format__
¶
__format__(format_spec: str) -> str
Implement format specs for string formatting a featureclass.
Warning
The {fc:len} spec should only be used when needed. This spec will call __len__ when
used and will traverse the entire Table or FeatureClass with applied SearchOptions each time it is
called. See: __len__ doc for info on better ways to track counts in loops.
| PARAMETER | DESCRIPTION |
|---|---|
|
One of the options listed below (the
TYPE:
|
| PARAMETER | DESCRIPTION |
|---|---|
path|pth |
Table or FeatureClass path
TYPE:
|
len|length |
Table or FeatureClass length (with applied SearchQuery)
TYPE:
|
layer|lyr |
Linked Table or FeatureClass layer if applicable (else
TYPE:
|
shape|shp |
Table or FeatureClass shape type
TYPE:
|
units|unt |
Table or FeatureClass linear unit name
TYPE:
|
wkid|code |
Table or FeatureClass WKID
TYPE:
|
name|nm |
Table or FeatureClass name
TYPE:
|
fields|fld |
Table or FeatureClass fields (comma seperated)
TYPE:
|
Example
>>> f'{fc:wkid}'
'2236'
>>> f'{fc:path}'
'C:\<FeaturePath>'
>>> f'{fc:len}'
'101'
>>> f'{fc:shape}'
'Polygon'
Source code in src/arcpie/featureclass.py
1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 | |
__getitem__
¶
__getitem__(
field: FilterFunc[_Schema],
) -> Iterator[_Schema]
__getitem__(field: WhereClause) -> Iterator[_Schema]
__getitem__(
field: _IndexableTypes | FilterFunc[_Schema],
) -> Iterator[Any]
Handle all defined overloads using pattern matching syntax
| PARAMETER | DESCRIPTION |
|---|---|
|
Yield values in the specified column (values only)
TYPE:
|
|
Yield lists of values for requested columns (requested fields) |
|
Yield tuples of values for requested columns (requested fields) |
|
Yield dictionaries of values for requested columns (requested fields) |
|
Yield rows that match function (all fields)
TYPE:
|
|
Yield rows that match clause (all fields)
TYPE:
|
Example
>>> # Single Field
>>> print(list(fc['field']))
[val1, val2, val3, ...]
>>> # Field Tuple
>>> print(list(fc[('field1', 'field2')]))
[(val1, val2), (val1, val2), ...]
>>> # Field List
>>> print(list(fc[['field1', 'field2']]))
[[val1, val2], [val1, val2], ...]
>>> # Field Set (Row mapping limited to only requested fields)
>>> print(list(fc[{'field1', 'field2'}]))
[{'field1': val1, 'field2': val2}, {'field1': val1, 'field2': val2}, ...]
>>> # Last two options always return all fields in a mapping
>>> # Filter Function (passed to Table.filter())
>>> print(list(fc[lambda r: r['field1'] == target]))
[{'field1': val1, 'field2': val2, ...}, {'field1': val1, 'field2': val2, ...}, ...]
>>> # Where Clause (Use where() helper function or a WhereClause object)
>>> print(list(fc[where('field1 = target')]))
[{'field1': val1, 'field2': val2, ...}, {'field1': val1, 'field2': val2, ...}, ...]
>>> # None (Empty Iterator)
>>> print(list(fc[None]))
Source code in src/arcpie/featureclass.py
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 | |
__iter__
¶
__iter__() -> Iterator[_Schema]
Iterate all rows in the Table or FeatureClass yielding mappings of field name to field value
Note
It was decided to yield mappings because without specifying fields, it is up to the user to deal with the data as they see fit. Yielding tuples in an order that's not defined by the user would be confusing, so a mapping makes it clear exactly what they're accessing
Note
When a single field is specified using the fields_as context, values will be yielded
Source code in src/arcpie/featureclass.py
1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 | |
__len__
¶
__len__() -> int
Iterate all rows and count them. Only count with self.search_options queries.
Note
The __format__('len') spec calls this function. So len(fc) and f'{fc:len}' are the same,
with the caveat that the format spec option returns a string
Warning
This operation will traverse the whole dataset when called! You should not use it in loops:
# Bad
for i, _ in enumerate(fc):
print(f'{i}/{len(fc)}')
# Good
count = len(fc)
for i, _ in enumerate(fc):
print(f'{i}/{count}')
Source code in src/arcpie/featureclass.py
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 | |
__repr__
¶
__repr__() -> str
Provide a constructor string e.g. Table or FeatureClass[Polygon]('path')
Source code in src/arcpie/featureclass.py
1236 1237 1238 | |
__str__
¶
__str__() -> str
Return the Table or FeatureClass path for use with other arcpy methods
Source code in src/arcpie/featureclass.py
1240 1241 1242 | |
add_field
¶
Add a new field to a Table or FeatureClass, if no type is provided, deafault of VARCHAR(255) is used
| PARAMETER | DESCRIPTION |
|---|---|
|
The name of the new field (must not start with a number and be alphanum or underscored)
TYPE:
|
|
A Field object that contains the desired field properties
TYPE:
|
|
Allow passing keyword arguments for field directly (Overrides field arg)
TYPE:
|
Example
>>> new_field = Field(
... field_alias='Abbreviated Month',
... field_type='TEXT',
... field_length='3',
... field_domain='Months_ABBR',
... )
>>> print(fc.fields)
['OID@', 'SHAPE@', 'name', 'year']
>>> fc['month'] = new_field
>>> fc2['month'] = new_field # Can re-use a field definition
>>> print(fc.fields)
['OID@', 'SHAPE@', 'name', 'year', 'month']
Source code in src/arcpie/featureclass.py
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 | |
add_fields
¶
Provide a mapping of fieldnames to Fields
| PARAMETER | DESCRIPTION |
|---|---|
|
A mapping of fieldnames to Field objects |
Example
>>> fields = {'f1': Field(...), 'f2': Field(...)}
>>> fc.add_fields(fields)
>>> fc.fields
['OID@', 'SHAPE@', 'f1', 'f2']
Source code in src/arcpie/featureclass.py
983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 | |
add_to_map
¶
Add the featureclass to a map
Note
If the Table or FeatureClass has a layer, the bound layer will be added to the map. Otherwise a default layer will be added. And the new layer will be bound to the Table or FeatureClass
| PARAMETER | DESCRIPTION |
|---|---|
|
The map to add the featureclass to
TYPE:
|
Source code in src/arcpie/featureclass.py
1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 | |
bind_to_layer
¶
bind_to_layer(layer: Layer) -> None
Update the provided layer's datasource to this Table or FeatureClass
| PARAMETER | DESCRIPTION |
|---|---|
|
The layer to update connection properties for
TYPE:
|
Raises: ValueError
Source code in src/arcpie/featureclass.py
1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 | |
clear
¶
clear() -> None
Clear all records from the table
Source code in src/arcpie/featureclass.py
1031 1032 1033 1034 1035 | |
copy
¶
copy() -> Table[_Schema]
Create a new FeatureClass instance to prevent overriding a shared resource
Source code in src/arcpie/featureclass.py
1615 1616 1617 1618 1619 1620 1621 1622 1623 | |
copy_to
¶
Copy this Table or FeatureClass to a new workspace
| PARAMETER | DESCRIPTION |
|---|---|
|
The path to the workspace
TYPE:
|
|
Copy the cursor options to the new
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Table or FeatureClass
|
A |
Example
>>> new_fc = fc.copy('workspace2')
>>> new_fc == fc
False
Source code in src/arcpie/featureclass.py
885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 | |
delete
¶
delete() -> None
Delete the object permanently using arcpy.management.Delete
Note: After calling this method, the current FeatureClass object becomes unbound so del is called on self
Source code in src/arcpie/featureclass.py
877 878 879 880 881 882 883 | |
delete_field
¶
Delete a field from a Table or FeatureClass
| PARAMETER | DESCRIPTION |
|---|---|
|
The name of the field to delete/drop
TYPE:
|
Example
>>> print(fc.fields)
['OID@', 'SHAPE@', 'name', 'year', 'month']
>>> del fc['month']
>>> print(fc.fields)
['OID@', 'SHAPE@', 'name', 'year']
>>> fc.delete_field('year')
>>> print(fc.fields)
['OID@', 'SHAPE@', 'name']
Source code in src/arcpie/featureclass.py
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 | |
delete_identical
¶
Delete all records that have matching field values
| PARAMETER | DESCRIPTION |
|---|---|
|
The fields used to define an identical feature |
| RETURNS | DESCRIPTION |
|---|---|
dict[int, int]
|
A dictionary of count of identical features deleted per feature |
Note
Insertion order takes precidence unless the Table or FeatureClass is ordered. The first feature found by the cursor will be maintained and all subsequent matches will be removed
Source code in src/arcpie/featureclass.py
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 | |
delete_where
¶
delete_where(clause: WhereClause | str) -> None
Delete all records that match the provided where clause
| PARAMETER | DESCRIPTION |
|---|---|
|
The SQL query that determines the records that will be deleted
TYPE:
|
Source code in src/arcpie/featureclass.py
1037 1038 1039 1040 1041 1042 1043 1044 | |
distinct
¶
Yield rows of distinct values
| PARAMETER | DESCRIPTION |
|---|---|
|
The field or fields to find distinct values for. Choosing multiple fields will find all distinct instances of those field combinations
TYPE:
|
| YIELDS | DESCRIPTION |
|---|---|
tuple[Any, ...]
|
A tuple containing the distinct values (single fields will yield |
Source code in src/arcpie/featureclass.py
722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 | |
exists
¶
exists() -> bool
Check if the Table or FeatureClass actually exists (check for deletion or initialization with bad path)
Source code in src/arcpie/featureclass.py
914 915 916 | |
fields_as
¶
Override the default fields for the Table or FeatureClass so all non-explicit Iterators will
only yield these fields (e.g. for row in fc: ...)
| PARAMETER | DESCRIPTION |
|---|---|
|
Varargs of the fieldnames to limit all unspecified Iterators to
TYPE:
|
Example
>>> with fc.fields_as('OID@', 'NAME'):
... for row in fc:
... print(row)
{'OID@': 1, 'NAME': 'John'}
{'OID@': 2, 'NAME': 'Michael'}
...
>>> for row in fc:
... print(row)
{'OID@': 1, 'NAME': 'John', 'AGE': 75, 'ADDRESS': 123 Silly Walk}
{'OID@': 2, 'NAME': 'Michael', 'AGE': 70, 'ADDRESS': 42 Dead Parrot Blvd}
...
Source code in src/arcpie/featureclass.py
1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 | |
filter
¶
filter(
func: FilterFunc[_Schema], invert: bool = False
) -> Iterator[_Schema]
Apply a function filter to rows in the Table or FeatureClass
| PARAMETER | DESCRIPTION |
|---|---|
|
A callable that takes a row dictionary and returns True or False |
|
Invert the function. Only yield rows that return
TYPE:
|
| YIELDS | DESCRIPTION |
|---|---|
dict[str, Any]
|
Rows in the Table or FeatureClass that match the filter (or inverted filter) |
Example
>>> def area_filter(row: dict) -> bool:
>>> return row['Area'] >= 10
>>> for row in fc:
>>> print(row['Area'])
1
2
10
<etc>
>>> for row in fc.filter(area_filter):
>>> print(row['Area'])
10
11
90
<etc>
Source code in src/arcpie/featureclass.py
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 | |
from_layer
classmethod
¶
from_layer(
layer: Layer,
*,
ignore_selection: bool = False,
ignore_def_query: bool = False,
) -> Table[Any]
Build a Table or FeatureClass object from a layer applying the layer's current selection to the stored cursors
| PARAMETER | DESCRIPTION |
|---|---|
|
The layer to convert to a Table or FeatureClass
TYPE:
|
|
Ignore the layer selection (default: False)
TYPE:
|
|
Ignore the layer definition query (default: False)
TYPE:
|
Returns: ( Table or FeatureClass ): The Table or FeatureClass object with the layer query applied
Source code in src/arcpie/featureclass.py
1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 | |
from_table
classmethod
¶
from_table(
table: Table,
*,
ignore_selection: bool = False,
ignore_def_query: bool = False,
) -> Table
See from_layer for documentation, this is an alternative constructor that builds from a mp.Table object
Source code in src/arcpie/featureclass.py
1567 1568 1569 1570 1571 1572 1573 | |
get
¶
get(
field: FilterFunc[_Schema], default: _T
) -> Iterator[_Schema] | _T
get(
field: WhereClause, default: _T
) -> Iterator[_Schema] | _T
get(
field: _IndexableTypes | FilterFunc[_Schema],
default: _T = None,
) -> Iterator[Any] | _T
Allow accessing the implemented indexes defined by __getitem__ with a default shielding a raised KeyError
| PARAMETER | DESCRIPTION |
|---|---|
|
The index to check (see
TYPE:
|
|
A default to return when the indexing raises a
TYPE:
|
Example
>>> for name, age in fc[('Name', 'Age')]:
>>> print(name, age)
...
KeyError "Name"
...
>>> for name, age in fc.get(('Name', 'Age'), [])
Source code in src/arcpie/featureclass.py
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 | |
get_records
¶
get_records(
field_names: Iterable[FieldName] | FieldName,
**options: Unpack[SearchOptions],
) -> Iterator[_Schema]
Generate row dicts with in the form {field: value, ...} for each row in the cursor
| PARAMETER | DESCRIPTION |
|---|---|
|
The columns to iterate |
|
Additional options to pass on to the cursor
TYPE:
|
Yields ( dict[str, Any] ): A mapping of fieldnames to field values for each row
Source code in src/arcpie/featureclass.py
738 739 740 741 742 743 744 745 746 747 748 | |
get_schema
¶
get_schema(
*,
fallback_type: type = object,
docs: dict[str, str] | None = None,
include_shape_token: bool = True,
include_oid_token: bool = True,
default_doc: Callable[[Field], str]
| None
| Literal["nodoc"] = None,
) -> str
Get python code for the Table/FeatureClass schema
Args:
fallback_type: The default type annotation for any fields that aren't mapped properly
docs: Optional docs to include for each field (e.g. `{'FieldName': 'field doc', ...}`)
include_shape_token: Include a `SHAPE@` key with the FeatureClass shape type (no effect on Tables)
include_oid_token: Include the `OID@` key
default_doc: A function that takes a Field dictionary and retuens a formatted doc (default: `k: v
...`)
Source code in src/arcpie/featureclass.py
1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 | |
get_tuples
¶
get_tuples(
field_names: Iterable[FieldName] | FieldName,
**options: Unpack[SearchOptions],
) -> Iterator[tuple[Any, ...]]
Generate tuple rows in the for (val1, val2, ...) for each row in the cursor
| PARAMETER | DESCRIPTION |
|---|---|
|
The columns to iterate |
|
Additional parameters to pass to the SearchCursor
TYPE:
|
Source code in src/arcpie/featureclass.py
750 751 752 753 754 755 756 757 758 | |
group_by
¶
group_by(
group_fields: Sequence[FieldName] | FieldName,
return_fields: Sequence[FieldName] | FieldName = "*",
) -> Iterator[tuple[GroupIdent, GroupIter]]
Group features by matching field values and yield full records in groups
| PARAMETER | DESCRIPTION |
|---|---|
|
The fields to group the data by
TYPE:
|
|
The fields to include in the output record (
TYPE:
|
Yields: ( Iterator[tuple[tuple[FieldName, ...], Iterator[tuple[Any, ...] | Any]]] ): A nested iterator of groups and then rows
Example
>>> # With a field group, you will be able to unpack the tuple
>>> for group, rows in fc.group_by(['GroupField1', 'GroupField2'], ['ValueField1', 'ValueField2', ...]):
... print(group)
... for v1, v2 in rows:
... if v1 > 10:
... print(v2)
(GroupValue1A, GroupValue1B)
valueA
valueB
...
>>> # With a single field, you will have direct access to the field values
>>> for group, district_populations in fc.group_by(['City', 'State'], 'Population'):
>>> print(f"{group}: {sum(district_populations)}")
(New York, NY): 8260000
(Boston, MA): 4941632
...
Source code in src/arcpie/featureclass.py
669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 | |
has_field
¶
Check if the field exists in the featureclass or is a valid Token (@[TOKEN])
Source code in src/arcpie/featureclass.py
925 926 927 | |
insert_cursor
¶
insert_cursor(
*field_names: FieldName,
insert_options: InsertOptions | None = None,
**overrides: Unpack[InsertOptions],
) -> InsertCursor
See Table.search_cursor doc for general info. Operation of this method is identical but returns an InsertCursor
Source code in src/arcpie/featureclass.py
586 587 588 589 590 591 592 593 594 | |
insert_record
¶
Insert a single record into the table
Source code in src/arcpie/featureclass.py
760 761 762 763 764 765 766 767 768 | |
insert_records
¶
Provide an iterable of records to insert Args: records (Iterable[RowRecord]): The sequence of records to insert ignore_errors (bool): Ignore per-row errors and continue. Otherwise raise KeyError (default: True)
| RETURNS | DESCRIPTION |
|---|---|
Iterator[int]
|
Returns the OIDs of the newly inserted rows |
| RAISES | DESCRIPTION |
|---|---|
KeyError
|
If the records have varying keys or the keys are not in the Table or FeatureClass |
Example
>>> new_rows = [
... {'first': 'John', 'last': 'Cleese', 'year': 1939},
... {'first': 'Michael', 'last': 'Palin', 'year': 1943}
... ]
>>> print(fc.insert_rows(new_rows))
(2,3)
>>> # Insert all shapes from fc into fc2
>>> fc2.insert_rows(fc.get_records(['first', 'last', 'year']))
(1,2)
Source code in src/arcpie/featureclass.py
770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 | |
is_empty
¶
is_empty() -> bool
Check if a Table/FeatureClass is empty
Source code in src/arcpie/featureclass.py
918 919 920 921 922 923 | |
options
¶
options(
*,
strict: bool = False,
search_options: SearchOptions | None = None,
update_options: UpdateOptions | None = None,
insert_options: InsertOptions | None = None,
clause: SQLClause | None = None,
)
Enter a context block where the supplied options replace the stored options for the Table or FeatureClass
| PARAMETER | DESCRIPTION |
|---|---|
|
If this is set to
TYPE:
|
|
Contextual search overrides
TYPE:
|
|
Contextual update overrides
TYPE:
|
|
Contextual insert overrides
TYPE:
|
|
Contextual
TYPE:
|
Source code in src/arcpie/featureclass.py
1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 | |
row_updater
¶
row_updater(
*field_names: FieldName,
strict: bool = False,
update_options: UpdateOptions | None = None,
**overrides: Unpack[UpdateOptions],
) -> Generator[_Schema, _Schema | None, None]
A Bi-Directional generator that yields rows and updates them with the sent value
Note
This method will assume the full provided schema if there is one, so make sure you keep track of any applied field filters.
| PARAMETER | DESCRIPTION |
|---|---|
|
The fields to include in the update operation (default: All) |
|
Raise a KeyError if an invalid fieldname is passed, otherwise drop invalid updates (default: False)
TYPE:
|
|
Additional context to pass to the UpdateCursor as a dictionary
TYPE:
|
|
Additional context to pass to the UpdateCursor as keyword arguments
TYPE:
|
Example
>>> updater = fc.row_updater()
>>> for row in updater:
... if row['Name'] = 'No Name':
... row['Name'] = None
... updater.send(row)
Source code in src/arcpie/featureclass.py
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 | |
search_cursor
¶
search_cursor(
*field_names: FieldName,
search_options: SearchOptions | None = None,
**overrides: Unpack[SearchOptions],
) -> SearchCursor
Get a SearchCursor for the Table or FeatureClass
Supplied search options are resolved by updating the base Table or FeatureClass Search options in this order:
**overrides['kwarg'] -> search_options['kwarg'] -> self.search_options['kwarg']
This is implemented using unpacking operations with the lowest importance option set being unpacked first
{**self.search_options, **(search_options or {}), **overrides}
With direct key word arguments (**overrides) shadowing all other supplied options. This allows a FeatureClass to
be initialized using a base set of options, then a shared SearchOptions set to be applied in some contexts,
then a direct keyword override to be supplied while never mutating the base options of the FeatureClass.
| PARAMETER | DESCRIPTION |
|---|---|
|
The column names to include from the |
|
A
TYPE:
|
|
Additional keyword arguments for the cursor that shadow
both the
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
SearchCursor
|
A |
Example
>>> cleese_search = SearchOptions(where_clause="NAME = 'John Cleese'")
>>> idle_search = SearchOptions(where_clause="NAME = 'Eric Idle'")
>>> monty = Table or FeatureClass('<path>', search_options=cleese_search)
>>> print(list(monty.search_cursor('NAME')))
[('John Cleese',)]
>>> print(list(monty.search_cursor('NAME', search_options=idle_search)))
[('Eric Idle', )]
>>> print(list(monty.search_cursor('NAME', search_options=idle_search)), where_clause="NAME = Graham Chapman")
[('Graham Chapman', )]
In this example, you can see that the keyword override is the most important. The fact that the other searches are created outside initialization allows you to store common queries in one place and update them for all cursors using them at the same time, while still allowing specific instances of a cursor to override those shared/stored defaults.
Source code in src/arcpie/featureclass.py
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 | |
select
¶
select(
method: Literal[
"NEW",
"DIFFERENCE",
"INTERSECT",
"SYMDIFFERENCE",
"UNION",
] = "NEW",
) -> None
If the Table or FeatureClass is bound to a layer, update the layer selection with the active SearchOptions
| PARAMETER | DESCRIPTION |
|---|---|
|
The method to use to apply the selection
TYPE:
|
Note
Selection changes require the project file to be saved to take effect.
Source code in src/arcpie/featureclass.py
1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 | |
unselect
¶
unselect() -> None
If the Table or FeatureClass is bound to a layer, Remove layer selection
Note
Selection changes require the project file to be saved to take effect.
Source code in src/arcpie/featureclass.py
1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 | |
update_cursor
¶
update_cursor(
*field_names: FieldName,
update_options: UpdateOptions | None = None,
**overrides: Unpack[UpdateOptions],
) -> UpdateCursor
See Table.search_cursor doc for general info. Operation of this method is identical but returns an UpdateCursor
Source code in src/arcpie/featureclass.py
596 597 598 599 600 601 602 603 604 | |
updater
¶
A wrapper around row_updater that allows use as a context manager
This simplifies the interaction with the row_updater method by allowing inline declaration
of the generator. For most simple update operations, this manager should work well.
| PARAMETER | DESCRIPTION |
|---|---|
|
The fields to include in the update operation (default: All) |
|
Raise a KeyError if an invalid fieldname is passed, otherwise drop invalid updates (default: False)
TYPE:
|
Example
with fc.editor, fc.updater() as upd: ... for row in upd: ... row['Name'] = 'Dave' ... upd.send(row)
Source code in src/arcpie/featureclass.py
640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 | |
where
¶
where(where_clause: WhereClause | str)
Apply a where clause to a Table or FeatureClass in a context
| PARAMETER | DESCRIPTION |
|---|---|
|
The where clause to apply to the Table or FeatureClass
TYPE:
|
Example
>>> with fc.where("first = 'John'") as f:
... for f in fc:
... print(f)
{'first': 'John', 'last': 'Cleese', 'year': 1939}
>>> with fc.where('year > 1939'):
... print(len(fc))
5
... print(len(fc))
6
Note
This method of filtering a Table or FeatureClass will always be more performant than using the
.filter method. If you can achieve the filtering you want with a where clause, do it.
Source code in src/arcpie/featureclass.py
1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 | |
as_dict
¶
Take a Cusrsor object and yield rows from it
| PARAMETER | DESCRIPTION |
|---|---|
|
The cursor to convert to a RowRecord iterator
TYPE:
|
| YIELDS | DESCRIPTION |
|---|---|
RowRecord
|
Iterator[RowRecord] |
Example
```python
for row in as_dict(SearchCursor('table', ['Name', 'City'])) ... print(f'{row["Name"]} lives in {row["City"]}') Dave lives in New York City Robert lives in Kansas City ...
Source code in src/arcpie/featureclass.py
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | |
count
¶
count(featureclass: FeatureClass | Iterator[Any]) -> int
Get the record count of a FeatureClass
| PARAMETER | DESCRIPTION |
|---|---|
|
The FeatureClass or Iterator/view to count
TYPE:
|
Example
>>> fc = FeatureClass[PointGeometry]('MyFC')
>>> count(fc)
1000
>>> count(fc[where('1=0')])
0
>>> boundary = next(FeatureClass[Polygon]('Boundaries').shapes)
>>> count(fc[boundary])
325
Source code in src/arcpie/featureclass.py
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | |
extract_singleton
¶
Helper function to allow passing single values to arguments that expect a tuple
| PARAMETER | DESCRIPTION |
|---|---|
|
The values to normalize based on item count |
| RETURNS | DESCRIPTION |
|---|---|
Sequence[Any] | Any
|
The normalized sequence |
Source code in src/arcpie/featureclass.py
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | |
filter_fields
¶
filter_fields(
*fields: FieldName,
) -> Callable[
[FilterFunc[RowRecord]], FilterFunc[RowRecord]
]
Decorator for filter functions that limits fields checked by the SearchCursor
| PARAMETER | DESCRIPTION |
|---|---|
|
Varargs for the fields to limit the filter to
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
FilterFunc
|
A filter function with a |
Callable[[FilterFunc[RowRecord]], FilterFunc[RowRecord]]
|
Used with FeatureClass.filter to limit columns |
Note
Iterating filtered rows using a decorated filter will limit available columns inside the
context of the filter. This should only be used if you need to improve performance of a
filter and don't care about the fields not included in the filter_fields decorator:
Example:
>>> @filter_fields('Name', 'Age')
>>> def age_over_21(row):
... return row['Age'] > 21
...
>>> for row in feature_class[age_over_21]:
... print(row)
...
{'Name': 'John', 'Age': 23}
{'Name': 'Terry', 'Age': 42}
...
>>> for row in feature_class:
... print(row)
...
{'Name': 'John', 'LastName': 'Cleese', 'Age': 23}
{'Name': 'Graham', 'LastName': 'Chapman', 'Age': 18}
{'Name': 'Terry', 'LastName': 'Gilliam', 'Age': 42}
...
Note
You can achieve field filtering using the FeatureClass.fields_as context manager as well.
This method adds a level of indentation and can be more extensible:
Example:
>>> def age_over_21(row):
... return row['Age'] > 21
...
>>> with feature_class.fields_as('Name', 'Age'):
... for row in feature_class[age_over_21]:
... print(row)
...
{'Name': 'John', 'Age': 23}
{'Name': 'Terry', 'Age': 42}
Source code in src/arcpie/featureclass.py
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | |
format_query_list
¶
Format a list of values into a SQL list
Source code in src/arcpie/featureclass.py
206 207 208 209 210 | |
norm
¶
Normalize a value for SQL query (wrap strings in single quotes)
Source code in src/arcpie/featureclass.py
212 213 214 215 216 | |
valid_field
¶
Validate a fieldname
Source code in src/arcpie/featureclass.py
301 302 303 304 305 306 307 308 309 310 311 312 313 314 | |
where
¶
where(
*clauses: str, mode: Literal["AND", "OR"] = "AND"
) -> WhereClause
Wrap a string in a WhereClause object to use with indexing
| PARAMETER | DESCRIPTION |
|---|---|
|
Varargs of clause string to mark as a clause
TYPE:
|
|
Join statment for multiple clauses (AND/OR) (default:
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
WhereClause
|
WhereClause |
Example
>>> for row in features[where('SHAPE_LENGTH > 10')]:
... print(row)
{'OBJECTID': 1, 'SHAPE_LENGTH': 11}
{'OBJECTID': 2, 'SHAPE_LENGTH': 34}
{'OBJECTID': 3, 'SHAPE_LENGTH': 78}
...
Source code in src/arcpie/featureclass.py
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | |