90 lines
3.4 KiB
Python
Raw Normal View History

2013-02-16 00:23:56 +01:00
# -*- coding: utf-8 -*-
"""
***************************************************************************
BarPlot.py
---------------------
Date : January 2013
Copyright : (C) 2013 by Victor Olaya
Email : volayaf at gmail dot com
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************
"""
__author__ = 'Victor Olaya'
__date__ = 'January 2013'
__copyright__ = '(C) 2013, Victor Olaya'
2013-02-16 00:23:56 +01:00
# This will get replaced with a git SHA1 when you do a git archive
2013-02-16 00:23:56 +01:00
__revision__ = '$Format:%H$'
2017-02-10 11:14:09 +02:00
import plotly as plt
import plotly.graph_objs as go
2017-04-12 11:20:51 -05:00
from qgis.core import (QgsProcessingParameterFeatureSource,
QgsProcessingParameterField,
QgsProcessingParameterFileDestination,
2017-06-06 15:36:07 +10:00
QgsProcessingOutputHtml)
2017-06-06 13:41:42 +10:00
from processing.algs.qgis.QgisAlgorithm import QgisAlgorithm
from processing.tools import vector
2013-02-16 00:23:56 +01:00
class BarPlot(QgisAlgorithm):
2013-02-16 00:23:56 +01:00
INPUT = 'INPUT'
OUTPUT = 'OUTPUT'
NAME_FIELD = 'NAME_FIELD'
VALUE_FIELD = 'VALUE_FIELD'
2013-02-16 00:23:56 +01:00
def group(self):
return self.tr('Graphics')
def __init__(self):
super().__init__()
2017-06-06 15:36:07 +10:00
def initAlgorithm(self, config=None):
2017-06-06 15:36:07 +10:00
self.addParameter(QgsProcessingParameterFeatureSource(self.INPUT,
self.tr('Input layer')))
self.addParameter(QgsProcessingParameterField(self.NAME_FIELD,
self.tr('Category name field'),
None, self.INPUT, QgsProcessingParameterField.Any))
self.addParameter(QgsProcessingParameterField(self.VALUE_FIELD,
self.tr('Value field'),
None, self.INPUT, QgsProcessingParameterField.Numeric))
2017-06-06 15:36:07 +10:00
self.addParameter(QgsProcessingParameterFileDestination(self.OUTPUT, self.tr('Bar plot'), self.tr('HTML files (*.html)')))
2017-06-06 15:36:07 +10:00
self.addOutput(QgsProcessingOutputHtml(self.OUTPUT, self.tr('Bar plot')))
def name(self):
return 'barplot'
def displayName(self):
return self.tr('Bar plot')
def processAlgorithm(self, parameters, context, feedback):
2017-06-06 15:36:07 +10:00
source = self.parameterAsSource(parameters, self.INPUT, context)
2017-06-06 15:36:07 +10:00
namefieldname = self.parameterAsString(parameters, self.NAME_FIELD, context)
valuefieldname = self.parameterAsString(parameters, self.VALUE_FIELD, context)
2017-06-06 15:36:07 +10:00
output = self.parameterAsFileOutput(parameters, self.OUTPUT, context)
2017-06-06 15:36:07 +10:00
values = vector.values(source, valuefieldname)
x_var = [i[namefieldname] for i in source.getFeatures()]
2013-02-28 22:08:32 +01:00
data = [go.Bar(x=x_var,
2017-02-10 11:14:09 +02:00
y=values[valuefieldname])]
2017-02-15 20:05:17 +02:00
plt.offline.plot(data, filename=output, auto_open=False)
2017-06-06 15:36:07 +10:00
return {self.OUTPUT: output}