QGIS Plugin to import gps data from ascii directly to corresponding layers | Read-only mirror of https://github.com/VilleDePully/EasyImport — Ville de Pully. Issues & pull requests at the source.
  • Python 74.3%
  • Makefile 15.1%
  • Batchfile 5.2%
  • Shell 3.1%
  • QML 1.9%
  • Other 0.4%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Arnaud Poncet-Montanges d207b67534
Add installation section to README
Added installation instructions for QGIS plugin.
2025-11-14 07:49:58 +01:00
Docs Ad Visual for Readme 2019-01-18 10:48:43 +01:00
help Revert "Revert "Portage vers QGIS 3.4 bis"" 2019-01-09 15:14:13 +01:00
i18n Add source code from Xavier Ménétrey 2016-03-04 15:38:31 +01:00
scripts Add source code from Xavier Ménétrey 2016-03-04 15:38:31 +01:00
test Revert "Revert "Portage vers QGIS 3.4 bis"" 2019-01-09 15:14:13 +01:00
.gitignore Revert "Revert "Portage vers QGIS 3.4 bis"" 2019-01-09 15:14:13 +01:00
__init__.py Revert "Revert "Portage vers QGIS 3.4 bis"" 2019-01-09 15:14:13 +01:00
config.xml Fix typo 2024-03-27 10:23:01 +01:00
easyimport.py Edit some texts 2024-03-27 10:28:47 +01:00
easyimport_dialog.py fix file names 2019-01-17 13:17:22 -05:00
EasyImport_dialog_base.ui Edit some texts 2024-03-27 10:28:47 +01:00
icon.png Add source code from Xavier Ménétrey 2016-03-04 15:38:31 +01:00
Makefile Revert "Revert "Portage vers QGIS 3.4 bis"" 2019-01-09 15:14:13 +01:00
metadata.txt Update metadata 2024-03-27 10:46:10 +01:00
pb_tool.cfg Revert "Revert "Portage vers QGIS 3.4 bis"" 2019-01-09 15:14:13 +01:00
plugin_upload.py Revert "Revert "Portage vers QGIS 3.4 bis"" 2019-01-09 15:14:13 +01:00
plugins.xml Update release date 2024-03-27 10:53:32 +01:00
pylintrc Add source code from Xavier Ménétrey 2016-03-04 15:38:31 +01:00
README.MD Add installation section to README 2025-11-14 07:49:58 +01:00
README.txt Update metadata 2024-03-27 10:46:10 +01:00
resources.py Revert "Revert "Portage vers QGIS 3.4 bis"" 2019-01-09 15:14:13 +01:00
resources.qrc Revert "Revert "Portage vers QGIS 3.4 bis"" 2019-01-09 15:14:13 +01:00

EasyImport

Simple geocoding plugin for importing GPS point data

Features

  • Imports .asc or .prn text files to QGIS predefined QGIS layers
  • Supports different import modes, such as full import or network-specific import

EasyImport

Codification

Codification is defined in config.xml

  • pointlayers
    • pointlayer.destinationlayer: Destination layer name in QGIS project
  • columnmappings
    • columnmapping.source: Column name in source data file
    • columnmapping.destination: Column name in the destination layer
  • staticmappings
    • staticmapping.value: Static value to store in the destination column staticmapping.destination

Source file format

The format accepted by EasyImport is simple text file (.asc or .prn) with spaces as separators, which must comply with the following syntax: NNNNNNabc XXXXXXX.XXX YYYYYYY.YYY ZZZ.ZZZ S.SSS CCC

  • NNNNNN: Point number (integer)
  • abc: Network, only points in this network will be imported (string)
  • XXXXXXX.XXX: X coordinate (real)
  • YYYYYYY.YYY: Y coordinate (real)
  • ZZZ.ZZZ: Z coordinate (real)
  • S.SSS: Accuracy (real)
  • CCC: code (string)
  • Everything following text can be imported into the remark field

Installation

ADD https://raw.githubusercontent.com/VilleDePully/EasyImport/master/plugins.xml

To your plugin repository list in QGIS

image

Then install or update through the dedicated menu in the QGIS plugin manager :

image