Is there a way to access QGIS plugins in Python? I'd like to write a script to do some geoprocessing, and I'd like to use the clip, regular points and convex hull tools in fTools, as well as the Road graph plugin. The latter is probably a different can of worms because it is a C++ rather than Python plugin.
Take the 2-minute tour
×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.
If you know the python module for the plugin you can just run a import in the python console For example:
Then you can do somemodule.methodcall(). You will have to make sure, by looking at the code of the plugin, that it doesn't rely on any of it gui stuff. Otherwise you might get a nice UI pop up when you don't want it. But yes it's possible. |
|||||||||
|