Fontos

Translation is a community effort you can join. This page is currently translated at 43.40%.

28.1.5. GPS

28.1.5.1. Convert GPS data

Uses the GPSBabel tool to convert a GPS data file from a range of formats to the GPX standard format.

Paraméterek

Címke

Név

Típus

Leírás

Input file

INPUT

[fájl]

File containing the data to convert

Format

FORMAT

[felsorolás]

Format of the file to convert, from this list.

Feature type

FEATURE_TYPE

[felsorolás]

Alapértelmezett: 0

The type of data to convert

  • 0 — Waypoints

  • 1 — Routes

  • 2 — Tracks

Output

OUTPUT

[vector: any]

Alapértelmezett: [Mentés ideiglenes fájlba]

Specification of the output GPX file. One of:

  • Mentés ideiglenes fájlba

  • Mentés fájlba…

Eredmények

Címke

Név

Típus

Leírás

Output layer

OUTPUT_LAYER

[vector: any]

Output layer with data in GPX standard format

Python kód

Algorithm ID: native:convertgpsdata

import processing
processing.run("algorithm_id", {parameter_dictionary})

Az algoritmus azonosító akkor jelenik meg, ha az egérmutatót az algoritmus fölé viszi a Feldolgozás eszköztáron. A paraméterszótár tartalmazza a paraméter NAME-eket és érékeket. A feldolgozási algoritmusok Python konzolról történő futtatásával kapcsolatos részletekért lásd a Using processing algorithms from the console fejezetet.

28.1.5.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éterek

Címke

Név

Típus

Leírás

Input file

INPUT

[fájl]

File containing the data to convert

Conversion

CONVERSION

[felsorolás]

Alapértelmezett: 0

The type of conversion to apply

  • 0 — Waypoints from a route

  • 1 — Waypoints from a track

  • 2 — Routes from waypoints

  • 3 — Tracks from waypoints

Output

OUTPUT

[vector: point or line]

Alapértelmezett: [Mentés ideiglenes fájlba]

Specification of the output file. One of:

  • Mentés ideiglenes fájlba

  • Mentés fájlba…

Eredmények

Címke

Név

Típus

Leírás

Output

OUTPUT

[vector: any]

Output layer with converted GPX features

Python kód

Algorithm ID: native:convertgpxfeaturetype

import processing
processing.run("algorithm_id", {parameter_dictionary})

Az algoritmus azonosító akkor jelenik meg, ha az egérmutatót az algoritmus fölé viszi a Feldolgozás eszköztáron. A paraméterszótár tartalmazza a paraméter NAME-eket és érékeket. A feldolgozási algoritmusok Python konzolról történő futtatásával kapcsolatos részletekért lásd a Using processing algorithms from the console fejezetet.

28.1.5.3. Download GPS data from device

Uses the GPSBabel tool to download data from a GPS device into the GPX standard format.

Paraméterek

Címke

Név

Típus

Leírás

Device

DEVICE

[felsorolás]

Default:Garmin serial

The GPS device used to create the data. Must be declared in GPS Settings dialog.

Port

PORT

[felsorolás]

The port the device is connected to. Available ports depend on the OS.

Feature type

FEATURE_TYPE

[felsorolás]

Alapértelmezett: 0

The type of data to convert

  • 0 — Waypoints

  • 1 — Routes

  • 2 — Tracks

Output

OUTPUT

[vector: any]

Alapértelmezett: [Mentés ideiglenes fájlba]

Specification of the output file. One of:

  • Mentés ideiglenes fájlba

  • Mentés fájlba…

Eredmények

Címke

Név

Típus

Leírás

Output layer

OUTPUT_LAYER

[vector: any]

Output layer with data in GPX standard format

Python kód

Algorithm ID: native:downloadgpsdata

import processing
processing.run("algorithm_id", {parameter_dictionary})

Az algoritmus azonosító akkor jelenik meg, ha az egérmutatót az algoritmus fölé viszi a Feldolgozás eszköztáron. A paraméterszótár tartalmazza a paraméter NAME-eket és érékeket. A feldolgozási algoritmusok Python konzolról történő futtatásával kapcsolatos részletekért lásd a Using processing algorithms from the console fejezetet.

28.1.5.4. Upload GPS data to device

Uses the GPSBabel tool to upload data to a GPS device from the GPX standard format.

Paraméterek

Címke

Név

Típus

Leírás

Input file

INPUT

[fájl]

.GPX file containing the data to upload

Device

DEVICE

[felsorolás]

Default:Garmin serial

The GPS device you would like to upload the data to. Must be declared in GPS Settings dialog.

Port

PORT

[felsorolás]

The port the device is connected to. Available ports depend on the OS.

Feature type

FEATURE_TYPE

[felsorolás]

Alapértelmezett: 0

The type of data to upload

  • 0 — Waypoints

  • 1 — Routes

  • 2 — Tracks

Eredmények

No output is provided. If successful, data are loaded to the device.

Python kód

Algorithm ID: native:uploadgpsdata

import processing
processing.run("algorithm_id", {parameter_dictionary})

Az algoritmus azonosító akkor jelenik meg, ha az egérmutatót az algoritmus fölé viszi a Feldolgozás eszköztáron. A paraméterszótár tartalmazza a paraméter NAME-eket és érékeket. A feldolgozási algoritmusok Python konzolról történő futtatásával kapcsolatos részletekért lásd a Using processing algorithms from the console fejezetet.