You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it would be useful to have in QGIS core the same function as PostGIS (ST_MakeEnvelope), in order to quickly create a bounding box using the coordinates copied from the status bar, in particular in the extension function:
Currently to create a bbox I use the following expression:
bounds(
make_line(
make_point (756594, 4068816),
make_point (777241, 4081345))
)
the new function would avoid calling other functions like make_point and make_line
The text was updated successfully, but these errors were encountered:
Feature description
it would be useful to have in QGIS core the same function as PostGIS (ST_MakeEnvelope), in order to quickly create a bounding box using the coordinates copied from the status bar, in particular in the extension function:
a thousand thanks
Additional context
Currently to create a bbox I use the following expression:
The text was updated successfully, but these errors were encountered: