Search Criteria
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: | |
Provides: | |
Submitter: | yanganto |
Maintainer: | yanganto |
Last Packager: | sikmir |
Votes: | 6 |
Popularity: | 0.000001 |
First Submitted: | 2016-05-10 09:12 |
Last Updated: | 2019-10-07 19:11 |
Dependencies (16)
- gpsbabel
- python-certifi
- python-cycler
- python-dateutil
- python-image
- python-matplotlib (python-matplotlib-git)
- python-numpy (python-numpy-mkl-bin, python-numpy-openblas, python-numpy-git, python-numpy-mkl)
- python-olefile
- python-pillow (python-pillow-git, python-pillow-simd)
- python-pmw
- python-pyparsing
- python-pytz
- python-six
- python-timezonefinder
- ttf-droid (ttf-droid-emojiless, ttf-droid-simple, ttf-droid-ib)
- ttf-arphic-ukai (optional)
Latest Comments
1 2 Next › Last »
yanganto commented on 2018-11-23 10:12
Many thanks, @sikmir.
sikmir commented on 2018-11-23 09:05
To get it worked, I've removed the following ones:
And added:
sikmir commented on 2018-11-20 07:40
Another one error:
"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
The python dependency issue is fixed in version 0.26-4.
yanganto commented on 2018-05-09 01:17
@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
yanganto commented on 2017-12-26 10:51
@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
@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
@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
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 ?