Re: [QGIS-Developer] [ui] blue != blue

2021-02-03 Thread Peter Petrik
Hi, The point cloud icons were created in 2 minutes in the most trivial way to just have "anything", to have development going. Assuming that someone with good designer skills may pick it up and replace it. So no offense here. P. On Wed, Feb 3, 2021 at 10:30 PM Richard Duivenvoorde wrote: > >

Re: [QGIS-Developer] [ui] blue != blue

2021-02-03 Thread Richard Duivenvoorde
On 2/3/21 5:25 PM, Alexandre Neto wrote: > Richard, can you create an issue and assign it to me? I will give it a look. https://github.com/qgis/QGIS/issues/41344 I could not assign it to you, though Regards, Richard Duivenvoorde ___ QGIS-Developer

Re: [QGIS-Developer] QGIS server landing page when running as fastcgi?

2021-02-03 Thread Richard Duivenvoorde
On 2/3/21 5:47 PM, Alessandro Pasotti wrote: >> But I still fail to see the same "QGIS Server Catalog" when I run it in >> cgi-bin. >> >> I do see that in the docker there seems to be some redirection? The config >> works for localhost/ but I think most peeps will (at least try) first in >>

Re: [QGIS-Developer] Can't get values from QgsMeshLayer

2021-02-03 Thread Vincent Cloarec
thinking about, if you use only: mesh.updateTriangularMesh() no need to handle with crs ans transform, I think results will be in layer coordinates. Le mer. 3 févr. 2021 à 15:45, Enrico Ferreguti a écrit : > Thanks for the quick reply Vincent, it was really the crs mismatch. I > didn't aware

Re: [QGIS-Developer] [Qgis-user] New QGIS Date/Time Tools Plugin

2021-02-03 Thread C Hamilton
Thanks Jeroen, Here is a link to the timezone geopackage. https://drive.google.com/file/d/1IS_bExc5M2IhadK9hzE012oorvV3IbBp/view?usp=sharing You could also use the shapefile from https://github.com/evansiroky/timezone-boundary-builder/releases/tag/2020d I am using the version with oceans. I

Re: [QGIS-Developer] Can't get values from QgsMeshLayer

2021-02-03 Thread Enrico Ferreguti
Thanks for the quick reply Vincent, it was really the crs mismatch. I didn't aware that for extracting values the underlying triangular mesh has to be updated. anyway there is a little issue in the script you provide, even the sample point has to be transformed to MapCanvas crs p1 =

Re: [QGIS-Developer] QGIS server landing page when running as fastcgi?

2021-02-03 Thread Alessandro Pasotti
On Wed, Feb 3, 2021 at 5:23 PM Richard Duivenvoorde wrote: > > On 2/3/21 2:20 PM, Alessandro Pasotti wrote: > > Hi Richard, > > > > I've put up an example with Apache here: > > https://github.com/elpaso/qgis-server-docker > > > > Landing page works out of the box and there is a sample project

Re: [QGIS-Developer] [ui] blue != blue

2021-02-03 Thread Alexandre Neto
Richard, can you create an issue and assign it to me? I will give it a look. Thanks, Alex A quarta, 3/02/2021, 15:00, Charles Dixon-Paver escreveu: > From what I can see, the SAP HANA icon is "close enough" in colour scheme > to the existing ones, as I checked the colours for the hana icon

Re: [QGIS-Developer] QGIS server landing page when running as fastcgi?

2021-02-03 Thread Richard Duivenvoorde
On 2/3/21 2:20 PM, Alessandro Pasotti wrote: > Hi Richard, > > I've put up an example with Apache here: > https://github.com/elpaso/qgis-server-docker > > Landing page works out of the box and there is a sample project too. > > I'm also having problems seeing the logs from QGIS into the apache

Re: [QGIS-Developer] Can't get values from QgsMeshLayer

2021-02-03 Thread Vincent Cloarec
I rewrite your script : ## mesh=QgsMeshLayer('/your/path//20210202_211414_ICON_EU_P06_.grb2','mesh','mdal') print("mesh is valid:",mesh.isValid()) # First, we need to build the triangular mesh used to render and access the mesh from the

Re: [QGIS-Developer] Can't get values from QgsMeshLayer

2021-02-03 Thread Enrico Ferreguti
3.16 The attachment was missing. You can download it from here: https://beato.duckdns.org/nextcloud/s/Ra4opS94zYfgfXa Il mer 3 feb 2021, 16:26 Vincent Cloarec ha scritto: > Hi Enrico, > > As that will depend of the version of QGIS, which version do you use? > > Le mer. 3 févr. 2021 à 10:59,

Re: [QGIS-Developer] Can't get values from QgsMeshLayer

2021-02-03 Thread Vincent Cloarec
Hi Enrico, As that will depend of the version of QGIS, which version do you use? Le mer. 3 févr. 2021 à 10:59, Enrico Ferreguti a écrit : > I'm trying to write a simple function for retrieving wind speed and > direction at a specified moment from a given grib file readable as mesh > layer the

Re: [QGIS-Developer] [ui] blue != blue

2021-02-03 Thread Charles Dixon-Paver
>From what I can see, the SAP HANA icon is "close enough" in colour scheme to the existing ones, as I checked the colours for the hana icon against the postgres one in inkscape and got these results: Postgis Fill: #6e97c4ff Stroke: #476280ff Hana: Fill: #6e97c4ff Stroke: #425a75ff The design

[QGIS-Developer] Can't get values from QgsMeshLayer

2021-02-03 Thread Enrico Ferreguti
I'm trying to write a simple function for retrieving wind speed and direction at a specified moment from a given grib file readable as mesh layer the prototype script is the following: mesh = QgsMeshLayer("[path to the attached grib]/20210202_211414_ICON_EU_P06_.grb2","test","mdal") #mesh =

Re: [QGIS-Developer] [ui] blue != blue

2021-02-03 Thread Richard Duivenvoorde
On 2/3/21 2:54 PM, Richard Duivenvoorde wrote: > Hi, > > Am I the only one, getting blind (not really, just finding it not so nice) of > the different use of blue for Point Cloud in the Datasource button bars (like > in the Data Source Manager). I do not have a really good feeling for colors,

[QGIS-Developer] [ui] blue != blue

2021-02-03 Thread Richard Duivenvoorde
Hi, Am I the only one, getting blind (not really, just finding it not so nice) of the different use of blue for Point Cloud in the Datasource button bars (like in the Data Source Manager). (see screenshot). If I would change it via a PR to... for example the lighter blue as in the Vector

Re: [QGIS-Developer] QGIS server landing page when running as fastcgi?

2021-02-03 Thread Alessandro Pasotti
Hi Richard, I've put up an example with Apache here: https://github.com/elpaso/qgis-server-docker Landing page works out of the box and there is a sample project too. I'm also having problems seeing the logs from QGIS into the apache logs though but I cannot spend more time on that now, I don't

Re: [QGIS-Developer] new plugin not showing up

2021-02-03 Thread Tim Sutton
Hi I have asked Dimas to check in and see if there is an issue with the metadata generator again. Will revert to you once he has checked. Regards Tim On Wed, Feb 3, 2021 at 10:14 AM Etienne Trimaille < etienne.trimai...@gmail.com> wrote: > Yes, this issue has been confirmed by a few people

Re: [QGIS-Developer] new plugin not showing up

2021-02-03 Thread Etienne Trimaille
Yes, this issue has been confirmed by a few people already. Please follow https://github.com/qgis/QGIS-Django/issues/157 Le mer. 3 févr. 2021 à 17:12, Fredrik Lindberg a écrit : > Hi all, > I uploaded a new plugin yesterday ([2289] Potential Slope Failure for > processing) which quickly got

[QGIS-Developer] new plugin not showing up

2021-02-03 Thread Fredrik Lindberg
Hi all, I uploaded a new plugin yesterday ([2289] Potential Slope Failure for processing) which quickly got approved (thanks) but it does not show up in "Manage and Install Plugins" in QGIS. Any ideas what might have happened or what I have done wrong? Thanks, Fredrik