Query Entities¶
DXF entities can be selected from layouts or arbitrary entity-sequences based on their
DXF type and attributes. Create new queries be the new()
function or by the
query()
methods implemented by all layouts.
See also
Tutorial: Tutorial for Getting Data from DXF Files
Reference:
ezdxf.query
module
Entity Query String¶
The query string is the combination of two queries, first the required entity query and
second the optional attribute query, enclosed in square brackets, append 'i'
after
the closing square bracket to ignore case for strings.
Query Result¶
The EntityQuery
class is the return type of all query()
methods.
EntityQuery
contains all DXF entities of the source collection,
which matches one name of the entity query AND the whole attribute query.
If a DXF entity does not have or support a required attribute, the corresponding
attribute search term is False
.
Select all LINE and CIRCLE entities with layer == “construction”:
result = msp.query('LINE CIRCLE[layer=="construction"]')
This result is always empty, because the LINE entity has no text attribute:
result = msp.query('LINE[text ? ".*"]')
Select all entities except those with layer == “construction” and color < 7:
result = msp.query('*[!(layer=="construction" & color<7)]')
Ignore case, selects all entities with layer == “construction”, “Construction”, “ConStruction” …:
result = msp.query('*[layer=="construction"]i')
Extended EntityQuery Features¶
The EntityQuery
container supports the full Sequence protocol:
result = msp.query(...)
first = result[0]
last = result[-1]
Slices return a new EntityQuery
container:
sequence = result[1:-2]
The __getitem__()
function accepts also a DXF attribute name and returns all
entities which support this attribute, this is the base for supporting queries by
relational operators. More on that later.
The __setitem__()
method assigns a DXF attribute to all supported
entities in the EntityQuery
container:
result = msp.query(...)
result["layer"] = "MyLayer"
Entities which do not support an attribute are silently ignored:
result = msp.query(...)
result["center"] = (0, 0) # set center only of CIRCLE and ARC entities
The __delitem__()
method discards DXF attributes from all entities in
the EntityQuery
container:
result = msp.query(...)
# reset the layer attribute from all entities in container result to the
# default layer "0"
del result["layer"]
Descriptors for DXF Attributes¶
For some basic DXF attributes exist descriptors in the EntityQuery
class:
layer
: layer name as stringcolor
: AutoCAD Color Index (ACI), seeezdxf.colors
linetype
: linetype as stringltscale
: linetype scaling factor as float valuelineweight
: Lineweightsinvisible
: 0 if visible 1 if invisible, 0 is the default valuetrue_color
: true color as int value, seeezdxf.colors
, has no default valuetransparency
: transparency as int value, seeezdxf.colors
, has no default value
A descriptor simplifies the attribute access through the EntityQuery
container and has auto-completion support from IDEs:
result = msp.query(...)
# set attribute of all entities in result
result.layer = "MyLayer"
# delete attribute from all entities in result
del result.layer
# and for selector usage, see following section
assert len(result.layer == "MyLayer") == 1
Relational Selection Operators¶
The attribute selection by __getitem__()
allows further selections by
relational operators:
msp.add_line((0, 0), (1, 0), dxfattribs={"layer": "MyLayer})
lines = msp.query("LINE")
# select all entities on layer "MyLayer"
entities = lines["layer"] == "MyLayer"
assert len(entities) == 1
# or select all entities except the entities on layer "MyLayer"
entities = lines["layer"] != "MyLayer"
These operators work only with real DXF attributes, for instance the rgb
attribute of graphical entities is not a real DXF attribute either the
vertices
of the LWPOLYLINE entity.
The selection by relational operators is case insensitive by default, because all names of DXF table entries are handled case insensitive. But if required the selection mode can be set to case sensitive:
lines = msp.query("LINE")
# use case sensitive selection: "MyLayer" != "MYLAYER"
lines.ignore_case = False
entities = lines["layer"] == "MYLAYER"
assert len(entities) == 0
# the result container has the default setting:
assert entities.ignore_case is True
Supported selection operators are:
==
equal “value”
!=
not equal “value”
<
lower than “value”
<=
lower or equal than “value”
>
greater than “value”
>=
greater or equal than “value”
The relational operators <, >, <= and >= are not supported for vector-based
attributes such as center or insert and raise a TypeError
.
Note
These operators are selection operators and not logic operators, therefore
the logic operators and
, or
and not
are not applicable.
The methods union()
, intersection()
,
difference()
and symmetric_difference()
can be used to combine selection. See section Query Set Operators and
Build Custom Filters.
Regular Expression Selection¶
The EntityQuery.match()
method returns all entities where the selected DXF
attribute matches the given regular expression. This methods work only on string
based attributes, raises TypeError
otherwise.
From here on I use only descriptors for attribute selection if possible.
msp.add_line((0, 0), (1, 0), dxfattribs={"layer": "Lay1"})
msp.add_line((0, 0), (1, 0), dxfattribs={"layer": "Lay2"})
lines = msp.query("LINE")
# select all entities at layers starting with "Lay",
# selection is also case insensitive by default:
assert len(lines.layer.match("^Lay.*")) == 2
Build Custom Filters¶
The method EntityQuery.filter
can be used to build operators for
none-DXF attributes or for complex logic expressions.
Find all MTEXT entities in modelspace containing “SearchText”.
All MText
entities have a text
attribute, no
need for a safety check:
mtext = msp.query("MTEXT").filter(lambda e: "SearchText" in e.text)
This filter checks the non-DXF attribute rgb
. The filter has to
check if the rgb
attributes exist to avoid exceptions, because not all
entities in modelspace may have the rgb
attribute e.g. the
DXFTagStorage
entities which preserve unknown DXF entities:
result = msp.query().filter(
lambda e: hasattr(e, "rgb") and e.rgb == (0, 0, 0)
)
Build 1-pass logic filters for complex queries, which would require otherwise multiple passes:
result = msp.query().filter(lambda e: e.dxf.color < 7 and e.dxf.layer == "0")
Combine filters for more complex operations. The first filter passes only valid entities and the second filter does the actual check:
def validator(entity):
return True # if entity is valid and has all required attributes
def check(entity):
return True # if entity passes the attribute checks
result = msp.query().filter(validator).filter(check)
Query Set Operators¶
The |
operator or EntityQuery.union()
returns a new
EntityQuery
with all entities from both queries. All entities are
unique - no duplicates. This operator acts like the logical or
operator.
entities = msp.query()
# select all entities with color < 2 or color > 7
result = (entities.color < 2 ) | (entities.color > 7)
The &
operator or EntityQuery.intersection()
returns a new
EntityQuery
with entities common to self and other. This operator
acts like the logical and
operator.
entities = msp.query()
# select all entities with color > 1 and color < 7
result = (entities.color > 1) & (entities.color < 7)
The -
operator or EntityQuery.difference()
returns a new
EntityQuery
with all entities from self that are not in other.
entities = msp.query()
# select all entities with color > 1 and not layer == "MyLayer"
result = (entities.color > 1) - (entities.layer != "MyLayer")
The ^
operator or EntityQuery.symmetric_difference()
returns a new
EntityQuery
with entities in either self or other but not both.
entities = msp.query()
# select all entities with color > 1 or layer == "MyLayer", exclusive
# entities with color > 1 and layer == "MyLayer"
result = (entities.color > 1) ^ (entities.layer == "MyLayer")