Package Details: giseditor 0.27-3

Git Clone URL: https://aur.archlinux.org/giseditor.git (read-only, click to copy)
Package Base: giseditor
Description: A gis editor for .gpx .gdb and download maps source
Upstream URL: https://github.com/dayanuyim/GisEditor
Conflicts: giseditor-git
Provides: giseditor
Submitter: yanganto
Maintainer: yanganto
Last Packager: sikmir
Votes: 6
Popularity: 0.000000
First Submitted: 2016-05-10 09:12 (UTC)
Last Updated: 2019-10-07 19:11 (UTC)

Latest Comments

1 2 Next › Last »

yanganto commented on 2018-11-23 10:12 (UTC)

Many thanks, @sikmir.

sikmir commented on 2018-11-23 09:05 (UTC)

To get it worked, I've removed the following ones:

    python3 -c 'import image' > /dev/null || python3 -m pip install --isolated --root="$pkgdir" --ignore-installed --no-deps image
    python3 -c 'import cycler' > /dev/null || python3 -m pip install --isolated --root="$pkgdir" --ignore-installed --no-deps cycler
    python3 -c 'import matplotlib' > /dev/null || python3 -m pip install --isolated --root="$pkgdir" --ignore-installed --no-deps matplotlib
    python3 -c 'import olefile' > /dev/null || python3 -m pip install --isolated --root="$pkgdir" --ignore-installed --no-deps olefile
    python3 -c 'import pyparsing' > /dev/null || python3 -m pip install --isolated --root="$pkgdir" --ignore-installed --no-deps pyparsing
    python3 -c 'import dateutil' > /dev/null || python3 -m pip install --isolated --root="$pkgdir" --ignore-installed --no-deps python-dateutil
    python3 -c 'import pytz' > /dev/null || python3 -m pip install --isolated --root="$pkgdir" --ignore-installed --no-deps pytz
    python3 -c 'import six' > /dev/null || python3 -m pip install --isolated --root="$pkgdir" --ignore-installed --no-deps six
    python3 -c 'import timezonefinder' > /dev/null || python3 -m pip install --isolated --root="$pkgdir" --ignore-installed --no-deps timezonefinder
    python3 -c 'import certifi' > /dev/null || python3 -m pip install --isolated --root="$pkgdir" --ignore-installed --no-deps certifi

And added:

depends=(... 'python-image' 'python-cycler' 'python-matplotlib' 'python-olefile' 'python-pyparsing' 'python-dateutil' 'python-pytz' 'python-six' 'python-timezonefinder' 'python-certifi')

sikmir commented on 2018-11-20 07:40 (UTC) (edited on 2018-11-20 08:08 (UTC) by sikmir)

Another one error:

Traceback (most recent call last):
  File "/opt/giseditor/main.py", line 26, in <module>
    import src.sym as sym
  File "/opt/giseditor/src/sym.py", line 13, in <module>
    import src.util as util
  File "/opt/giseditor/src/util.py", line 17, in <module>
    from timezonefinder import TimezoneFinder
  File "/usr/lib/python3.7/site-packages/timezonefinder/__init__.py", line 3, in <module>
    from .timezonefinder import TimezoneFinder
  File "/usr/lib/python3.7/site-packages/timezonefinder/timezonefinder.py", line 9, in <module>
    from importlib_resources import open_binary
ModuleNotFoundError: No module named 'importlib_resources'

"importlib_resources is a backport of Python 3.7’s standard library importlib.resources module for Python 2.7"

yanganto commented on 2018-05-09 13:18 (UTC)

The python dependency issue is fixed in version 0.26-4.

yanganto commented on 2018-05-09 01:17 (UTC)

@sikmir Thanks for using. Please manually install timzonefinder with the following command.

python -m pip install timezonefinder

I will fix the build script later. If there is still any problem, please kindly tell me, thank you.

sikmir commented on 2018-05-08 19:44 (UTC) (edited on 2018-05-08 19:47 (UTC) by sikmir)

Traceback (most recent call last):
  File "/opt/giseditor/main.py", line 26, in <module>
    import src.sym as sym
  File "/opt/giseditor/src/sym.py", line 13, in <module>
    import src.util as util
  File "/opt/giseditor/src/util.py", line 17, in <module>
    from timezonefinder import TimezoneFinder
ModuleNotFoundError: No module named 'timezonefinder'

yanganto commented on 2017-12-26 10:51 (UTC)

@niki The v0.25 has TM2 grid feature, you may display the grid by pressing Ctrl+6. Enjoy it.

yanganto commented on 2017-06-06 07:46 (UTC)

@niki This aur package is upgraded to v0.24, which write configures in ~/.config/giseditor. We are appreciate for your suggestion.

yanganto commented on 2017-05-31 02:10 (UTC)

@niki Thanks for bug report. I already fix the dependence, and will suggest the project owner to write configure file into ~/.config/giseditor.

niki commented on 2017-05-27 14:27 (UTC) (edited on 2017-05-27 19:45 (UTC) by niki)

There is a missing dependency, probably several, here is the one I hit: python-pmw % giseditor Traceback (most recent call last): File "/opt/giseditor/main.py", line 7, in <module> import Pmw as pmw ModuleNotFoundError: No module named 'Pmw' After installing that, I get the following: % giseditor Traceback (most recent call last): File "/opt/giseditor/main.py", line 26, in <module> import src.conf as conf File "/opt/giseditor/src/conf.py", line 129, in <module> IMG_FONT = ImageFont.truetype(__img_font, IMG_FONT_SIZE) #global used font (Note: the operation is time wasting) File "/usr/lib/python3.6/site-packages/PIL/ImageFont.py", line 238, in truetype return FreeTypeFont(font, size, index, encoding) File "/usr/lib/python3.6/site-packages/PIL/ImageFont.py", line 127, in __init__ self.font = core.getfont(font, size, index, encoding) OSError: cannot open resource The __img_font has a fallback it seems from a quick look at the code from the above file, that might be missing ? That was because of a missing font, after installing ttf-arphic-ukai, I get a new error, where the app tries to write a config file in /opt, how have you overcome that issue ?