2013-02-16 00:23:56 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
EquivalentNumField.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-10-01 20:52:22 +03:00
|
|
|
|
2013-02-16 00:23:56 +01:00
|
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2013-02-16 00:23:56 +01:00
|
|
|
__revision__ = '$Format:%H$'
|
|
|
|
|
2017-02-10 11:47:56 +02:00
|
|
|
import plotly as plt
|
|
|
|
import plotly.graph_objs as go
|
2015-01-17 14:57:21 +02:00
|
|
|
|
2017-08-30 07:28:25 +10:00
|
|
|
from qgis.core import (QgsProcessingParameterFeatureSource,
|
|
|
|
QgsProcessingParameterField,
|
|
|
|
QgsProcessingUtils,
|
|
|
|
QgsProcessingParameterFileDestination,
|
|
|
|
QgsProcessingOutputHtml)
|
2017-06-06 13:41:42 +10:00
|
|
|
from processing.algs.qgis.QgisAlgorithm import QgisAlgorithm
|
2015-01-17 14:57:21 +02:00
|
|
|
from processing.tools import vector
|
2013-02-16 00:23:56 +01:00
|
|
|
|
|
|
|
|
2017-05-19 11:27:16 +10:00
|
|
|
class VectorLayerScatterplot(QgisAlgorithm):
|
2013-02-28 22:08:32 +01:00
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
INPUT = 'INPUT'
|
|
|
|
OUTPUT = 'OUTPUT'
|
|
|
|
XFIELD = 'XFIELD'
|
|
|
|
YFIELD = 'YFIELD'
|
2013-02-16 00:23:56 +01:00
|
|
|
|
2017-03-29 12:04:09 +10:00
|
|
|
def group(self):
|
|
|
|
return self.tr('Graphics')
|
|
|
|
|
2017-12-14 14:03:56 +02:00
|
|
|
def groupId(self):
|
|
|
|
return 'graphics'
|
|
|
|
|
2017-05-15 13:40:38 +10:00
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
2017-07-10 16:31:14 +10:00
|
|
|
|
|
|
|
def initAlgorithm(self, config=None):
|
2017-08-30 07:28:25 +10:00
|
|
|
self.addParameter(QgsProcessingParameterFeatureSource(self.INPUT,
|
|
|
|
self.tr('Input layer')))
|
|
|
|
self.addParameter(QgsProcessingParameterField(self.XFIELD,
|
|
|
|
self.tr('X attribute'),
|
|
|
|
parentLayerParameterName=self.INPUT,
|
|
|
|
type=QgsProcessingParameterField.Numeric))
|
|
|
|
self.addParameter(QgsProcessingParameterField(self.YFIELD,
|
|
|
|
self.tr('Y attribute'),
|
|
|
|
parentLayerParameterName=self.INPUT,
|
|
|
|
type=QgsProcessingParameterField.Numeric))
|
|
|
|
|
|
|
|
self.addParameter(QgsProcessingParameterFileDestination(self.OUTPUT, self.tr('Scatterplot'), self.tr('HTML files (*.html)')))
|
|
|
|
self.addOutput(QgsProcessingOutputHtml(self.OUTPUT, self.tr('Scatterplot')))
|
2015-01-17 14:57:21 +02:00
|
|
|
|
2017-05-15 13:40:38 +10:00
|
|
|
def name(self):
|
|
|
|
return 'vectorlayerscatterplot'
|
|
|
|
|
|
|
|
def displayName(self):
|
|
|
|
return self.tr('Vector layer scatterplot')
|
|
|
|
|
2017-05-15 16:19:46 +10:00
|
|
|
def processAlgorithm(self, parameters, context, feedback):
|
2017-08-30 07:28:25 +10:00
|
|
|
source = self.parameterAsSource(parameters, self.INPUT, context)
|
|
|
|
xfieldname = self.parameterAsString(parameters, self.XFIELD, context)
|
|
|
|
yfieldname = self.parameterAsString(parameters, self.YFIELD, context)
|
2015-01-17 14:57:21 +02:00
|
|
|
|
2017-08-30 07:28:25 +10:00
|
|
|
output = self.parameterAsFileOutput(parameters, self.OUTPUT, context)
|
2013-02-28 22:08:32 +01:00
|
|
|
|
2017-08-30 07:28:25 +10:00
|
|
|
values = vector.values(source, xfieldname, yfieldname)
|
2017-02-10 11:47:56 +02:00
|
|
|
data = [go.Scatter(x=values[xfieldname],
|
|
|
|
y=values[yfieldname],
|
2017-02-10 14:30:32 +02:00
|
|
|
mode='markers')]
|
2017-02-15 20:05:17 +02:00
|
|
|
plt.offline.plot(data, filename=output, auto_open=False)
|
2017-08-30 07:28:25 +10:00
|
|
|
|
|
|
|
return {self.OUTPUT: output}
|