[Qgis-user] QGIS - Can a plugin be installed with Python code

2020-06-26 Thread Seggie, Graeme
Hello, Is it possible to install QGIS Plugins with python code? I would like to be able to provide users who have a basic QGIS image served up to them at login, to be able to quickly install all their required plugins with a tailored Python script to save them manually installing each via the

Re: [Qgis-user] Selecting maximum values in drill holes

2020-06-26 Thread Andreas Neumann
Hi Grant, It is simply maximum("fieldname") or maximum(expression) e.g. maximum($length) would give you the longest length of a linestring layer. There are also group_by or filter clauses, but in your case I think you don't need those. Andreas On 2020-06-26 04:19, Grant Boxer