2013-07-11 10:36:27 +02:00
|
|
|
/** \ingroup analysis
|
|
|
|
*/
|
|
|
|
|
|
|
|
class QgsPointSample
|
|
|
|
{
|
|
|
|
%TypeHeaderCode
|
|
|
|
#include <qgspointsample.h>
|
|
|
|
%End
|
2014-01-27 09:22:24 +01:00
|
|
|
public:
|
2015-10-07 11:55:34 +11:00
|
|
|
QgsPointSample( QgsVectorLayer* inputLayer, const QString& outputLayer, const QString& nPointsAttribute, const QString& minDistAttribute = QString() );
|
2014-01-27 09:22:24 +01:00
|
|
|
~QgsPointSample();
|
2013-07-11 10:36:27 +02:00
|
|
|
|
2015-07-29 11:52:14 +02:00
|
|
|
/** Starts calculation of random points
|
2014-01-27 09:22:24 +01:00
|
|
|
@return 0 in case of success*/
|
|
|
|
int createRandomPoints( QProgressDialog* pd );
|
2013-07-11 10:36:27 +02:00
|
|
|
};
|