mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
53 lines
1.8 KiB
Plaintext
53 lines
1.8 KiB
Plaintext
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/analysis/network/qgsnetworkspeedstrategy.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|
|
|
|
|
|
|
|
class QgsNetworkSpeedStrategy : QgsNetworkStrategy
|
|
{
|
|
%Docstring
|
|
.. versionadded:: 3.0
|
|
Strategy for calculating edge cost based on travel time. Should be
|
|
used for finding fastest path between two points.
|
|
%End
|
|
|
|
%TypeHeaderCode
|
|
#include "qgsnetworkspeedstrategy.h"
|
|
%End
|
|
public:
|
|
|
|
QgsNetworkSpeedStrategy( int attributeId, double defaultValue, double toMetricFactor );
|
|
%Docstring
|
|
Default constructor
|
|
%End
|
|
|
|
virtual QVariant cost( double distance, const QgsFeature &f ) const;
|
|
|
|
%Docstring
|
|
Returns edge cost
|
|
:rtype: QVariant
|
|
%End
|
|
|
|
virtual QgsAttributeList requiredAttributes() const;
|
|
|
|
%Docstring
|
|
Returns list of the source layer attributes needed for cost calculation.
|
|
This method called by QgsGraphDirector.
|
|
:rtype: QgsAttributeList
|
|
%End
|
|
|
|
};
|
|
|
|
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/analysis/network/qgsnetworkspeedstrategy.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|