25.1.4. GPS
25.1.4.1. Convertir les données GPS
Uses the GPSBabel tool to convert a GPS data file from a range of formats to the GPX standard format.
Paramètres
Libellé |
Nom |
Type |
Description |
---|---|---|---|
Fichier d’entrée |
|
[fichier] |
File containing the data to convert |
Format |
|
[enumeration] |
Format of the file to convert, from this list. |
Type d’entité |
|
[enumeration] Par défaut : 0 |
The type of data to convert
|
Sortie |
|
[vecteur : tout type] Par défaut: |
Specification of the output GPX file. One of:
|
Sorties
Libellé |
Nom |
Type |
Description |
---|---|---|---|
Couche en sortie |
|
[vecteur : tout type] |
Output layer with data in GPX standard format |
Code Python
ID de l’algorithme : native:convertgpsdata
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Utiliser les algorithmes du module de traitements depuis la console Python for details on how to run processing algorithms from the Python console.
25.1.4.2. Convert GPX feature type
Uses the GPSBabel tool to convert GPX features from one type to another (e.g. converting all waypoint features to a route).
Paramètres
Libellé |
Nom |
Type |
Description |
---|---|---|---|
Fichier d’entrée |
|
[fichier] |
File containing the data to convert |
Conversion |
|
[enumeration] Par défaut : 0 |
The type of conversion to apply
|
Sortie |
|
[vecteur : point, ligne] Par défaut: |
Specification of the output file. One of:
|
Sorties
Libellé |
Nom |
Type |
Description |
---|---|---|---|
Sortie |
|
[vecteur : tout type] |
Output layer with converted GPX features |
Code Python
ID de l’algorithme : native:convertgpxfeaturetype
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Utiliser les algorithmes du module de traitements depuis la console Python for details on how to run processing algorithms from the Python console.
25.1.4.3. Download GPS data from device
Uses the GPSBabel tool to download data from a GPS device into the GPX standard format.
Paramètres
Libellé |
Nom |
Type |
Description |
---|---|---|---|
Device |
|
[fichier] |
The GPS device used to create the data |
Port |
|
[enumeration] |
The port the device is connected to. |
Type d’entité |
|
[enumeration] Par défaut : 0 |
The type of data to convert
|
Sortie |
|
[vecteur : tout type] Par défaut: |
Specification of the output file. One of:
|
Sorties
Libellé |
Nom |
Type |
Description |
---|---|---|---|
Couche en sortie |
|
[vecteur : tout type] |
Output layer with data in GPX standard format |
Code Python
ID de l’algorithme : native:downloadgpsdata
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Utiliser les algorithmes du module de traitements depuis la console Python for details on how to run processing algorithms from the Python console.
25.1.4.4. Upload GPS data to device
Uses the GPSBabel tool to upload data to a GPS device from the GPX standard format.
Paramètres
Libellé |
Nom |
Type |
Description |
---|---|---|---|
Fichier d’entrée |
|
[fichier] |
|
Device |
|
[fichier] |
The GPS device to upload the data to |
Port |
|
[enumeration] |
The port the device is connected to. |
Type d’entité |
|
[enumeration] Par défaut : 0 |
The type of data to upload
|
Sorties
No output is provided. If successful, data are loaded to the device.
Code Python
ID de l’algorithme : native:uploadgpsdata
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Utiliser les algorithmes du module de traitements depuis la console Python for details on how to run processing algorithms from the Python console.