Package Details: grass 8.3.1-1

Git Clone URL: https://aur.archlinux.org/grass.git (read-only, click to copy)
Package Base: grass
Description: Geospatial data management and analysis, image processing, graphics/maps production, spatial modeling and visualization
Upstream URL: http://grass.osgeo.org/
Keywords: analysis GIS remote sensing spatial
Licenses: GPL
Submitter: Scimmia
Maintainer: kikislater
Last Packager: kikislater
Votes: 38
Popularity: 0.000003
First Submitted: 2015-09-06 15:10 (UTC)
Last Updated: 2023-11-11 13:04 (UTC)

Latest Comments

« First ‹ Previous 1 .. 8 9 10 11 12 13 14 15 16 Next › Last »

kikislater commented on 2016-01-29 09:03 (UTC)

@Scimmia : Thanks for the update, it works well now ! I can install and use addon written in python more easyly :D

Scimmia commented on 2016-01-25 16:17 (UTC)

"There is a lot of addons using python with grass, I don't want to re-write them in another language like C or C++. Grass GIS does not support python 3, so it's important to use python 2 instead of 3 until they fully support it ! If you don't have python 2 in Grass GIS at this moment, this package should be useless ..." Which is why GRASS should be calling the script with $GRASS_PYTHON, and script authors should be using #!/usr/bin/env python2. Calling "python" specifically means that you don't care which version you get. We have to be pragmatic, though, and work around upstream lunacy.

kikislater commented on 2016-01-21 10:58 (UTC) (edited on 2016-01-21 11:36 (UTC) by kikislater)

There is a lot of addons using python with grass, I don't want to re-write them in another language like C or C++. Grass GIS does not support python 3, so it's important to use python 2 instead of 3 until they fully support it ! If you don't have python 2 in Grass GIS at this moment, this package should be useless ... Watch : Note: Python 3 support is still in development Source : https://grass.osgeo.org/grass70/source/snapshot/REQUIREMENTS.html And : https://trac.osgeo.org/grass/ticket/2708 #2708 new defect Run GRASS with Python3 Jalon modifié de 7.0.2 à 7.0.3 Ticket retargeted after milestone closed Also you have this in your build : # Enabling only those features which are not enabled by default. Out of the # usefull ones, only DWG, MySQL, FFMPEG and Motif are left disabled. LAPACK # and BLAS are not used for anything in GRASS anyway. But what about v.kriging ... It needs BLAS and LAPACK package. You forgot addons which is an important part of GRASS GIS. We have a limited GRASS GIS build !

Scimmia commented on 2016-01-21 10:25 (UTC)

kikislater, really, you shouldn't be using "python" if you specifically want python2. See http://legacy.python.org/dev/peps/pep-0394/

kikislater commented on 2016-01-18 22:51 (UTC)

Ok Thank you I made a test and I saw that : Big problem with the build. Not the good python version GRASS 7.0.2 (DATA):~ > which python /usr/sbin/python [MASK raster présent] GRASS 7.0.2 (DATA):~ > /usr/sbin/python --version Python 3.5.1 [MASK raster présent] cat /usr/bin/grass70 | more #!/usr/bin/env python2 #############################################################################

Scimmia commented on 2016-01-18 22:44 (UTC)

Yeah, I figure I'll put the python symlink hack back in on the next release, which will be any time. And please, figure out what "out-of-date" means.

kikislater commented on 2016-01-18 22:39 (UTC)

Package is buggy If I want to launch grass addons, I have to put at the beginning of python script this : #!/usr/bin/env python2 For example, I use v.surf.nnbathy I have to edit v.surf.nnbathy.py and nnbathy.py and add this #!/usr/bin/env python2 at the beginning of the *.py files. Same problem as described below by kuszi Please correct the package Scimmia

kikislater commented on 2016-01-17 14:30 (UTC)

It should concern wxpython package. Edit the file yourself found in /usr/lib/python2.7/site-packages/wx-3.0-gtk2/wx/lib/plot.py And flag package wxpython out of date

HuMu_2013 commented on 2016-01-17 13:49 (UTC)

Any chance to apply this patch? http://trac.wxwidgets.org/attachment/ticket/16767/wxPython-3.0.2.0-plot.patch Since for some time the "analyze map" & "profile surface map" functions don't work.

kuszi commented on 2016-01-03 13:32 (UTC)

Addon: when script begins with: #!/usr/bin/python2 it starts to work. So, it seems that in the call chain somewhere grass python environment is "lost". It could be special to g.parser ...