-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into heatmap_fixes
- Loading branch information
Showing
70 changed files
with
10,490 additions
and
7,641 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
|
||
class QgsOgcUtils | ||
{ | ||
%TypeHeaderCode | ||
#include <qgsogcutils.h> | ||
%End | ||
|
||
public: | ||
|
||
/** static method that creates geometry from GML2 | ||
@param XML representation of the geometry. GML elements are expected to be | ||
in default namespace (<Point>...</Point>) or in "gml" namespace (<gml:Point>...</gml:Point>) | ||
@note added in 1.9 | ||
*/ | ||
static QgsGeometry* geometryFromGML2( const QString& xmlString ) /Factory/; | ||
|
||
/** static method that creates geometry from GML2 | ||
@note added in 1.9 | ||
*/ | ||
static QgsGeometry* geometryFromGML2( const QDomNode& geometryNode ) /Factory/; | ||
|
||
/** Exports the geometry to mGML2 | ||
@return true in case of success and false else | ||
*/ | ||
static QDomElement geometryToGML2( QgsGeometry* geometry, QDomDocument& doc ); | ||
|
||
/** read rectangle from GML2 Box */ | ||
static QgsRectangle rectangleFromGMLBox( const QDomNode& boxNode ); | ||
|
||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
python/plugins/sextante/grass/description/r.random.raster.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
r.randon.raster | ||
r.random.raster - Create random raster | ||
Raster (r.*) | ||
ParameterRaster|raster|Name of input raster map|False | ||
ParameterNumericalValue|value|The number of points to allocate |None|None|1 | ||
OutputRaster|output|Output layer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
v.split | ||
v.split.length - Split lines to shorter segments by length. | ||
Vector (v.*) | ||
ParameterVector|input|Input lines layer|1|False | ||
ParameterNumber|length|Maximum segment length|None|None|10.0 | ||
OutputVector|output|Output layer | ||
|
3 changes: 1 addition & 2 deletions
3
...ns/sextante/grass/description/v.split.txt → ...xtante/grass/description/v.split.vert.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
v.split | ||
v.split - Split lines to shorter segments. | ||
v.split.vert - Split lines to shorter segments by max number of vertices. | ||
Vector (v.*) | ||
ParameterVector|input|Input lines layer|1|False | ||
ParameterNumber|length|Maximum segment length|None|None|10.0 | ||
ParameterNumber|vertices|Maximum number of vertices in segment|None|None|10 | ||
OutputVector|output|Output layer | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.