Python bindings for QuantumGIS (QGIS)
2
votes
1answer
174 views
How to move Layer to back?
from my Plugin I've loaded a rasterlayer using the following code:
fileName = "/path/to/raster/file.tif"
fileInfo = QFileInfo(fileName)
baseName = fileInfo.baseName()
rlayer = ...
1
vote
1answer
164 views
How to handle geometry change in Vector Layer?
Hy,
I'm building a plugin in python that manage some lists of wkt from different intern sources (web services, bd, etc..).
I can display every source without any problem.
For displaying them, I use ...
1
vote
0answers
72 views
Setting border-style to 'no pen' using QgsGraduatedSymbolRendererV2
I am developing a QGIS plugin that, after a series of inputs, will produce a thematic map using the QgsGraduatedSymbolRendererV2. Because the polygon are very small, the boarders make it such that ...
0
votes
1answer
138 views
extract edge of a line of a vector layer in a new point layer
I'm using python to build a plug-in in Qgis.
I need to extract the edges of each line feature of a vector layer to create a new point layer of all edges.
Someone can help me?
My data input is a vector ...
3
votes
2answers
107 views
How can I read the settings for the QgsPaperItem from XML?
I saved a template qpt for the map composer and now I want to read all the settings. I am able to insert the items with composition.addItemsfromXML...
But this doesn't load the settings for the ...
2
votes
1answer
210 views
How to add Real Attributes to Shapefile using pyqgis?
I created the Qmarxan plugin using the fTools plugin as an example base. When I create a new shapefile using the QgsVectorFileWriter function I don't have any difficulty specifying a "Real" field with ...
6
votes
1answer
436 views
Is there a way to access QGIS plugins in Python?
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 ...
