Re: [Qgis-user] Plugins repository unavailable for 2.18? On MacOS

2018-05-26 Thread Corda
Yep, same result for me (MacOSX Yosemite):

PyQt4.QtCore.QUrl(u'https://plugins.qgis.org/plugins/plugins.xml/?qgis=2.18')
None
None
6



--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-User-f4125267.html
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Plugins repository unavailable for 2.18? On MacOS

2018-05-26 Thread Richard Duivenvoorde
On 26-05-18 23:37, Eric Fielding wrote:
> I get this from the test (OSX Sierra 10.12.6):
> 
> PyQt4.QtCore.QUrl(u'https://plugins.qgis.org/plugins/plugins.xml/?qgis=2.18')
> None
> None
> 6

Thanks for reporting back.

Mmm, ok that is NOT right. I'll ask one of the devs with a mac to have a
look. If all fails I remove plugins.qgis.org from Cloudflare caching.

Regards,

Richard
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Plugins repository unavailable for 2.18? On MacOS

2018-05-26 Thread Eric Fielding
I get this from the test (OSX Sierra 10.12.6):

PyQt4.QtCore.QUrl(u'https://plugins.qgis.org/plugins/plugins.xml/?qgis=2.18')
None
None
6



--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-User-f4125267.html
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Plugins repository unavailable for 2.18? On MacOS

2018-05-26 Thread 0x906
MacPro, OSX Sierra.

PyQt4.QtCore.QUrl(u'https://plugins.qgis.org/plugins/plugins.xml/?qgis=2.18')
None
None
6




> On May 26, 2018, at 3:46 PM, Richard Duivenvoorde  wrote:
> 
> On 26-05-18 20:35, Corda wrote:
>> I have exactly the same problem since last week or so, and haven't been able
>> to solve it yet. I can see the plugins at the url in a webpage in Safari,
>> but the repository is unavailable in the plugin manager for QGIS 2.18.
>> I don't really want to install 3.x just yet. Has reinstalling 2.18 solved
>> the problem for anyone?
> 
> So this appears to be a Mac only problem?
> Only thing that has changed is that Cloudflare is now in the middle...
> Could it be that a mac is caching the certificates or so?
> 
> 
> Can somebody with a mac (and having this problem) try to run the
> following in a file in the Python console?
> 
> 
> 
> from qgis.PyQt.QtNetwork import QNetworkRequest
> from qgis.PyQt.QtCore import *
> 
> def handle(reply):
>print ''
>print reply.url()
>print reply.attribute(QNetworkRequest.HttpStatusCodeAttribute)
>print reply.attribute(QNetworkRequest.HttpReasonPhraseAttribute)
>print reply.error()
> 
> def sslproblem(reply):
>print 'ssl problem'
>print reply
> 
> def test():
>nam = QgsNetworkAccessManager.instance()
>nam.finished.connect(handle)
>nam.sslErrors.connect(sslproblem)
>url='https://plugins.qgis.org/plugins/plugins.xml/?qgis=2.18'
>nam.get(QNetworkRequest(QUrl(url)))
> 
> test()
> 
> 
> 
> 
> With me this results in:
> 
> PyQt4.QtCore.QUrl(u'https://plugins.qgis.org/plugins/plugins.xml/?qgis=2.18')
> 200
> OK
> 0
> 
> Please report back if different.
> 
> Regards,
> 
> Richard Duivenvoorde
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Plugins repository unavailable for 2.18? On MacOS

2018-05-26 Thread Richard Duivenvoorde
On 26-05-18 20:35, Corda wrote:
> I have exactly the same problem since last week or so, and haven't been able
> to solve it yet. I can see the plugins at the url in a webpage in Safari,
> but the repository is unavailable in the plugin manager for QGIS 2.18.
> I don't really want to install 3.x just yet. Has reinstalling 2.18 solved
> the problem for anyone?

So this appears to be a Mac only problem?
Only thing that has changed is that Cloudflare is now in the middle...
Could it be that a mac is caching the certificates or so?


Can somebody with a mac (and having this problem) try to run the
following in a file in the Python console?



from qgis.PyQt.QtNetwork import QNetworkRequest
from qgis.PyQt.QtCore import *

def handle(reply):
print ''
print reply.url()
print reply.attribute(QNetworkRequest.HttpStatusCodeAttribute)
print reply.attribute(QNetworkRequest.HttpReasonPhraseAttribute)
print reply.error()

def sslproblem(reply):
print 'ssl problem'
print reply

def test():
nam = QgsNetworkAccessManager.instance()
nam.finished.connect(handle)
nam.sslErrors.connect(sslproblem)
url='https://plugins.qgis.org/plugins/plugins.xml/?qgis=2.18'
nam.get(QNetworkRequest(QUrl(url)))

test()




With me this results in:

PyQt4.QtCore.QUrl(u'https://plugins.qgis.org/plugins/plugins.xml/?qgis=2.18')
200
OK
0

Please report back if different.

Regards,

Richard Duivenvoorde
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] Problems to run grass7 for QGIS 2.18 in OSX

2018-05-26 Thread José Carlos Guerrero Antúnez
Hi,

How to configure correctly grass7 in QGIS 2.18.15? I'm working in macOS
High Sierra 10.13.4.

I tried two possibilities in Customs paths in Grass Options:

a)  I changed to
/Applications/QGIS.app/Contents/MacOS/grass7

And then, I got this error message

"Specified path does not exist:"

b) I changed to
/Users/joseca/.grass7

And then I got this error message
"unsupported operand type(s) for +: 'NoneType' and 'str' See log for more
details"

What am I doing wrong?

Kind regards,



-- 
José Carlos Guerrero
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS UTM projection of longitudes > 180 degrees

2018-05-26 Thread Eric Fielding
Nicolas,

Thanks for the suggestion. I am trying to use "save raster layer as" in
QGIS, but it is getting the extent of the data completely wrong in the UTM
zone 14 coordinates. It seems that QGIS (2.18.2 is what I have now) is
confused about the location of raster data at longitude > 180 degrees. I
will try to change the projection outside QGIS with "gdalwarp".

++Eric


Nicolas Cadieux wrote
> Hi,
> When experiencing this kind of difficulty, I normally just save the files
> in the desired projection.  On the fly will have difficulties when
> crossing “projection limites”.  Keep in mind that reprojecting data will
> change the values so keep a back up of the original data.
> Nicolas





--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-User-f4125267.html
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Plugins repository unavailable for 2.18?

2018-05-26 Thread Corda
I have exactly the same problem since last week or so, and haven't been able
to solve it yet. I can see the plugins at the url in a webpage in Safari,
but the repository is unavailable in the plugin manager for QGIS 2.18.
I don't really want to install 3.x just yet. Has reinstalling 2.18 solved
the problem for anyone?

Cheers,
Corine



--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-User-f4125267.html
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Plugins repository unavailable for 2.18?

2018-05-26 Thread 0x906
I don’t think it's an ISP issue. I just finished a 3.0.2 installation and it 
works perfectly. For some reason the 2.18 is still unavailable within QGIS. 


> On May 26, 2018, at 9:33 AM, Eric Fielding  
> wrote:
> 
> Maybe my home ISP is blocking some part of the protocol for the QGIS
> application.

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS UTM projection of longitudes > 180 degrees

2018-05-26 Thread Nicolas Cadieux
Hi,
When experiencing this kind of difficulty, I normally just save the files in 
the desired projection.  On the fly will have difficulties when crossing 
“projection limites”.  Keep in mind that reprojecting data will change the 
values so keep a back up of the original data.
Nicolas

> Le 26 mai 2018 à 10:36, Eric Fielding  a écrit :
> 
> I have some geophysical data (subducting slab depth) that is stored in NetCDF 
> raster format (from this download site 
> https://earthquake.usgs.gov/data/slab/models.php). I am working with the file 
> that is for Mexico and Central America in a regular WGS84 longitude-latitude 
> grid (CRS EPSG:4326), and it has the longitudes all as positive numbers, i.e. 
> from 254 to 279 degrees. When I load this in QGIS and plot it in the original 
> EPSG:4326 projection, it plots in the positive longitude as expected. When I 
> try to use the on-the-fly CRS transformation to plot the map in UTM zone 14 
> (EPSG:32614), the raster does not plot. I have other data in CRS 4326 (raster 
> and vector) that has negative longitudes and that plots in the UTM zone 14 
> map view. When I do plots with the Generic Mapping Tools (GMT) software, it 
> does not care whether the longitudes are negative or > 180 degrees. Do I need 
> to shift my gridded data to have the negative longitudes to work with it in 
> QGIS? 
> Sent from the QGIS - User mailing list archive at Nabble.com.
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] QGIS UTM projection of longitudes > 180 degrees

2018-05-26 Thread Eric Fielding
I have some geophysical data (subducting slab depth) that is stored in NetCDF
raster format (from this download site 
https://earthquake.usgs.gov/data/slab/models.php
  ). I am working with the
file that is for Mexico and Central America in a regular WGS84
longitude-latitude grid (CRS EPSG:4326), and it has the longitudes all as
positive numbers, i.e. from 254 to 279 degrees. When I load this in QGIS and
plot it in the original EPSG:4326 projection, it plots in the positive
longitude as expected. When I try to use the on-the-fly CRS transformation
to plot the map in UTM zone 14 (EPSG:32614), the raster does not plot. I
have other data in CRS 4326 (raster and vector) that has negative longitudes
and that plots in the UTM zone 14 map view. When I do plots with the Generic
Mapping Tools (GMT) software, it does not care whether the longitudes are
negative or > 180 degrees. Do I need to shift my gridded data to have the
negative longitudes to work with it in QGIS? 



--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-User-f4125267.html___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] Profile toll "no attribute 'classFactory'"

2018-05-26 Thread Fernando M. Roxo da Motta


  Hi all,

  I am using :

QGIS version   2.18.16
QGIS code revision d473c30
Compiled against Qt4.8.7
Running against Qt 4.8.7
Compiled against GDAL/OGR  1.11.3
Running against GDAL/OGR   1.11.3
Compiled against GEOS  3.5.0-CAPI-1.9.0
Running against GEOS   3.5.0-CAPI-1.9.0 r4084
PostgreSQL Client Version  9.5.2
SpatiaLite Version 4.3.0a
QWT Version5.2.3
PROJ.4 Version 492
QScintilla2 Version2.9.1

  Installed from Qgis PPA on [Xu|U]buntu 16.04.4 LTS

  Today I have updated the Profile Tool plugin to version 4.1.1 from
the official repository and it started to throw the error:

=8<---
Couldn't load plugin profiletool due to an error when calling its
classFactory() method 

AttributeError: 'module' object has no attribute 'classFactory' 
Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/qgis/utils.py", line 333, in
startPlugin plugins[packageName] = package.classFactory(iface)
AttributeError: 'module' object has no attribute 'classFactory'


Python version: 2.7.12 (default, Dec  4 2017, 14:50:18) [GCC 5.4.0
20160609] QGIS version: 2.18.16 Las Palmas, d473c30 

Python Path:
/usr/share/qgis/python/plugins/processing
/home/roxo/.qgis2/python/plugins/processing_workflow
/home/roxo/.qgis2/python/plugins/geoserverexplorer/ext-libs/httplib2-0.8-py2.7.egg
/home/roxo/.qgis2/python/plugins/geoserverexplorer/ext-libs/python_dateutil-2.2-py2.7.egg
/home/roxo/.qgis2/python/plugins/geoserverexplorer/ext-libs/six-1.10.0-py2.7.egg
/home/roxo/.qgis2/python/plugins/geoserverexplorer/ext-libs/requests-2.5.0-py2.7.egg
/home/roxo/.qgis2/python/plugins/geoserverexplorer/ext-libs/gsconfig-1.0.6-py2.7.egg
/home/roxo/.qgis2/python/plugins/geoserverexplorer/ext-libs/gisdata-0.5.4-py2.7.egg
/home/roxo/.qgis2/python/plugins/geoserverexplorer/ext-libs/gsimporter-1.0.0-py2.7.egg
/home/roxo/.qgis2/python/plugins/pktools
/home/roxo/.qgis2/python/plugins/LecoS
/usr/share/qgis/python
/home/roxo/.qgis2/python
/home/roxo/.qgis2/python/plugins
/usr/share/qgis/python/plugins
/home/roxo/lib/python2.7/site-packages/pysit-0.5b3-py2.7-linux-x86_64.egg
/home/roxo/lib/python2.7/site-packages
/home/roxo/desenv/python/lib/python
/usr/lib/python2.7
/usr/lib/python2.7/plat-x86_64-linux-gnu
/usr/lib/python2.7/lib-tk
/usr/lib/python2.7/lib-old
/usr/lib/python2.7/lib-dynload
/home/roxo/.local/lib/python2.7/site-packages
/usr/local/lib/python2.7/dist-packages
/usr/lib/python2.7/dist-packages
/usr/lib/python2.7/dist-packages/PILcompat
/usr/lib/python2.7/dist-packages/gtk-2.0
/usr/lib/python2.7/dist-packages/wx-3.0-gtk2
/home/roxo/.qgis2//python
/home/roxo/.qgis2/python/plugins/mmqgis/forms
/home/roxo/.qgis2/python/plugins/NNJoin
.
/home/roxo/.qgis2/python/plugins/DigitizingTools/tools
/home/roxo/.qgis2/python/plugins/DsgTools
/home/roxo/.qgis2/python/plugins/DsgTools/ProductionTools/CopyPasteTool
/home/roxo/.qgis2/python/plugins/midvatten-i18n
/home/roxo/.qgis2/python/plugins/midvatten-i18n/tools
/home/roxo/.qgis2/python/plugins
/home/roxo/.qgis2/python/plugins
/home/roxo/.qgis2/python/plugins/shapetools/ext-libs
/home/roxo/.qgis2/python/plugins/geoserverexplorer/ext-libs
/home/roxo/.qgis2/python/plugins/FeatureGridCreator
/home/roxo/.qgis2/python/plugins/MultiDistanceBuffer
/home/roxo/.qgis2/python/plugins/QuickMultiAttributeEdit/forms
/home/roxo/.qgis2/python/plugins/sensum_eo_tools/sensum_library
=8<---

  Is there any clue what can be going on?  How can I help to fix this?




  Roxo

-- 
 Non luctari, ludare ---+ WYSIWYG
Fernando M. Roxo da Motta   | Editor?
Except where explicitly stated I speak on my own behalf.|  VI !!
PU5RXO  | I see text,
 Quis custodiet ipsos custodes?-+ I get text!
 
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Plugins repository unavailable for 2.18?

2018-05-26 Thread Eric Fielding
Richard Duivenvoorde wrote
> On 25-05-18 21:04, Eric Fielding wrote:
> ...
> Which, looking at it, reminds me that we had a stylesheet in it, which
> should make it appear as an html page...
> 
> Ah, fixed. Please try again.

Thanks, the stylesheet fix worked and I can now see all the plugins in my
Chrome browser as an HTML page. 

QGIS plugins manager still says that the repository is unavailable on my Mac
computer, even after I restarted QGIS and pressed the "reload repository"
button. Maybe my home ISP is blocking some part of the protocol for the QGIS
application.



--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-User-f4125267.html
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Problem with processing and GRASS algorithms in QGIS 3

2018-05-26 Thread Stephen
Hi again,

I've made some more progress on this.

The problem starts in line 350 in the executeGrass() method of
Grass7Utils.py
https://github.com/qgis/QGIS/blob/307d082e3de804064a7295aa079ee6cd0e47845a/python/plugins/processing/algs/grass7/Grass7Utils.py#L350

> @staticmethod
> def executeGrass(commands, feedback, outputCommands=None):
> loglines = []
> loglines.append(Grass7Utils.tr('GRASS GIS 7 execution console 
> output'))
> grassOutDone = False

> command, grassenv = Grass7Utils.prepareGrassExecution(commands)

> #QgsMessageLog.logMessage('exec: {}'.format(command), 'DEBUG', Qgis.Info)

'command' is a Python list; When prepareGrassExecution() returns
command, the first element is empty.

So what is happening here? Let's look in prepareGrassExecution() (line
339) to see how command is prepared:

https://github.com/qgis/QGIS/blob/307d082e3de804064a7295aa079ee6cd0e47845a/python/plugins/processing/algs/grass7/Grass7Utils.py#L339

> command = [Grass7Utils.command,
>os.path.join(Grass7Utils.grassMapsetFolder(), 'PERMANENT'),
> '--exec', Grass7Utils.grassBatchJobFilename()]

The attribute Grass7Utils.command is not set. It is set by default to
None in line 73 and then not after that.

Let me stop execution before line 339 in the debugger and do some
inspection in the console:

 Grass7Utils.command
 type(Grass7Utils.command)
> 

The method Grass7Utils.grassBin() finds the path to the binary:
 Grass7Utils.grassBin()
> '/usr/bin/grass72'

And now, command is properly set:
 type(Grass7Utils.command)
> 
 Grass7Utils.command
> '/usr/bin/grass72'

Anyway, my code then runs as expected after this point.

I think this is a bug no matter how one looks at it. If a path variable
is not being set even though GRASS is installed and working, that's a
bug. If it only occurs because there is something faulty about my input,
then it's still a bug because it fails to validate the input and give an
appropriate error message.

To me, the obvious fix is to call grassBin() once before line 339, but
maybe that would cause other problems, I don't know.

I'd be grateful for any suggestions.

Cheers

Stephen


On 26.05.2018 00:18, Stephen wrote:
> Hi everyone,
> 
> I'm porting some PyQGIS 2 code to 3.
> 
> This post is a continuation of the issue I first mentioned in this post
> to the list:
> 
> http://lists.osgeo.org/pipermail/qgis-user/2018-May/042343.html
> 
> I've since upgraded from 3.0.1 to 3.0.2. (Previously working code did
> not work with 3.1 master.)
> 
> My code contains the following statement:
>> grid_r_raster_layer = processing.run("grass7:v.to.rast", {'input': grid_v, 
>> 'type': 0, 'use': 1,
>> 'GRASS_REGION_PARAMETER': extent,
>> 'output': file_grid_r,
>> 'GRASS_REGION_CELLSIZE_PARAMETER': 
>> 0.008333,
>> 'GRASS_SNAP_TOLERANCE_PARAMETER': -1,
>> 'GRASS_MIN_AREA_PARAMETER': 0.000100},
>>  feedback=QgsProcessingFeedback())['output']
> 
> 'grid_v' is a QgsVectorLayer object and 'file_grid_r' a string
> containing a path:
> 
> type(grid_v)
>> 
> grid_v.isValid()
>> True
> print(file_grid_r)
>> /tmp/processing_3951f631a6664dd2ac1924f0536a7dd0/5b088658e2ff22
> 
> If I execute this code in the pycharm debugger, I get this output:
> 
>> Traceback (most recent call last):
>>   File 
>> "/usr/share/qgis/python/plugins/processing/algs/grass7/Grass7Algorithm.py", 
>> line 384, in processAlgorithm
>> Grass7Utils.executeGrass(self.commands, feedback, self.outputCommands)
>>   File 
>> "/usr/share/qgis/python/plugins/processing/algs/grass7/Grass7Utils.py", line 
>> 367, in executeGrass
>> startupinfo=si if isWindows() else None
>>   File "/usr/lib64/python3.5/subprocess.py", line 676, in __init__
>> restore_signals, start_new_session)
>>   File "/usr/lib64/python3.5/subprocess.py", line 1211, in _execute_child
>> executable = os.fsencode(executable)
>>   File "/usr/lib64/python3.5/os.py", line 864, in fsencode
>> raise TypeError("expect bytes or str, not %s" % type(filename).__name__)
>> TypeError: expect bytes or str, not NoneType
> 
> (This is progress! In 3.0.1, I didn't get any traceback at all.)
> 
> The problem would appear to be in Grass7Utils.py (or be triggered there;
> perhaps my input is faulty). Here's the code around line 367 (first line
> is 359, last is 379)
> 
>> with subprocess.Popen(
>> command,
>> shell=True if isMac() else False,
>> stdout=subprocess.PIPE,
>> stdin=subprocess.DEVNULL,
>> stderr=subprocess.STDOUT,
>> universal_newlines=True,
>> env=grassenv,
>> startupinfo=si if isWindows() else None
>> ) as proc:
>> for line in 

Re: [Qgis-user] Plugins repository unavailable for 2.18?

2018-05-26 Thread Richard Duivenvoorde
On 25-05-18 21:04, Eric Fielding wrote:
> I also see a blank page in Google Chrome browser at that URL.

Look at the source (Luke :-)), of the page. You should see something
like the attached screenie.

Which, looking at it, reminds me that we had a stylesheet in it, which
should make it appear as an html page...

Ah, fixed. Please try again.

Regards,

Richard Duivenvoorde


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Plugins repository unavailable for 2.18?

2018-05-26 Thread Andre Joost

Am 26.05.18 um 10:36 schrieb Richard Duivenvoorde:

On 26-05-18 09:21, Phil Wyatt wrote:

I did  fresh installs of 2.18 and 3.0 on a new computer today and both
have the repository listed as
https://plugins.qgis.org/plugins/plugins.xml  - both work fine for me
and show the correct plugins for each version. Maybe it’s just the extra
?qgis=2.18 is the bit that has been changed?


Nope, never changed. Unless confirmed somewhere else, I consider this
noise :-)



The 2.18 repo throws an error if you put it in a browser due to an error 
in the description of the Indicatrix mapper plugin.


But it seems to work within QGIS.

Greetings,
Andre Joost


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Plugins repository unavailable for 2.18?

2018-05-26 Thread Richard Duivenvoorde
On 26-05-18 09:21, Phil Wyatt wrote:
> I did  fresh installs of 2.18 and 3.0 on a new computer today and both
> have the repository listed as
> https://plugins.qgis.org/plugins/plugins.xml  - both work fine for me
> and show the correct plugins for each version. Maybe it’s just the extra
> ?qgis=2.18 is the bit that has been changed?

Nope, never changed. Unless confirmed somewhere else, I consider this
noise :-)

Regards,

Richard Duivenvoorde
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Plugins repository unavailable for 2.18?

2018-05-26 Thread Phil Wyatt
I did  fresh installs of 2.18 and 3.0 on a new computer today and both have the 
repository listed as https://plugins.qgis.org/plugins/plugins.xml  - both work 
fine for me and show the correct plugins for each version. Maybe it’s just the 
extra ?qgis=2.18 is the bit that has been changed?

 

Cheers - Phil

 

From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf Of 
Fielding, Eric J (329A)
Sent: Saturday, 26 May 2018 2:42 AM
To: qgis-user@lists.osgeo.org
Subject: [Qgis-user] Plugins repository unavailable for 2.18?

 

Hello,

 

Has something changed about the plugins repository for version 2.18? I have not 
yet upgraded to version 3.x, and sometime in the last month or so the plugins 
repository (https://plugins.qgis.org/plugins/plugins.xml/?qgis=2.18) has 
stopped working for me.

 

Thanks,

++Eric Fielding

 

-- 

Eric Fielding

Jet Propulsion Lab 

4800 Oak Grove Drive   

Pasadena, CA   91109

USA

 

 

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user