Re: [QGIS-Developer] Current crowd-funding initiatives

2019-03-25 Thread Nyall Dawson
On Tue, 26 Mar 2019 at 06:49, Andreas Neumann  wrote:
>
> Hi,
>
> I am trying to do a bit of promotion of the current crowd-funding
> initiatives at blog.qgis.org and the Swiss QGIS user group.
>
> I know about four current initiatives:
>
> - QGIS Print Layouts Graphs and Charts Campaign (North-Road/Faunalia).
> See https://north-road.com/qgis-data-plotly-campaign/
>
> - GeoPDF export support (North-Road on initiative of Land Vorarlberg).
> No public information yet, but already financed about 80%.
>
> - SLYR: the ESRI LYR and MXD to QGIS converter (North-Road). See
> https://north-road.com/slyr/
>
> - Selective Masking Symbol Layers behind Labels and Symbols. See
> http://qgis.oslandia.com/en/offre-qgis/selective-masking/
>
> Do you know any additional initiatives that I should mention?

It's not current yet, but in a couple of months we'll be launching a
"pick list" of Processing Model ETL improvements. This won't be a
traditional crowd funding campaign, but rather a set of individually
priced, atomic improvements to Processing/Graphical Modeler which
brings it closer to parity with FME/other ETL tools. Prices for each
individual item will range from 30EU -> 500EU, and we'll be asking
sponsors to entirely fund each item in entirety. Think of it like an
"à la carte" menu of improvements for models!

Nyall
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Current crowd-funding initiatives

2019-03-25 Thread Andreas Neumann

Hi,

I am trying to do a bit of promotion of the current crowd-funding 
initiatives at blog.qgis.org and the Swiss QGIS user group.


I know about four current initiatives:

- QGIS Print Layouts Graphs and Charts Campaign (North-Road/Faunalia). 
See https://north-road.com/qgis-data-plotly-campaign/


- GeoPDF export support (North-Road on initiative of Land Vorarlberg). 
No public information yet, but already financed about 80%.


- SLYR: the ESRI LYR and MXD to QGIS converter (North-Road). See 
https://north-road.com/slyr/


- Selective Masking Symbol Layers behind Labels and Symbols. See 
http://qgis.oslandia.com/en/offre-qgis/selective-masking/


Do you know any additional initiatives that I should mention?

Thanks,

Andreas

___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] GRASS 7.6.1 OSGeo4W target directory

2019-03-25 Thread Pedro Venâncio
Hi Jurgen,

The bat files are now calling:

call "%OSGEO4W_ROOT%\apps\grass\grass-grass76\etc\env.bat"
path
%OSGEO4W_ROOT%\apps\qgis-ltr-dev\bin;%OSGEO4W_ROOT%\apps\grass\grass-grass76\lib;%OSGEO4W_ROOT%\apps\grass\grass-grass76\bin;%PATH%

which does not seem correct.

grass76 --config path
C:\OSGEO4~1\apps\grass\grass76

So, shouldn't they call:

call "%OSGEO4W_ROOT%\apps\grass\grass76\etc\env.bat"
path
%OSGEO4W_ROOT%\apps\qgis-rel-dev\bin;%OSGEO4W_ROOT%\apps\grass\grass76\lib;%OSGEO4W_ROOT%\apps\grass\grass76\bin;%PATH%

Can you take a look?

Thank you very much.

Best regards,
Pedro





Jürgen E. Fischer  escreveu no dia sexta, 22/03/2019 à(s)
10:55:

> Hi Pedro,
>
> On Fri, 22. Mar 2019 at 09:49:56 +, Pedro Venâncio wrote:
> > GRASS 7.6.1 is now released and available at OSGeo4W, but it's directory
> is
> > now just 'grass76'.
>
> The path is retrieved via
>
> grass76 --config path
>
> on build (but cached - but the the current build directory will be nuked
> when
> the qgis version changes).
>
>
> Jürgen
>
> --
> Jürgen E. Fischer norBIT GmbH   Tel. +49-4931-918175-31
> Dipl.-Inf. (FH)   Rheinstraße 13Fax. +49-4931-918175-50
> Software Engineer D-26506 Norden
> https://www.norbit.de
> ___
> QGIS-Developer mailing list
> QGIS-Developer@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] replacement of QgsMapLayer::LayerType by QgsMapLayerType

2019-03-25 Thread Denis Rouzaud
Dear list,

A small warning that I am about to merge PR #9437
https://github.com/qgis/QGIS/pull/9437

This pull request adds a new scope based enum for map layer types.
In other words, QgsMapLayer::LayerType is now QgsMapLayerType.

This change has been motivated by:
- scope based enums are nicely displayed in the PyQGIS docs (see
https://qgis.org/pyqgis/master/gui/QgsAdvancedDigitizingDockWidget.html#qgis.gui.QgsAdvancedDigitizingDockWidget.AdditionalConstraint
 )
- taking the enum outside of the QgsMapLayer class:
  * allows to use forward declarations of the enum (and not including the
whole qgsmaplayer.h file)
  * avoid the rather long call: QgsMapLayer::LayerType::VectorLayer
(mandatory with scope based enums)

This means that current "green" pull request **might** actually need a
rebase and retest.

Regarding Python API compatibility, it is kept by using monkey patching. So
no worries on this side.

This follows a former merged PR that introduced a scope based enum, but
this one was kept in class
https://github.com/qgis/QGIS/pull/9425

So, basically to be nicely displayed in the PyQGIS API docs, all enums
shall be converted to scope based enums. Then, deciding to take them out of
class or not depends a bit if the enum is meant to be mainly used within
the class or not.

Thanks for reading, best wishes
And have a good rebase :)

Denis


-- 

Denis Rouzaud
de...@opengis.ch  
+41 76 370 21 22
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Plugin [1410] ImportPhotos approval notification.

2019-03-25 Thread noreply

Plugin ImportPhotos approval by pcav.
The plugin version "[1410] ImportPhotos 2.1" is now approved
Link: http://plugins.qgis.org/plugins/ImportPhotos/
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] How to update features with WFS-T & QGIS-Server 3.4?

2019-03-25 Thread Piotr Bednarek
Hi

I have a problem with WFS-T. I'm creating map using OpenLayers 5.3,
Qgis-server 3.4 and postgis 9.6-2.4. The task is to get layer with WFS and
add possibility to draw new layer records, modify(update) existing or
delete.

Getting layers, insert and delete works but there is problem with
modify(update).

I don't understand error when trying to commit update with modification. Do
you know how to fix it?
I mean "PostGIS error while changing attributes: ERROR:  prepared statement
"updatefeature" already exists" in TransactionResponse on the bottom.

Request: POST /ogc/test?request=Transaction

Body:


http://www.opengis.net/wfs;
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; service="WFS"
version="1.1.0">
   
  
 geometry
 
http://www.opengis.net/gml;
srsName="EPSG:3857">
   
  
 

   2207239.1899058325 6495535.477306303
2212704.4203063278 6494579.978657217 2212589.761230811 6492898.498726965
2206589.418038072 6493089.550906483 2205977.9400751446 6493089.550906483
2208294.948366083 6494322.088930524 2207239.1899058325
6495535.477306303

 
  
   

 
  
  
 gid
 12
  
  
 __gid
 12
  
  
 imie
  
  
 nazwisko
  
  
 adresprywa
  
  
 adres
  
  
 nrdzialki
  
  
 oznaczenie
  
  
 trescuwagi
 assd
  
  
 sesja
 1544771921921
  
  
 nrobrebu
  
  http://www.opengis.net/ogc;>
 
  
   



Response:
http://www.opengis.net/ogc;
xmlns="http://www.opengis.net/wfs;
xsi:schemaLocation="http://www.opengis.net/wfs
http://schemas.opengis.net/wfs/1.1.0/wfs.xsd;
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;>

0



Error committing updates: 
  Provider errors:; PostGIS error while changing attributes: ERROR: 
prepared statement "updatefeature" already exists





code:

var WFSTSerializer = new ol.format.WFS();
var featObject = WFSTSerializer.writeTransaction(insertedFeatures,
vectorSource.getFeatures(), deletedFeatures, {
featureType: editedLayer,
service: 'WFS',
version: '1.1.0',
srsName: 'EPSG:3857',
});
var serializer = new XMLSerializer();
var featString = serializer.serializeToString(featObject);
var request = new XMLHttpRequest();
request.open('POST', location.protocol+ "//"+ location.hostname+ ":81/ogc/"
+ projectUrl + "?request=Transaction");
request.setRequestHeader('Content-Type', 'text/xml');
request.send(featString);





--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] old windows download links on the main download page

2019-03-25 Thread Jürgen E . Fischer
Hi Idan,

On Mon, 25. Mar 2019 at 11:49:04 +0200, Idan Miara wrote:
> The links on the main download page for Windows are for 3.6.0, 3.4.5:
> https://qgis.org/en/site/forusers/download.html#
> Although 3.6.1, 3.4.6 are available here:
> http://download.osgeo.org/qgis/windows/
> Should it be updated automatically later?

Updates will be announced.


Jürgen

-- 
Jürgen E. Fischer   norBIT GmbH Tel. +49-4931-918175-31
Dipl.-Inf. (FH) Rheinstraße 13  Fax. +49-4931-918175-50
Software Engineer   D-26506 Nordenhttps://www.norbit.de
QGIS release manager (PSC)  GermanyIRC: jef on FreeNode


signature.asc
Description: PGP signature
norBIT Gesellschaft fuer Unternehmensberatung und Informationssysteme mbH
Rheinstrasse 13, 26506 Norden
GF: Juergen Fischer, Nils Kutscher HR: Amtsgericht Aurich HRB 100827
Datenschutzerklaerung: https://www.norbit.de/83/
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Plugin [1681] GroupPointsWithinDistance approval notification.

2019-03-25 Thread noreply

Plugin GroupPointsWithinDistance approval by pcav.
The plugin version "[1681] GroupPointsWithinDistance 0.0.1 Experimental" is now 
approved
Link: http://plugins.qgis.org/plugins/GroupPointsWithinDistance/
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] Unstalling feature PR 8911

2019-03-25 Thread Paolo Cavallini
Hi Alexis,

On 24/03/19 12:58, Alexis R.L. wrote:
> Greetings Everyone,
> 
> I'm simply writing to see if anyone would be able to help unstall PR
> 8911 (my PR) .
> 
>  I am aware that Mr. Dawson and Mr. Khun are highly busy and should
> review the PR eventually and that they are the most familiar with this
> part of the code. But I am still wondering if any other dev could also
> take a quick look to it and provide any sort of feedback to find any
> oversight or to help get them in the master so people can use them and
> test it in the wild.
> 
> I am aware that this might seem like a silly feature but for anyone
> making a lot of maps, this can be a lifesaver and such a thing was not
> present in other GIs that I am aware of. 

as far as I can red Nyall proposed to reimplement your code:
https://github.com/qgis/QGIS/pull/8911
Unsure at what stage he is now.
Cheers, and thanks for reminding!
-- 
Paolo Cavallini - www.faunalia.eu
QGIS.ORG Chair:
http://planet.qgis.org/planet/user/28/tag/qgis%20board/
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Plugin [1665] Climb approval notification.

2019-03-25 Thread noreply

Plugin Climb approval by pcav.
The plugin version "[1665] Climb 1.0.3" is now approved
Link: http://plugins.qgis.org/plugins/Climb/
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] old windows download links on the main download page

2019-03-25 Thread Idan Miara
Hi,

The links on the main download page for Windows are for 3.6.0, 3.4.5:
https://qgis.org/en/site/forusers/download.html#
Although 3.6.1, 3.4.6 are available here:
http://download.osgeo.org/qgis/windows/
Should it be updated automatically later?

Kind regards,
Idan
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Calc default value or Reuse last entered value -bug ?

2019-03-25 Thread Lene Fischer
Hi,
Stumbled into two problems – not sure how to solve:

Have setup an Attribute form and as a default value for area using 
‘round($area,1)’ and ‘Apply default value on update’
While digitizing and want to reuse all attributes but the area – I have changed 
the Settings- Digitizing to ‘Reuse last entered attribute value’

Works fine for the first feature… but the second feature will then get the 
first features area value. I do know ‘You can´t get it all’ – but… I love to be 
able the reuse the no-calculated attributes AND get calculated values in the 
attribute form.

Second problem – Turning off the ‘Reuse last entered attribute value’ so there 
will be no conflict – I now wants to edit the shape of a feature. Using ‘Split 
feature’ from ‘Advanced digitizing tool’ I now have two features. Both have 
same attribute values except for the calculated value – as expected. BUT one of 
the features has the original area value. I expected to get both features 
attributes updated.

Any suggestions for my two problems


Lene Fischer
Lektor

Københavns Universitet
Institut for Geovidenskab og Naturforvaltning

SKOVSKOLEN
Nødebovej 77a
3480 Fredensborg

DIR 40115084
l...@ign.ku.dk


[cid:image001.gif@01D4E2DA.1D02AED0]

[cid:image002.png@01D4E2DA.1D02AED0]<@Lene_Fischer>

___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer