Re: [Qgis-user] Ideas for QGIS plugin?

2009-01-31 Thread Martin Dobias
g to release a native C++ OpenStreetMap provider for QGIS in few days. It will come also with OSM downloader and (very experimental) upload. Creating another OSM plugin would therefore cause just code duplication. Regards Martin ___ Qgis-user mailing l

Re: [Qgis-user] PostGIS Manager plugin issue

2009-02-02 Thread Martin Dobias
f you gives me permissions to access your DB, I should be able to track down the problem and fix it... Martin ___ Qgis-user mailing list Qgis-user@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] PostGIS Manager plugin issue

2009-02-02 Thread Martin Dobias
tgis_manager/postgis_utils.py", line > 504, in _exec_sql > raise DbError(e.message, e.cursor.query) > DbError: MESSAGE: current transaction is aborted, commands ignored until > end of transaction block Check out newly uploaded version 0.4.7, maybe it will fix this problem. Martin __

Re: [Qgis-user] Ideas for QGIS plugin?

2009-02-02 Thread Martin Dobias
gestion): you >> can do more with that. > > Not if you want a nice streetmap as a basemap for something else -- it would > take a lot of work to get QGIS to draw a map nearly as nice as the OSM ones. > Indeed, I don't think it's possible. Ch

Re: [Qgis-user] Ideas for QGIS plugin?

2009-02-03 Thread Martin Dobias
tems: map canvas contains rendered map and optionally any number of other map canvas items (see QgsMapCanvasItem class). Canvas items can be updated whenever needed and no re-render of map is required. Also rubber band (see QgsRubberBand) which is used for measuring distances and areas is a canvas item

Re: [Qgis-user] altering layers order from python plugin

2009-02-05 Thread Martin Dobias
d then load it again. Not that straightforward. Btw. QgsComposer class is related to composer for printing. Martin ___ Qgis-user mailing list Qgis-user@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] Re: Symbology RFC

2009-02-05 Thread Martin Dobias
On Fri, Jan 30, 2009 at 9:31 AM, Martin Dobias wrote: > On Sun, Jan 25, 2009 at 1:05 AM, Martin Dobias wrote: >> >> http://wiki.qgis.org/qgiswiki/SymbologyRfc >> > > Voting about the RFC starts now and will end on 4 Feb. > > QGIS community members have the poss

Re: [Qgis-user] #1211 Relative paths within QGIS project file

2009-03-04 Thread Martin Dobias
to project's directory. This might need probably some heuristics on determining whether layer's URI is a file but seems like a simplest option, since when moving the files anywhere, it should "just work". (my two cents) Martin ___

Re: [Qgis-user] styles for osm

2009-03-27 Thread Martin Dobias
ags, create or delete nodes/ways) work fine. Stay tuned :) Martin ___ Qgis-user mailing list Qgis-user@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Problem in compilation of source

2009-04-02 Thread Martin Dobias
Hi, you'll have to upgrade GEOS to version 3.0 (or later) to compile svn trunk. Regards Martin On Wed, Apr 1, 2009 at 8:16 PM, wrote: > When I try to build from source, I get: > > /home/mccue/system/dev/cpp/qgis/src/core/qgsgeometry.cpp: In member function > ‘QgsGeom

Re: [Qgis-user] Relational Databases and PostGIS formatting of Vector Data

2009-04-09 Thread Martin Dobias
ch is a C++ plugin >> included with QGIS, and is a gui frontend to shp2pgsql... Just to clarify: SPIT plugin is not a frontend to shp2pgsql, it has its own logic. In addition to SPIT you can try to shp2pgsql command line tool or PostGIS manager plugin for qgis which actually is a simple shp2p

[Qgis-user] not accessible tables found problem

2009-04-16 Thread Martin Landa
arwdRxt/landa} (1 row) pgis_student=> SELECT count(*) from geometry_columns ; count --- 21 (1 row) Any idea why QGIS cannot select data from 'geometry_columns' table. Compiled from SVN, 1.0.2. Thanks in advance, Martin -- Martin Landa * http://gama.fsv.cvut.cz/~landa ___

Re: [Qgis-user] not accessible tables found problem

2009-04-16 Thread Martin Landa
'"'||pg_namespace.nspname||'"."'||pg_class.relname||'"','select') > order by f_table_schema,f_table_name thanks, it helped. Martin -- Martin Landa * http://gama.fsv.cvut.cz/~landa ___ Qgis-

Re: [Qgis-user] Multiple Symbolization Rules per Layer

2009-04-20 Thread Martin Dobias
hose attributes in a single attribute for symbolization? Hi Andreas, currently it's possible to use only one attribute for the symbolization, so combination of the two attributes should do the job. Another option would be to write a special renderer class, howe

Re: [Qgis-user] How to run synchronously stable and unstable qgis versions

2009-04-20 Thread Martin Dobias
le to use "old" qgis project > files. Is there a work-around or an import/convert old _qgs_ files? What's the problem with old project files? From some version (0.11 I think) there is a mechanism for transformations of old project files to newer ones. So you might try to find out,

Re: [Qgis-user] Multiple Symbolization Rules per Layer

2009-04-22 Thread Martin Dobias
I'm developing doesn't include neither of them, but I'm trying to keep it extensible so such addition in future would be possible. I think this is one of the features where creating usable GUI is actually harder than the implementation itself :) Martin ___

Re: [Qgis-user] Metaedit error

2009-05-04 Thread Martin Dobias
ea on what's wrong? Should I fill a ticket? QPlainTextEdit class has been added in Qt4.4 I think, so it probably fails because you have older Qt or PyQt. So either you can upgrade your installation or metaedit developers can use QTextEdit instead which is present also in older v

Re: [Qgis-user] Metaedit error

2009-05-04 Thread Martin Dobias
gt; 8.04, as far as I've been > able to find out. Yes, I think pyqt 4.3.3 can't be used as a wrapper for new classes in qt 4.4. Martin ___ Qgis-user mailing list Qgis-user@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Multi-Line Labeling

2009-05-05 Thread Martin Dobias
have \n as linebreaks. > > Is there anyone who can explain how multiline labels work? from a brief look into the code: when multiline labels are turned off, only the first line is rendered. When turned on, the output rectangle for text includes the whole contet.

Re: [Qgis-user] Enable, disable, and restart a plugin through QGIS API

2009-05-09 Thread Martin Dobias
there is no such possibility yet > :( > It's the reason for what Plugin Installer is still unable to do that. The > python > subsystem is going to be refactored or even rewritten. With Martin, we will > try > to do it for QGIS 1.2 (Martin, won't we?) If the time will allow

Re: [Qgis-user] your oders please ;) Hackfest Vienna

2009-05-14 Thread Martin Dobias
Fine for me too! Martin On Wed, May 13, 2009 at 5:36 PM, Werner Macho wrote: > I put all data in the "unofficial" wiki .. > > http://www.qgis.org/wiki/index.php/2._QGIS_Hackfest_in_Vienna_2009 > > (5.) 6. Nov - (8.) 9. Nov is ok for everyone who is willing to attend

Re: [Qgis-user] python core.sbf :file not found

2009-05-18 Thread Martin Dobias
sip 4.7.9? Because the error you're getting suggests you're running sip < 4.7.8. I have sip 4.7.9 on my system with pyqt 4.4.4 and it works fine. Martin ___ Qgis-user mailing list Qgis-user@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Exporting Google map image layout in pdf

2019-12-10 Thread Martin Weinelt
Jean, the area you are allowed to use in a layout is quite often limited to smaller extents with services such as GM. Give it a try with a map/layout that covers a smaller (really smaller) area to make sure it's not a technical or usage problem on your side. Martin On Tue, Dec 10, 2019 at

Re: [Qgis-user] QGIS 3.10.1A Geotiff Coordinate Transform Problem

2020-01-21 Thread Martin Weinelt
This was tweeted yesterday from the official account of QGIS: "Unfortunately, the first version of the 3.10.2 Windows installer was released using the older gdal 3.0.2 and proj 6.2 versions which cause crashes. Work on a new installer is ongoing." On Mon, Jan 20, 2020 at 5:53 PM David Addy wr

[Qgis-user] qgis wfs provider loads all features when showing attribute table

2020-03-16 Thread Martin Landa
Than QGIS tries to load ALL features from WFS service. This is not desired since WFS layer contains too many features. Is it possible to change this behaviour in order to show attributes for features already fetched (and displayed in QGIS). Thanks, Martin -- Martin Landa http://geo.fsv.cvut.cz/

[Qgis-user] QGIS with Garmin Glo

2020-05-18 Thread Martin Valiquette
com port seems to be at 9600 baud. Is that normal? Am I skipping a configuration step in windows, Martin Magog, QC 819-212-2190 ___ Qgis-user mailing list Qgis-user@lists.osgeo.org List info: https://lists.osgeo.org/mailman/listinfo/qgis-user Unsubscribe

Re: [Qgis-user] wishing for accurate lattitude/longitude from a cell phone

2020-05-25 Thread Martin Weis
Dear list, I would like to add some things here, since I am trying to use RTK GPS in the field with mobile devices. > 1) Accuracy of GPS Devices RTK GPS or any more precice GPS technology will be external, you cannot get around the missing measurements and lack of algorithms in consumer grade ch

Re: [Qgis-user] A few question

2020-07-03 Thread Martin Weis
On 02.07.20 19:22, blubee blubeeme wrote: > I have some aerial images; Are they georeferenced already? > Warning 4: Failed to open /usr/share/qgis/resources/data/world_map.gpkg: > Permission denied > then one of the below messages for each picture that's being imported. > proj_concatoperation_ge

Re: [Qgis-user] PDF Georefernces

2020-07-13 Thread Martin Bittens
ick on "OK"; 6.) Click on "Start Georeferencing" (the green triangle on top); Then you should get what you wanted...! Regards Martin Am 7/13/2020 um 1:36 AM schrieb Warren Thorne: Hi all, Thanks for the welcome to the group. I have some PDF’s from historic reports I

[Qgis-user] QGIS Update 3.14.16

2020-09-24 Thread Martin Bittens
do before: just click on the bottom and... here we are! Thank you so much Regards Martin -- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus ___ Qgis-user mailing list Qgis-user@lists.osgeo.org Li

Re: [Qgis-user] QGIS Update 3.14.16

2020-09-24 Thread Martin Bittens
Sebastian, how did you know that I used the OSGEO installer and installed RStudio on my computer?:-) In fact, that was it! I would never come up with the idea looking for "rbatch breakes QGIS/Qt" to solve the problem I mentioned. Thanks a lot. Martin Am 9/24/2020 um 5:19

[Qgis-user] request for help

2020-09-25 Thread Martin KORŇAN
-Data-master). The error message: Invalid Data Source: C:\Program Files\QGIS 3.14\QGIS-Training-Data-master\exercise_data\styles\advanced_levels_demo.qml is not a valid or recognized data source. What is the solution to this problem. I very value your help and advice. Best wishes, Martin

Re: [Qgis-user] QGIS Update 3.14.16

2020-09-25 Thread Martin Bittens
Hello Andrea, thanks a lot for your response. It is working as well. Great! Just to understand, why this path has been defined in the installations of the "QGIS with GRASS" packages? Is there any relation between "RStudio" and "QGIS with GRASS"? Regards Ma

[Qgis-user] Diagnosing QGIS slowdown (Windows)

2020-12-16 Thread Martin Pergler
Happy user of QGIS since about 3.2. Currently using 3.16.1 (OSGeo4W install) and experiencing pretty severe performance degradation. I know these things are a bear to hunt down; would appreciate any suggestions how to go about finding the cause of the problem. Symptoms: - Mild sluggishness renderi

Re: [Qgis-user] Diagnosing QGIS slowdown (Windows)

2020-12-16 Thread Martin Pergler
Thanks for the reply. System: Lenovo T490, Intel i7 8565U (runs at about 9-20% CPU usage, no change during the freezes), GEForce MX250 (runs about 20-25% whenever QGIS is running). 16 Gig physical memory. SSD with capacity, no unusual disk activity or competing process hogs. All worked just fine u

Re: [Qgis-user] Question about Qgis - Google Earth historical imagery

2020-12-16 Thread Martin Pergler
As Ujaval has written, it is not obtainable as tiles. If you're interested in a specific region, technically you could follow the manual approach described at https://gis.stackexchange.com/questions/373497/is-it-possible-to-export-the-google-earth-engine-basemap-satellite-version-not/373610#373610

Re: [Qgis-user] Diagnosing QGIS slowdown (Windows)

2020-12-16 Thread Martin Pergler
Helpful, thanks. I've now created a separate project which uses a (layout)-rendered map from the main project, and where I selectively pull in individual layers for editing from the gpkg. That works fine. (I like @baswein's idea of 2 instances drag-and-drop, but I've been fine so far only dragging

Re: [Qgis-user] QGIS 3.18.0 and QGIS 3.14.4 (LTR) packages released and OSGeo4W reboot

2021-02-23 Thread Martin Dobias
but that's still better than no LAS/LAZ support at all :-) Regards Martin On Tue, Feb 23, 2021 at 5:37 PM Jürgen E. Fischer wrote: > Hi there, > > I'm happy to announce that the QGIS packages of 3.16.4 (LTR) 'Hannover' > and the > our latest release 3.18.0 '

[Qgis-user] QGIS 3.18/3.16.4 LTR

2021-02-25 Thread Martin Bittens
e about. Thank you very much. Martin -- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus ___ Qgis-user mailing list Qgis-user@lists.osgeo.org List info: https://lists.osgeo.org/mailman/lis

Re: [Qgis-user] QGIS 3.18/3.16.4 LTR

2021-02-25 Thread Martin Bittens
Hello Jürgen, Oh yes, now I got it! Thanks a lot for your rapid response Regards Martin Am 2/25/2021 um 9:08 AM schrieb Jürgen E. Fischer: Hi Martin, On Thu, 25. Feb 2021 at 08:32:39 -0300, Martin Bittens wrote: I just read the messages about  the latest release of the QGIS 3.18.0 and

Re: [Qgis-user] Lidar download

2021-03-05 Thread Martin Dobias
-3.18.0-1.msi Please note that 3.18.0 release has been pulled back few days ago because of several major bugs, so please consider this as a testing release where some things may not work. Regards Martin ___ Qgis-user mailing list Qgis-user@lists.osgeo

[Qgis-user] Layer Properties - Symbology

2021-03-08 Thread Martin Bittens
ription only by words is sufficient. My question: Is this a bug in the new QGIS version or does QGIS 3.18 not provide this functionality anymore? Thanks a lot for a comment. Regards Martin -- This email has been checked for viruses by Avast antivirus softwa

[Qgis-user] Raster Layer Symbology Problem

2021-03-09 Thread Martin Bittens
tion: Is this a bug in the new QGIS version or does QGIS 3.18 not provide this functionality anymore? Thanks a lot for a comment. Regards Martin -- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus

Re: [Qgis-user] Raster Layer Symbology Problem

2021-03-10 Thread Martin Bittens
continuum or categorized. Regards Martin Am 3/9/2021 um 4:18 PM schrieb Sebastian Gutwein: Martin, I think this may be the result of the new feature https://qgis.org/en/site/forusers/visualchangelog318/#feature-gradient-ramp-based-legends <https://qgis.org/en/site/forusers/visualchangelog

Re: [Qgis-user] Raster Layer Symbology Problem

2021-03-12 Thread Martin Bittens
x27;t know how to apply what there is explained. I will wait and see what the next QGIS versions offer for displaying raster gradient legends. And I will keep the QGIS 3.16.4 LTR with special care not loosing the display style I showed above. Regards Martin Am 3/10/2021 um 5:54 PM schrieb Seba

Re: [Qgis-user] Areal Interpolation in QGIS

2018-01-16 Thread Martin Weis
are interpolation or attribute related functions. You see, you need to be more specific or look if the above tool already help. Martin ___ Qgis-user mailing list Qgis-user@lists.osgeo.org List info: https://lists.osgeo.org/mailman/listinfo/qgis-user Unsubscr

Re: [Qgis-user] Why does this message keeps occuring in QGIS? GEOS geoprocessing error: One or more input features have invalid geometry.

2018-01-17 Thread Martin Weis
If you get errors due to invalid geometries, well, then correct that beforehand. Martin ___ 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/l

[Qgis-user] QGIS 2.99 - GRASS

2018-01-25 Thread Martin Bittens
g fine. My Windows system: Windows 10 Professional, 64-Bit. Btw.: with the QGIS version I had used before I downloaded the above mentioned version (as far as I remember I installed the previous version sometime in November or December 2017) the GRASS modules did work fine. Does anybody get

Re: [Qgis-user] GRASS plugin in QGIS

2018-02-22 Thread Martin Landa
dd-apt-repository ppa:ubuntugis/ubuntugis-stable', but I cannot add it to > my repository. or install QGIS from UbuntuGIS unstable [1], it's compiled against GRASS 7.4.0. Ma [1] https://launchpad.net/~ubuntugis/+archive/ubuntu/ubuntugis-unstable -- Martin Landa http://geo.fsv.cvut.cz/gw

Re: [Qgis-user] Error 3D View QGIS 3.0 - *Crash ID*: 40e66737578440d0e4a40fa8545b665a86f88731

2018-03-12 Thread Martin Dobias
rsion, we could find get closer to identifying the source of the problem. Regards Martin ___ 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] 3D Surfaces in QGIS3

2018-03-12 Thread Martin Dobias
tual > polygon in space. > Is there anyway to change the opacity of the polygon in 3D space, so I can > see the ground through it? Transparency is currently not supported in 3D view - all objects are fully opaque. In 3D, rendering of semi-transparent objects is not trivial and requires some

Re: [Qgis-user] Can't install / use NTv2 grid file.

2018-03-26 Thread Martin Weis
erman) http://www.gkg-kassel.de/pdf/Praezise_Transformation_im_QGIS_mit_Batchmodus.pdf for details, you need to add it to qgis' sqlite database of transformations. More related stuff: https://gis.stackexchange.com/questions/50365/projecting-shp-from-gk3-to-utm32-with-beta2007#50384 http

[Qgis-user] QGIS 3.0.1

2018-03-28 Thread Martin Bittens
e computer the QGIS3 installation worked perfect without any problems. Does anybody know how I can solve the problem? Thank you for your help. Martin ___ Qgis-user mailing list Qgis-user@lists.osgeo.org List info: https://lists.osgeo.org/mailman/listinfo/q

Re: [Qgis-user] Help in Field Calculator

2018-04-05 Thread Martin Weis
Hi, Am 04.04.2018 um 14:27 schrieb Daniel Alejandro Montecinos Rubilar: > What I try to do is then updated columns in a data layer with > another layer. For example , I have two layers A = Poligono , B = > Points . The layer B contains real values. Then would do two things. > 1. Count how many poi

Re: [Qgis-user] QGIS Project

2018-04-14 Thread Martin Weis
ind for a quick start. Then you can use the standard GPS input in QGIS (or one of the many other tools able to listen to gpsd). Martin ___ Qgis-user mailing list Qgis-user@lists.osgeo.org List info: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] qgis3 3D view vertical scale inconsistency

2018-05-03 Thread Martin Dobias
sing absolute clamping... the other two methods respect the vertical scale. Regards Martin ___ 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] layers shift when exporting from composer to jpg

2018-05-30 Thread Martin Fisher
I do not know why you have encountered this problem, but perhaps you could try and alternative approach, depending on what you could like on the background. The obvious choice may be to use an ESRI map service from http://server.arcgisonline.com/arcgis/rest/services, as a WMS layer. Best of luc

Re: [Qgis-user] 3D Map Views and XYZM values

2018-06-28 Thread Martin Dobias
t is being looked into for future > versions? Right, this is not implemented yet. Hopefully it will be added sometime soon, but there is no roadmap for that... Regards Martin ___ Qgis-user mailing list Qgis-user@lists.osgeo.org List info: https://lists.

[Qgis-user] Provider Error

2018-07-13 Thread Martin Bittens
ield calculator text fields in attribute tables. Does somebody know a solution solving the error? Thank you very much. Martin --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus ___ Qgis-user mai

Re: [Qgis-user] Crayfish Plugin

2018-08-24 Thread Martin Dobias
: https://github.com/lutraconsulting/qgis-crayfish-plugin Cheers Martin ___ 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] Wrong Path

2018-09-21 Thread Martin Bittens
tly. I do not know why "\osgeo4~1" appears in the path although the setting is: set osgeo4w --> OSGEO4W_ROOT=C:\OSGeo4W64 QGIS is installed in the directory C:\OSGeo4W64, OS: Windows 10. Does anybody know a solution for that problem? Thank you very for your advice. Martin

Re: [Qgis-user] Problem with 3D View: lots of empty (white) holes

2018-10-07 Thread Martin Dobias
ertices in the terrain for them and so we cannot build faces around those values. Probably the best solution to this is to fill the "no data" values in your DEM for better looking 3D view. Cheers Martin ___ Qgis-user mailing list Qgis-user@

Re: [Qgis-user] Measurement tool

2018-11-02 Thread Martin Weis
Am 02.11.18 um 13:36 schrieb Josh Hull: > inaccurate measurement when I am measuring both area and straight line > and its using WGS 84 / Pseudo-Mercator. I primarily use the software for > maps in north central United States. Pseudo-mercator might be your issue here, it might have large distor

Re: [Qgis-user] [ubuntu] Error when starting QGIS

2018-11-22 Thread Martin Weis
Am 22.11.18 um 09:47 schrieb psantana: > I installed via apt-get the latest version of QGIS following this > documentation: > https://qgis.org/en/site/forusers/alldownloads.html#debian-ubuntu > > qgis=1:3.4.1+28bionic > ubuntu version: 18.04 > > When starting to start the app I get this exception

[Qgis-user] QGIS 3.4.2/GRASS

2018-12-10 Thread Martin Bittens
lueError: invalid literal for int() with base 10: 'svn' The GRASS plug-in is working (with GRASS 7.4.2). I am running a Windows 10 machine. Does anybody know how to solve the problem? Thank very much Martin --- This email has been checked for viruses by Avast antivirus softwa

Re: [Qgis-user] QGIS 3.4.2/GRASS

2018-12-11 Thread Martin Bittens
Martin Am 12/10/2018 um 4:48 PM schrieb Luigi Pirelli: processing Grass7Utils.py is trying to understand the grass folders assuming that the path is something like grass-... in your case this path is grass-svn => bang! trying to convert it as int! it's, I'm almost sure, a bug... ca

Re: [Qgis-user] Attribute "cat" in grass7

2018-12-20 Thread Martin Landa
t of GRASS category ID ('cat') attribute) [1]. Then `cat` attribute wouldn't be exported. Ma [1] https://grass.osgeo.org/grass74/manuals/v.out.ogr.html -- Martin Landa http://geo.fsv.cvut.cz/gwiki/Landa http://gismentors.cz/mentors/landa _

[Qgis-user] QGIS 3 Frozen

2019-03-05 Thread Martin Bittens
ions on my computer: QGIS 3.4.5 QGIS 3.6.0 QGIS 3.7.0 The result is always the same. QGIS is frozen. I am working with Windows 10. Does anybody know what is the reason for that error? Thank your for your help. Martin --- This email has been checked for viruses by Avast antivirus softw

Re: [Qgis-user] QGIS 3 Frozen

2019-03-06 Thread Martin Bittens
s going on with QGIS? I do not understand: 1.) why the use of the plugin manager is depending on the type of the internet connection (2.4GHz/5GHz) and 2.) why QGIS 3.4.5 is crashing anyway independent if I am using a 2.4GHz or a 5GHz connection? Thank you for your help. Martin Am 3/5/2019

[Qgis-user] GeoPython 2019 - Call for QGIS&Python Contributions

2019-03-14 Thread Christen Martin
until Sunday evening CET. Submissions can be done here: https://submit.geopython.net/geopython2019/ Kind regards, Martin ___ Qgis-user mailing list Qgis-user@lists.osgeo.org List info: https://lists.osgeo.org/mailman/listinfo/qgis-user Unsubscribe:

Re: [Qgis-user] 3D map scripting

2019-05-20 Thread Martin Dobias
S 3.8 which will be out soon. Cheers Martin ___ 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] Query cross-table "similar" time stamps?

2019-05-20 Thread Martin Bain
like of the Sightings layer with an additional column for the id of the Position. I also made another SQL statement which created Line geometries connecting the Sighting and the associated position. That’s on my computer at home which I don’t have access to ATM. Regards, Martin. From: Qgis-us

[Qgis-user] Slovak QGIS users

2019-05-26 Thread Martin Dobias
interested please feel free to also contact me directly. Cheers Martin ___ 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] Select by Expression with Subquery

2019-06-17 Thread Martin Bain
her way might be to create a join to your target layer and then select the rows where the value of joined column is not null. Cheers, Martin. From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf Of Altergott, Randy (CCI-Southwest) Sent: Tuesday, 18 June 2019 3:41 AM To: qgis-user

Re: [Qgis-user] [QGIS-Developer] Sunrise, Sunset, Lunar Calculations

2019-06-28 Thread Martin Dobias
f buildings in QGIS 3D - and for this it would be important to have the ability to calculate sun position. Cheers Martin ___ Qgis-user mailing list Qgis-user@lists.osgeo.org List info: https://lists.osgeo.org/mailman/listinfo/qgis-user Unsubscribe: htt

Re: [Qgis-user] Dropping the extra label placement algorithms?

2019-07-29 Thread Martin Dobias
sive testing of the methods, but can't find it anymore. From what I remember, one would higher amount of labeled features with a slower method (e.g. Popmusic) or fewer labels with a faster method. If we decide to stick with a single method, it may be interesting to get the opinion of original PAL

Re: [Qgis-user] About plant count

2019-09-04 Thread Martin Weis
to find something to segment trees based on other features, e.g. to segment the "star" structure/centers of the trees). Martin ___ Qgis-user mailing list Qgis-user@lists.osgeo.org List info: https://lists.osgeo.org/mailman/listinfo/

[Qgis-user] Barbados, Heat map always shows up as degrees

2019-09-21 Thread Martin Sarch
I have taken some csv population data for and am using EPSG 4212, Barbados 1938, the data overlays correctly on the but when I try to use the Heatmap functionality the Radius is in degrees and I get a warning. How do I resolve this issue? Thanks Martin Sent from Mail<https://go.microsoft.

Re: [Qgis-user] Barbados, Heat map always shows up as degrees

2019-09-21 Thread Martin Sarch
Nicholas With you guidance and some tinkering, it worked, thanks Martin Sarch 78 Moresby Drive Ottawa, ON K2M 2J3 Canada msa...@outlook.com<mailto:msa...@outlook.com> What3words: infants.crisis.quite C: 819 329 4801 Sent from my iPad On Sep 21, 2019, at 12:35 PM, Nicolas C

[Qgis-user] QGIS 3.20 Crash

2021-10-06 Thread Martin Bittens
.1 System Info CPU Type: x86_64 Kernel Type: winnt Kernel Version: 10.0.19043 Any idea what is going wrong? Regards Martin -- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus ___ Qgis-user

Re: [Qgis-user] QGIS 3.20 Crash

2021-10-06 Thread Martin Bittens
Yes, it worked. Using the new profile QGIS did not crash. But... 1.) How do I get all my settings and plug-ins from the previous profile into the new one? 2.) How do I get QGIS running always with the new profile when I start-up?  Do I need to delete the old profile? Regards Martin Am 10

Re: [Qgis-user] QGIS 3.20 Crash

2021-10-06 Thread Martin Bittens
Great. Thanks a lot. Martin Am 10/6/2021 um 11:12 AM schrieb Stefan Giese (WhereGroup): first go to Menu->Settings->User Profiles->open active profile folder then go one folder up...you will see all the profiles. The profile.ini shows your default profile which you can change

[Qgis-user] QGIS 3.22 - GRASS Init-Error

2021-11-08 Thread Martin Bittens
om 3.16.11 to 3.16.13 (the LTR versions) and did not this problem. Thank you Martin -- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus ___ Qgis-user mailing list Qgis-user@lists.osgeo.org List i

Re: [Qgis-user] QGIS 3.22 - GRASS Init-Error

2021-11-09 Thread Martin Bittens
Hello Andrea, I installed the following versions: qgis: 3.22.0-Bialowieza qgis-ltr: 3.16.13-Hannover; qgis-ltr-plugin: 2.0; qgis-grass-plugin packages: GRASS 7, version 2.0 and GRASS GIS provider, version 2.12.99. grass: 7.8.6 (64bit), build date: 2021-11-01. Regards Martin Am 11/9

Re: [Qgis-user] QGIS 3.22 - GRASS Init-Error

2021-11-09 Thread Martin Bittens
ating a new directory. The fresh install I did when I made the upgrade from QGIS 3.18 to 3.20. Regards Martin Am 11/9/2021 um 8:42 AM schrieb Andrea Giudiceandrea: Martin Bittens Tue, 09 Nov 2021 02:49:40 -0800 qgis-ltr-plugin: 2.0; qgis-grass-plugin packages: GRASS 7, version 2.0 an

Re: [Qgis-user] QGIS 3.22 - GRASS Init-Error

2021-11-10 Thread Martin Bittens
3.16.13 is satisfied with the installed GRASS version. But I do not have any idea how telling the GRASS 7 plugin of QGIS 3.22 that it should take what is installed. Regards Martin Am 11/10/2021 um 7:43 AM schrieb Alister Hood: Date: Mon, 8 Nov 2021 22:31:30 -0300 From: Martin Bittens

Re: [Qgis-user] QGIS 3.22 - GRASS Init-Error

2021-11-10 Thread Martin Bittens
Hello Allister, I just installed the latest nightly version of QGIS 3.22 (which is 3.22.0.76) using the OSGEO4W installer. This version is working with the GRASS 7 plugin and the GRASS 7 algorithms. Regards Martin Am 11/10/2021 um 8:40 AM schrieb Martin Bittens: Hello Alister, in the

[Qgis-user] php-cgi not found after installing QGIS Server on Windows

2017-11-27 Thread Aitor Gil Martin
I installed QGIS Server 2.18, apache, QGIS Desktop 2.18 and all their dependencies using OSGeo4w x32 setup wizard on a Windows Server 2008 R2 SP1 x64 virtual server. After the installation I type localhost on my chrome browser to see the Apache's landing page and I am getting the following error

Re: [Qgis-user] QGIS Server sometimes not sending commits to postgis

2016-01-27 Thread Aitor Gil Martin
Hi Alessandro, Thanks for your answer. I've tried that config but the log file is not generated... De: Alessandro Pasotti [mailto:apaso...@gmail.com] Enviado el: martes, 26 de enero de 2016 14:30 Para: Aitor Gil Martin CC: qgis-user Asunto: Re: [Qgis-user]

[Qgis-user] DEM error with OpenDataNRW

2020-11-16 Thread Prof. Dr. Martin Berchtold
w.xyz There is no change at line 2001... I have no idea, esp. because I can process the NRW files in ArcGIS pro without any problem. Is there a limit of file size or line numbers? Thanks for any help und kind regards Martin --- dvmP Digitalisierung, Visualisierung & Monitoring in der Raumpl

Re: [Qgis-user] DEM error with OpenDataNRW

2020-11-16 Thread Prof. Dr. Martin Berchtold
47.000 340.223 400125.000 547.000 337.833 The NRW data sort the other way round (see below). So I probably "just" will have to rearrange Y and X in the NRW data to get it ready ... ... ... Yes, works! Cool. Thanks again! Martin Von: Nicolas Cadieux Gesendet: Montag, 16. No

[Qgis-user] All possible routes between two points in a line network

2021-01-27 Thread Prof. Dr. Martin Berchtold
ibute. Any idea? Thanks a lot! Martin ___ 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 User Conference 2024 - registration open

2024-04-29 Thread Martin Dobias via QGIS-User
three more rooms. See you in Bratislava! Regards Martin (on behalf of the local organizing committee) ___ QGIS-User mailing list QGIS-User@lists.osgeo.org List info: https://lists.osgeo.org/mailman/listinfo/qgis-user Unsubscribe: https://lists.osgeo.org/ma

[Qgis-user] QGIS User Conference 2024: Detailed schedule

2024-06-17 Thread Martin Dobias via QGIS-User
join the contributor meeting, please do not forget to add your name to the list of participants on the wiki: https://github.com/qgis/QGIS/wiki/27th%E2%80%90Contributor%E2%80%90Meeting%E2%80%90in%E2%80%90Bratislava See you in Bratislava! Regards Martin (on behalf of the local

[Qgis-user] QGIS contributor meeting in Bratislava

2024-08-22 Thread Martin Dobias via QGIS-User
for the capacity of the space... and those who sign up late risk that they won't get a fancy T-shirt ;-) We are looking forward to see many of you in Bratislava! Regards Martin ___ QGIS-User mailing list QGIS-User@lists.osgeo.org List info:

[Qgis-user] OTB Plugin Activation

2022-03-11 Thread Martin Bittens via Qgis-user
Provider is enabled (it was); 5. Opening the Options --> Processing --> Providers --> OTB But there the "Activate' checkbox  did not appear. Does anybody know is going wrong? Many thanks for your help. Regards Martin -- This email has been checked for viruses by Avast

Re: [Qgis-user] OTB Plugin Activation

2022-03-15 Thread Martin Bittens via Qgis-user
der'). As I wrote nothing happened then. But I had to move the cursor in the white space beside the fields and double click there. Then a menu opened where I could enter/select the correct OTB paths Again, many thanks Martin Am 3/12/2022 um 2:10 PM schrieb Nicolas Cadieux: Hi, I am cur

[Qgis-user] Cannot locate exercise_data folder but it exists

2023-02-28 Thread Martin Kind via QGIS-User
The title says it. Am I doing something wrong? Where is the folder supposed to be located? Can someone please provide an example of how they got it running? With their respective location. ___ QGIS-User mailing list QGIS-User@lists.osgeo.org List info:

Re: [Qgis-user] Non-standard map layout ("projection")

2023-04-23 Thread Martin Weis via QGIS-User
implemented (3) a while ago: https://youtu.be/_i7j2fCeLe8?t=1378 Martin ___ 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] problem with GRASS custom variables

2023-08-05 Thread Martin Landa via QGIS-User
grass_raster.8.4. When I set the same environmental variables before starting QGIS from shell than the pyGRASS statement *works*: GISBASE=/home/martin/src/grass/dist.x86_64-pc-linux-gnu PYTHONPATH=/home/martin/src/grass/dist.x86_64-pc-linux-gnu/etc/python LD_LIBRARY_PATH=/home/martin/src/grass/dist.x86_64

<    1   2   3   4   5   >