[Qgis-developer] VTerrain plugin - version 1.0 ( QGis 1.5 - 2.0.1 )

2013-10-14 Thread Geo DrinX
Hello all, I have problems to upload my new version of VTerrain plugin for QGis, because I lost the passw for http://plugins.qgis.org/plugins/VTerrain/ :( could you please contact me ? Thank you Roberto ___ Qgis-developer mailing list

Re: [Qgis-developer] VTerrain plugin - version 1.0 ( QGis 1.5 - 2.0.1 )

2013-10-15 Thread Geo DrinX
-13 17:52, Geo DrinX wrote: Hello all, I have problems to upload my new version of VTerrain plugin for QGis, because I lost the passw for http://plugins.qgis.org/plugins/VTerrain/ :( could you please contact me ? Thank you Roberto Hi Roberto, attached you find

Re: [Qgis-developer] VTerrain plugin - version 1.0 ( QGis 1.5 - 2.0.1 )

2013-10-15 Thread Geo DrinX
Richard, I just have reset the passw, but the situation is not changed... Roberto 2013/10/15 Richard Duivenvoorde rich...@duif.net On 15-10-13 11:19, Geo DrinX wrote: Hi Roberto, hub just uses your osgeo password and login. So I think you really have to reset your password via

Re: [Qgis-developer] VTerrain plugin - version 1.0 ( QGis 1.5 - 2.0.1 )

2013-10-15 Thread Geo DrinX
Richard, I don't know if it is useful, but my geodrinx user is this: https://www.osgeo.org/user/1157 Roberto 2013/10/15 Geo DrinX geodr...@gmail.com Richard, I just have reset the passw, but the situation is not changed... Roberto 2013/10/15 Richard Duivenvoorde rich...@duif.net

[Qgis-developer] Qgis Processing Merge Shape Layers

2013-10-15 Thread Geo DrinX
Hello All, It seems to me that QGis Processing Merge Shape Layers function does not work correctly: also selecting all layers I have in list, only one layer appears into MergedLayer. Somebody has tested it recently ? Regards Roberto ___

[Qgis-developer] Select all elements in the view ...

2013-10-16 Thread Geo DrinX
Hello, somebody knows if it just exists a plugin that select all elements (of one or more layers) contained in the QGis view ? I need something similar to the Show elements visible in the map button of the Attributes table, but selecting the elements. Thank you for any info about this Roberto

[Qgis-developer] Poligon coordinates in PyQgis 2

2013-10-17 Thread Geo DrinX
Hello all, because PyQgis syntax is changed so much, from Qgis 1.8 to 2.0.1, I do not find how to have polygon coordinates. Could someone help me ? Any new documentation about it ? Thank you in advance Roberto ___ Qgis-developer mailing list

Re: [Qgis-developer] Poligon coordinates in PyQgis 2

2013-10-18 Thread Geo DrinX
in the same way as before but with layer.getFeatures(): layer = qgis.utils.iface.activeLayer() for elem in layer.getFeatures(): geom= elem.geometry() poly = geom.asPolygon() poly.wkbType() == QGis.WKBPolygon True #

Re: [Qgis-developer] Poligon coordinates in PyQgis 2

2013-10-18 Thread Geo DrinX
I found a way to have coordinates: layer = qgis.utils.iface.activeLayer() for elem in layer.getFeatures(): geom= elem.geometry() elem = geom.asPolygon() for iii in range (len(elem)): for jjj in range (len(elem[iii])): x1,y1 = elem[iii][jjj][0],

[Qgis-developer] How to get the field values in PyQGis 2 ?

2013-10-23 Thread Geo DrinX
Hello all, I have difficulties writing the python code to print the field value contents from a feature. This is my source code: iter = layer.getFeatures() for feat in iter: fff = feat.fields() num = fff.count()

Re: [Qgis-developer] How to get the field values in PyQGis 2 ?

2013-10-23 Thread Geo DrinX
about to have the field names ? Thank you Roberto 2013/10/23 Geo DrinX geodr...@gmail.com Hello all, I have difficulties writing the python code to print the field value contents from a feature. This is my source code: iter = layer.getFeatures

Re: [Qgis-developer] How to get the field values in PyQGis 2 ?

2013-10-23 Thread Geo DrinX
Thank you, Nathan. But I have not the field names. I want to have the field names ... Roberto PS: ... For is for and Print is print ;) ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org

Re: [Qgis-developer] How to get the field values in PyQGis 2 ?

2013-10-23 Thread Geo DrinX
2013/10/23 Matthias Kuhn matthias.k...@gmx.ch for f in l.pendingFields(): print f.name() Great ! Thank you :) Roberto ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] Select all elements in the view ...

2013-10-24 Thread Geo DrinX
Hello all again, From PyQgis, I need to export (to my own format) only the elements contained in the QGis view. So, I taken the canvas coordinates and I created a string that has the expression syntax: text = self.iface.mapCanvas().extent().toString() text1 =

Re: [Qgis-developer] Select all elements in the view ...

2013-10-24 Thread Geo DrinX
Great Nathan !!! This is all you need: rq = QgsFeatureRequest(iface.mapCanvas().extent()) for feature in layer.getFeatures(rq): You are the best: you solved in a second all my ploblems :) Thank thank thank you. Roberto ___ Qgis-developer

[Qgis-developer] GEarthView 1.0.3

2013-10-24 Thread Geo DrinX
Hello, I inserted a new version of GEarthView plugin for QGis. When possible, please test it for the approval These are the updates: - Added publishing in KML also vector elements inside the view (with attributes) - Added an info panel Regards Roberto

[Qgis-developer] How to Raster layer setTransparency with pyQGis 2 ?

2013-11-06 Thread Geo DrinX
Hello All, pyQGis 2 changed many things :( For example: how is possible, now, to set the transparency of a raster ? Before, simply was: l_raster.setTransparency(50) And now ? Thank you for any info about it Roberto ___ Qgis-developer mailing

Re: [Qgis-developer] How to Raster layer setTransparency with pyQGis 2 ?

2013-11-06 Thread Geo DrinX
Great, Giovanni ! Thank you Roberto 2013/11/6 G. Allegri gioha...@gmail.com Try using l_raster.renderer().setOpacity(0.5) giovanni 2013/11/6 Geo DrinX geodr...@gmail.com Hello All, pyQGis 2 changed many things :( For example: how is possible, now, to set the transparency

[Qgis-developer] New Rasparenza plugin for QGis

2013-11-07 Thread Geo DrinX
Hello all, I created a new plugin for QGis 1.8 and 2.0.1, named Rasparenza , that changes the transparency of all raster layers. Please, test it and, if you like, approvate it. Regards Roberto ___ Qgis-developer mailing list

Re: [Qgis-developer] New Rasparenza plugin for QGis

2013-11-07 Thread Geo DrinX
Hi Nathan, I inserted these description and tags to http://plugins.qgis.org/plugins/rasparenza/ rasparenza : change all raster layer transparency *Author:* geodrinx http://plugins.qgis.org/plugins/author/geodrinx/ *Author's email:* geodr...@gmail.com *Maintainer:* geodrinx

[Qgis-developer] GEarthView new version

2013-11-17 Thread Geo DrinX
Hello All, I entered on October 24 a new version of GEarthView plugin for QGIS. But it still has not been approved. Can you tell me something about it? Thanks and regards Roberto ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org

[Qgis-developer] Rasparenza plugin

2013-11-17 Thread Geo DrinX
Hello again, my plugin Rasparenza set the transparency of all the raster layers together: http://plugins.qgis.org/plugins/rasparenza/ You can approve it, please ? Thank you Roberto ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org

[Qgis-developer] QGIS : How to define a new CRS name into PRJ ?

2013-11-25 Thread Geo DrinX
Hello all, I am trying to give a name for my own cassini projection into the PRJ file, but reloading the shp, QGis seems to ignore my name, and it use, instead, a generic * SR generated (+prj etcetera) definition name. It 's impossible to give a new name through a PRJ file? Thank you for any

[Qgis-developer] How to set Vector layer transparency with pyQgis ?

2013-12-03 Thread Geo DrinX
Hello all, ... as in object, I need to set the transparency of all the vector layers in my plugin ( rasparenza ). What is the syntax to set the transparency of a vector layer (in pyQis 1.8 and 2.0 versions ) ? I am searching in documentation and in gis.stackexchange, but I only found...

[Qgis-developer] New GEarthView 1.0.4 version - plugin for QGis

2013-12-04 Thread Geo DrinX
Hello, I just inserted a new version of GEarthView plugin for QGis. Please, approve it (if you like :) Regards Roberto ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

[Qgis-developer] How to get feat.geometry() from SpatiaLite in pyQGis ?

2013-12-05 Thread Geo DrinX
Hello all, as in object, within pyQGis I need to read the geometry of a SpatiaLite vector layer. This is my source code: layer = iface.mapCanvas().currentLayer() iter = layer.getFeatures() for feat in iter: geom = feat.geometry() elem = geom.asPolyline() print(ELEM %s\n) %(elem)

Re: [Qgis-developer] How to get feat.geometry() from SpatiaLite in pyQGis ?

2013-12-06 Thread Geo DrinX
Hi Christos (!), sorry but your code works only in QGis 1.8 version. I am using the 2.0.1 version and pyQGis methods are changed: http://hub.qgis.org/wiki/quantum-gis/Python_plugin_API_changes_from_18_to_20 BTW, my problem is: - using a SHP file layer, elements are returned - using

[Qgis-developer] What about Phonon.so on MacOSX ?

2013-12-16 Thread Geo DrinX
Hello all, installing Video UAV Tracker plugin for QGis 2.0.1 on MacOSX I had an error message referring to phonon.so, that seems not installed. Someone knows how to solve it ? Thank you in advance Roberto ___ Qgis-developer mailing list

Re: [Qgis-developer] What about Phonon.so on MacOSX ?

2013-12-16 Thread Geo DrinX
. Misterious. What I need to do ? Thank you for any other info Roberto On Dec 16, 2013, at 2:54 PM, Geo DrinX wrote: Hello all, installing Video UAV Tracker plugin for QGis 2.0.1 on MacOSX I had an error message referring to phonon.so, that seems not installed. Someone

Re: [Qgis-developer] What about Phonon.so on MacOSX ?

2013-12-17 Thread Geo DrinX
. The package on my site is just a fix to the package without a rebuild, but the source fix should not break it like I did. On Dec 17, 2013, at 4:20 PM, Geo DrinX wrote: It goes better. I have some new: I installed QGis 2.1-dev and the plugin VideoUAVTracker starts. So, I selected

[Qgis-developer] gdalwarp not installed on MacOSX ?

2013-12-30 Thread Geo DrinX
Hello all, as you can see in this image: https://drive.google.com/file/d/0Bwg_m86uaXY1R0c0VHk3Sy1HdDA/edit?usp=sharing it seems that gdalwarp is not installed (or not found) by Qgis2threejs plugin on MacOSX. Could you please help me to solve this ? Thank you in advance Roberto

[Qgis-developer] Qgis2threejs suggestions...

2013-12-31 Thread Geo DrinX
Hello Minoru, Your Qgis2threejs is great ! This is an image I taken from it: https://drive.google.com/file/d/0Bwg_m86uaXY1LUVzdmV0bUdNcnM/edit?usp=sharing Well, I have some suggestion: The only thing that I find to be improved is the fact that it opens a new web page, and that is opened

Re: [Qgis-developer] Qgis2threejs suggestions...

2014-01-02 Thread Geo DrinX
Hi Minoru, before all, happy new year :) Then, with the new year, I had an idea: what do you think of a QT window inside QGIS, which displays the 3D html page ? Could it be doable ? Do you have just tested ? Regards Roberto ___ Qgis-developer

Re: [Qgis-developer] Qgis2threejs suggestions...

2014-01-02 Thread Geo DrinX
Minoru, Other argument: in this image, on the left you can see GoogleEarth, and on the right the threejs.html : https://drive.google.com/file/d/0Bwg_m86uaXY1QVVGVnJmMlBfOEk/edit?usp=sharing It seems that 3D html model has exagerated height. True ? Roberto

Re: [Qgis-developer] Qgis2threejs suggestions...

2014-01-02 Thread Geo DrinX
Then, with the new year, I had an idea: what do you think of a QT window inside QGIS, which displays the 3D html page ? Could it be doable ? Do you have just tested ? Interesting, but I have not tested it yet. I tested now, but I had: Sorry, your browser doesn't seem to support

Re: [Qgis-developer] Qgis2threejs suggestions...

2014-01-02 Thread Geo DrinX
=13.3988 and you will have the message: Sorry, your browser doesn't seem to support WebGL How to discover what browser is used by Qt ? I will investigate ... Roberto 2014/1/2 Geo DrinX geodr...@gmail.com Then, with the new year, I had an idea: what do you think of a QT window inside

Re: [Qgis-developer] Qgis2threejs suggestions...

2014-01-02 Thread Geo DrinX
... it seems to be WebKit.Who knows if it loads WebGL on other platforms, different from Windows ? 2014/1/2 Geo DrinX geodr...@gmail.com Minoru, this is my ( experimental starting ) test plugin for webbrowser: https://drive.google.com/file/d/0Bwg_m86uaXY1ZWstOWZ3aER2cDQ/edit?usp

Re: [Qgis-developer] Qgis2threejs suggestions...

2014-01-02 Thread Geo DrinX
perhaps, this can be useful: http://trac.webkit.org/wiki/QtWebKitWebGL 2014/1/2 Geo DrinX geodr...@gmail.com ... it seems to be WebKit.Who knows if it loads WebGL on other platforms, different from Windows ? 2014/1/2 Geo DrinX geodr...@gmail.com Minoru, this is my ( experimental

[Qgis-developer] About TINs and QGis

2014-01-03 Thread Geo DrinX
Hello all, As in object, I have a question: There is a way to display a TIN into QGis ? I intended, there is a way to load a triangle net, also if only in 2D, and display it like in this image: https://drive.google.com/file/d/0Bwg_m86uaXY1dkNaM1BvLWswZmc/edit?usp=sharing This is an example

[Qgis-developer] QGis 2.0.1 - Group layer SR selection panel

2014-01-16 Thread Geo DrinX
Hello all, there is something wrong, or too complex, in the panel in object. In fact, if I create a layer group and I want to give a unique SR to all layers under the group, in the panel it is not possible to select the SR directly in the recently used SR list. I tried using double click,

Re: [Qgis-developer] Qgis2threejs suggestions...

2014-01-16 Thread Geo DrinX
Hi Minoru, You can do it with latest code on GitHub. https://github.com/minorua/Qgis2threejs I tested it :) I have an idea and a suggestion: if a level was a WMS PNG24 or PNG32 of a DTM, do you think it would be possible to use it to create 3D with your plugin? This would be a very

[Qgis-developer] WCS of a DTM

2014-01-17 Thread Geo DrinX
Hello all, loading in QGis 2.0.1 the WCS of the Catalogna DTM I had this: https://drive.google.com/file/d/0Bwg_m86uaXY1a2xmTC1BeXphZEU/edit?usp=sharing :( Somebody can help me to understand where I wrong ? Thank you in advance Roberto ___

Re: [Qgis-developer] Qgis2threejs suggestions...

2014-01-18 Thread Geo DrinX
Hi Minoru , I taken QGis2threejs now from repository and I am testing on MacOSX. I had this: Traceback (most recent call last): File /Users/rrr/.qgis2/python/plugins/Qgis2threejs/qgis2threejsdialog.py, line 334, in run if not tools.openHTMLFile(htmlfilename): File

Re: [Qgis-developer] Qgis2threejs suggestions...

2014-01-20 Thread Geo DrinX
, thank you. I will inform you. Regards Roberto Regards, Minoru 2014/1/18 Geo DrinX geodr...@gmail.com: Hi Minoru , I taken QGis2threejs now from repository and I am testing on MacOSX. I had this: Traceback (most recent call last): File /Users/rrr/.qgis2/python/plugins

Re: [Qgis-developer] Qgis2threejs suggestions...

2014-01-20 Thread Geo DrinX
Hi Minoru, I have some other suggestion :) I am testing with more than one image and DTM files. I find that, in this case, it would be useful to have an automatic selector of the DTM or DSM layer (I don't know how, but, for example, it could be the layer that starts with DTM_) Other

Re: [Qgis-developer] Qgis2threejs suggestions...

2014-01-20 Thread Geo DrinX
Hi Minoru, with last master version I had this: Traceback (most recent call last): File C:\Users\rrr/.qgis2/python/plugins\Qgis2threejs\qgis2threejsdialog.py, line 324, in run htmlfilename = runSimple(htmlfilename, context, self.progress) File

[Qgis-developer] Viewing SpatiaLite views in QGis

2014-01-23 Thread Geo DrinX
Hello all, I noticed a strange behavior in QGis when I am viewing SpatiaLite views. These are my steps: 1) I have some SpatiaLite tables, that have Geometry field. For example: CREATE TABLE Poligoni ( PK_UID INTEGER PRIMARY KEY AUTOINCREMENT, field1 TEXT, Note TEXT, geometry POLYGON) 2)

[Qgis-developer] About temp directory

2014-01-25 Thread Geo DrinX
Hi Minoru, you asked me if I had some reason to define my GEarthView temp directory inside the plugin. Well, now I found the reason: where is the temp of QGis2threejs, in MacOSX ? :( I can not find it ...Also because you change HTML name :) Ciao Roberto

Re: [Qgis-developer] Fwd: Re: Cad-Input for QGIS prototype

2014-01-27 Thread Geo DrinX
Hello All, There is a new category of GIS users: drone's users. There is already the Video UAV Tracker for Qgis. Yes, true ! As you can see in this image: https://drive.google.com/file/d/0Bwg_m86uaXY1Yy1IUW8tcFRMdTA/edit?usp=sharing For that I created a new plugin, named DronePlanner,

Re: [Qgis-developer] Lidar data into QGIS

2014-01-31 Thread Geo DrinX
Hello Alvaro, I just writed a program that displays in real time LiDAR point cloud data. That program, named LaserDrink reads quickly TerraSolid Laser BIN format ( the father of LAS ... ) and writes a temporary WRL file that the Coin3D viewer, then, displays. My temp WRL contains the point

[Qgis-developer] Spline plugin bug on QGis 2.0.1 64 bit Windows

2014-02-07 Thread Geo DrinX
Hello all, as in object, something other had my same error, closing a spline path ? Traceback (most recent call last): File C:\Users\rrr/.qgis2/python/plugins\spline\spline.py, line 97, in canvasPressEvent self.createFeature() File C:\Users\rrr/.qgis2/python/plugins\spline\spline.py,

[Qgis-developer] How to generate DTM iso-curves of QGis canvas ?

2014-02-11 Thread Geo DrinX
Hello all, a simple question:) How to generate the SHP curves of a DTM layer , only inside the current QGis view, quickly and faster ? I tested with Processing Grass Nviz ... but nothing appears (after 10 minutes of waiting... ) Other ideas ? For example, the gdal_contour

Re: [Qgis-developer] How to generate DTM iso-curves of QGis canvas ?

2014-02-11 Thread Geo DrinX
Hello Martin, If your DTM raster is in *.bil or *.asc format then you can use LAStools' las2iso or blast2iso from the LiDAR Processing toolbox. Ok. :) But, my DTM is a simple GeoTIFF. :( Do you know if gdal permits to create curves from a GeoTIFF DTM, clipped by a rectangle

[Qgis-developer] QGis2threejs digitize example

2014-02-11 Thread Geo DrinX
Hi Minoru, look at this example I created: https://googledrive.com/host/0Bwg_m86uaXY1RDRrVXpnT2JoV2c/index.html as you can see, the pink cube near the 67 number have a bug on the roof :( What can be the reason ? Ciao Roberto ___

[Qgis-developer] How to display the cursor Z info in the QGis staus bar ?

2014-02-12 Thread Geo DrinX
Hello all, as in object, I need to display the current cursor Z info into the QGis staus bar. Of course, I have a DTM layer in QGis list:) It just exists something that does something similar ? Thank you in advance for any info about this. Regards Roberto

[Qgis-developer] About Point Samplig Tool plugin

2014-02-14 Thread Geo DrinX
Hello All, perhaps there is a problem with PointSamplingTool plugin, using layers with different SRS. In fact, I found all the resulting fields of the output SHP with NULL . Somebody test it, recently ? Could you help me ? Thank you Roberto

[Qgis-developer] And ... Ecw ? :)

2014-02-28 Thread Geo DrinX
Hello all, yet, like every time, every new version of QGIS lacks the support of the ECW format :) I am using QGis 2.2.0-3 MacOSX version, ( but also Win version has not ). My problem: I need of Ecw . Somebody can help me ? ( please, no reply about to change format :) Thank you

[Qgis-developer] Numpy error in my QGis 2.2.0-3 MacOSX

2014-03-01 Thread Geo DrinX
Hello all, As in object, I have this error : RuntimeError: module compiled against API version 9 but this version of numpy is 7 Versione Python: 2.7.1 (r271:86832, Jun 16 2011, 16:59:05) [GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)] Versione di QGIS: 2.2.0-Valmiera

Re: [Qgis-developer] Numpy error in my QGis 2.2.0-3 MacOSX

2014-03-01 Thread Geo DrinX
Hi William, I downloaded GDAL from here: http://www.kyngchaos.com/files/software/frameworks/GDAL_Complete-1.10.dmg and it contains: GDAL Framework 1.10.1-1 2013-9-2 NumPy Python Module 1.6.2-1 2012-8-21 It is not the correct download link ? Roberto

Re: [Qgis-developer] Numpy error in my QGis 2.2.0-3 MacOSX

2014-03-01 Thread Geo DrinX
William, 2014-03-01 20:42 GMT+01:00 William Kyngesburye wokl...@kyngchaos.com: When did you download that? The current GDAL Complete is dated 2013-12-21, with GDAL 1.10.1-1 (2013-9-2) and NumPy 1.8 (2013-12-7). I download 1 hour ago ... But now, I found this other:

Re: [Qgis-developer] What about a qgis project add function ?

2014-03-01 Thread Geo DrinX
Hi Regis, do you intend this : ImportProject is a plugin that lets you load layers from another project file. Just select a project (.qgs) file, check off the layers you wish to load, and it will include them in your current project with all styling. Works with vector, raster, database and web

[Qgis-developer] No module named Tkinter :(

2014-03-05 Thread Geo DrinX
Hello All, as in the object, I had that message, loading the Contour plugin. My problem is: where can I download Tkinter ? How can be installed ? It is not clear. I searched with Google, but I have not found any download link. Sure, I will wait ansiously new Luca Mandolesi plugin that

[Qgis-developer] RealCentroid plugin error

2014-03-06 Thread Geo DrinX
Hello all, as in object, I had an error from RealCentroid plugin in QGis 2.2 on Windows 7 64 bit. This is the error: Traceback (most recent call last): File C:/Users/rrr/.qgis2/python/plugins\realcentroid\realcentroid.py, line 124, in run self.centroids() File

[Qgis-developer] QGis Spline plugin

2014-03-06 Thread Geo DrinX
Hello All, I am trying the Spline plugin with QGis 2.2 on Windows 7, but I obtain this error: Traceback (most recent call last): File C:/Users/rrr/.qgis2/python/plugins\spline\spline.py, line 96, in canvasPressEvent self.createFeature() File

[Qgis-developer] My God: plugin palette disappeared :(

2014-03-07 Thread Geo DrinX
Hello all, this morning I had a bad surprise in my QGis 2.2 64 bit on Windows 7 : the plugin palette disappeared, and there is no way to find it, or to make it reappear. Someone other had same problem ? I have seen in View ToolsPlugins checkbox, but it is checked ( ON ). I have

Re: [Qgis-developer] [Gfoss] Fwd: My God: plugin palette disappeared :(

2014-03-10 Thread Geo DrinX
Hello All, My Plugins Toolbar desappeared in the hiperspace :( But, with the help of Antonio ( that I thank publicly ) it returned on the screen : PLUGINS = CONSOLE PYTHON *qgis.utils.iface.pluginToolBar().move(0,0)* Thanks, Antonio ! :) BTW, I think QGis permits t looong

[Qgis-developer] A stupid problem with python, that is making me more stupid :)

2014-03-11 Thread Geo DrinX
Hello All, as in object, I had an error from python, with my source code, that I do not understand CamNick = 90 - int(pitch) ValueError: invalid literal for int() with base 10: '36.30' Somebody can help me to understand why 36.30 is not good to reurn an int value ? For me, is a

Re: [Qgis-developer] What about QGis on Raspberry PI ... ?

2014-03-17 Thread Geo DrinX
Hello, I found that Grass ricompiled on Raspberry PI : http://grasswiki.osgeo.org/wiki/Raspberry_Pi :) Roberto 2014-03-16 9:15 GMT+01:00 Geodrinx geodr...@gmail.com: Hello All, I am interested to know if it could be possible to think about a QGis recompiling for the Raspberry PI

Re: [Qgis-developer] What about QGis on Raspberry PI ... ?

2014-03-17 Thread Geo DrinX
This is also interesting : http://qt-project.org/wiki/Qt-RaspberryPi Roberto 2014-03-18 1:25 GMT+01:00 Geo DrinX geodr...@gmail.com: Hello, I found that Grass ricompiled on Raspberry PI : http://grasswiki.osgeo.org/wiki/Raspberry_Pi :) Roberto 2014-03-16 9:15 GMT+01:00

Re: [Qgis-developer] New DronePlanner plugin for QGis

2014-03-31 Thread Geo DrinX
Hello All, I just released a new version of DronePlanner plugin for QGis , that solves some error during area path calculations. For who do not know it, DronePlanner permits so simulate photogrammetric flight paths for Drones. Please, test it and approve it, if you like.

[Qgis-developer] How to create a Textual Note auto filled with fields ?

2014-04-03 Thread Geo DrinX
Hello All, ( Sorry for my english, but I try to explain my need as better as I know ). I need to create textual notes on many polygons, with QGis, and I would like to automate more than possible the process. For the moment, I created an Action, defined as following: Note_ACTION echo

Re: [Qgis-developer] How to create a Textual Note auto filled with fields ?

2014-04-04 Thread Geo DrinX
Hi Ramon and others, I'm assuming Textual Note is an Attribute Value. No. I intended the Text Note function of QGis, that is the rectangular baloon with text inside : http://qgis.org/it/docs/user_manual/introduction/general_tools.html#annotation-tools I need to fill the text

[Qgis-developer] QGis OSM_Editor_RemoteControl

2014-04-04 Thread Geo DrinX
Hello All, I have problems with the OSM_Editor_RemoteControl plugin of QGis. It answers : Could not connect to the OSM editor. Did you start it ? But... I started Josm, as you can see here : https://drive.google.com/file/d/0Bwg_m86uaXY1ZTN5U2FwcURVV1k/edit?usp=sharing Where I wrong ?

[Qgis-developer] New plugin RasMover

2014-04-16 Thread Geo DrinX
Hello All, I created a new plugin that move all active raster, using a new temporary raster. http://plugins.qgis.org/plugins/rasmover/ This plugin is very useful to fine collimate Raster with vector layers. Please, test it and approvate it if you like. Thank you Roberto

[Qgis-developer] New plugin for QGis : RasMover

2014-04-19 Thread Geo DrinX
Hello All, I created a new plugin that move all active raster, using a new temporary raster. http://plugins.qgis.org/plugins/rasmover/ This plugin is very useful to fine collimate Raster with vector layers. Please, test it and approvate it if you like. Thank you Roberto

[Qgis-developer] GEarthView 1.05

2014-05-20 Thread Geo DrinX
Hello All, I updated GEarthView to 1.0.5 version, that fixes a bug when reprojection is active. This version also inserted a link to OSRM. Regards Roberto ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org

Re: [Qgis-developer] spherical trigonometry

2014-06-10 Thread Geo DrinX
Hi Giuliano, I think this link can be useful : https://code.google.com/p/gpsbabel/source/browse/trunk/gpsbabel/jeeps/gpsmath.cc?r=4619 expecially in GPS_Math_LatLonH_To_XYZ and the reverse GPS_Math_XYX_To_LatLonHfunctions. ... also if is C++ source code :( Regards Roberto

[Qgis-developer] New version of GEarthView plugin (1.0.7)

2014-07-09 Thread Geo DrinX
Hello all, I inserted a new version of GEarthView 1.0.7 , that solves a bug (with accentated characters). Now GEarthView is moved in Web menu, and it has new palette a buttons (thank s to Aldo Scorza). Please, test it and approve it, if you like. :) Regards Roberto

Re: [Qgis-developer] Proposal: Change delete selction and deselect icons

2014-07-10 Thread Geo DrinX
Hi Nathan, 2014-07-10 8:26 GMT+02:00 Nathan Woodrow madman...@gmail.com: Could the deselect and delete selected features have a change in icons. Both these icons look very a like and preform very different actions. [image: Inline image 2] I would like to suggest some form of bin icon,

[Qgis-developer] Zoom on selection (Ctrl-J)

2014-07-15 Thread Geo DrinX
Hello All, I noticed that Ctrl-J zoom on selection does not work. Some other can confirm this ? Other question: there is a way to move the the selection to the next element, using a keystroke ? Thank you for any info Roberto ___

[Qgis-developer] New SeleNext plugin for QGis

2014-07-15 Thread Geo DrinX
Hello All, I inserted a new plugin for QGis that moves the selection to next elements. Please test it and approve it, if you like. Thank you Roberto ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org

[Qgis-developer] Fwd: I domini nei campi sono spariti ?

2014-07-16 Thread Geo DrinX
Hello All, I noticed something unexpected in version 2.4 of QGis. If I define a map values​​ (ie, a domain) on a field, associating a csv file in the panel Fields of Properties, and saving the style of the layers in a QML file, it does not contain the definition of the domain of the field (as

[Qgis-developer] To Save Ogr Layer in VRT

2014-09-04 Thread Geo DrinX
Helllo All, Someboby knows if exists a QGIS function to save a QGIS vector layer into Ogr VRT definition format ? Thank you for any info about this. Regards Roberto ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org

Re: [Qgis-developer] To Save Ogr Layer in VRT

2014-09-04 Thread Geo DrinX
Hello Zoltan, a VRT is a Virtual Raster Table and applies to raster data not Vector data. gdal deals with raster, and ogr with vector. VRT is not only for Raster .You will find this article very interesting :

[Qgis-developer] How to set a QGIS layer Not editable ?

2014-09-04 Thread Geo DrinX
Hello all, as in object, somebody knows a way to set a layer not editable ? Thank you for infos about this. Regards Roberto ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

[Qgis-developer] In the Browser panel *.qgs files are not visible

2014-09-05 Thread Geo DrinX
Hello all, I noticed that into QGIS Browser panel are not visible the *.qgs project files. I think it would be very useful to be able to load levels through the project file. What do you think ? Regards Roberto ___ Qgis-developer mailing list

[Qgis-developer] About python OpenGL

2014-09-17 Thread Geo DrinX
Hello All, I noticed that into QGIS \apps\Python27\Lib\site-packages\ there is an OpenGL\directory. Someone is already using it or experimenting with it ( of course, in QGIS ) ? Thank you Roberto ___ Qgis-developer mailing list

[Qgis-developer] How to send a point to the current edit function with pyQGIS ?

2014-09-19 Thread Geo DrinX
Hello, as in object, I need to send a point, from pyQGIS, to the current editing layer function. Is this possible ? There is a source example ? Thank you Roberto ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org

Re: [Qgis-developer] Module dependencies

2014-09-25 Thread Geo DrinX
About the python dependencies, I propose to share a list of dependencies of the plugin, where everyone can add and propose those necessary to its plugin. This list could then be taken into consideration during the release of the new version of QGIS, which may already contain them. For example, I

[Qgis-developer] mapRenderer.render(imagePainter)

2014-09-26 Thread Geo DrinX
Hello, I noticed that using the.render()function with pyQgis 2.2 the labels are not visible. This is my test source code : iface = qgis.utils.iface mapRenderer = mapCanvas.mapRenderer() mapRect = mapRenderer.extent()

Re: [Qgis-developer] Render with labels

2014-10-06 Thread Geo DrinX
Hello, Sorry if I repeat my question that I sent some time ago, but it seems very relevant to the topic. I noticed that using the.render()function with pyQgis 2.2 the labels are not visible. This is my test source code (taken from my GEarthView plugin): iface =

Re: [Qgis-developer] Render with labels

2014-10-06 Thread Geo DrinX
Hi Stefan, I did have some problems with dpi output and qgsmaprenderer. Martin Dobias helped me at the hackfest. Now I’m using qgsmaprendererjob classes and it works with custom dpi and labels Great !Thank you also to Martin :) I am studing your source code... BTW, are

[Qgis-developer] LecoS plugin installing Windows

2014-10-23 Thread Geo DrinX
Hello, I am trying to install LecoS plugin for QGIS, but I had the message : No module named scipy So, I searched for scipy library and I want to install it, using python setup.py install but, again, I had other errors :( Can anyone help me? Thank you in advance Roberto

Re: [Qgis-developer] LecoS plugin installing Windows

2014-10-23 Thread Geo DrinX
Hello Martin, thank you for the immediate answer :) In your document I read about the OSGeo4W installing.My (other) question : Is not possible to install LecoS in a normal QGIS standalone Desktop ? BTW, I will follow your instructions. Thank you Roberto 2014-10-23 11:26

[Qgis-developer] VTerrain plugin new version 1.0.1

2014-11-06 Thread Geo DrinX
Hello, I uploaded a new version of VTerrain plugin (1.0.1). This fix a crash that occours with Info panel and QGIS 1.8 Please, approve it, if you like :) Roberto ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org

[Qgis-developer] VTerrain plugin version 1.0.1

2014-11-07 Thread Geo DrinX
Hello, I Submitted the new version of VTerrain inserting github as a repository and tracker. However, I did a stupid thing: I accidentally deleted the entire project VTerrain in qgis repository (while I wanted to delete only the last version) . Then I re-created by inserting the latest

Re: [Qgis-developer] issues in QGIS 2.6 when saving/working with projects saved in previous QGIS releases

2014-11-08 Thread Geo DrinX
Hi Matthias, 2014-11-08 9:44 GMT+01:00 Matthias Kuhn matthias.k...@gmx.ch: Hi Roberto, Can you open a bug report for this. I will do soon. Please try to start QGIS with --noplugins and see if that makes a change for you. I just done your test. At this link you find the capture

Re: [Qgis-developer] issues in QGIS 2.6 when saving/working with projects saved in previous QGIS releases

2014-11-08 Thread Geo DrinX
http://hub.qgis.org/issues/11600 Roberto 2014-11-08 14:04 GMT+01:00 Geo DrinX geodr...@gmail.com: Hi Matthias, 2014-11-08 9:44 GMT+01:00 Matthias Kuhn matthias.k...@gmx.ch: Hi Roberto, Can you open a bug report for this. I will do soon. Please try to start QGIS with --noplugins

Re: [Qgis-developer] issues in QGIS 2.6 when saving/working with projects saved in previous QGIS releases

2014-11-08 Thread Geo DrinX
Giovanni, try (backup) and delete the .qgis2 folder, I have seen this a lot on qgis installations where qgis was previously installed, and purging .qgis2 usually works. Great !!! :) Now it works.I will test inserting plugins one by one. I updated the issue list Thank you :)

Re: [Qgis-developer] Stability (2.8 LTS) vs development (3.0), a proposed way forward

2014-11-09 Thread Geo DrinX
Yes yes yes. +1 but also +999 :) Roberto 2014-11-10 2:27 GMT+01:00 Mathieu Pellerin nirvn.a...@gmail.com: Guys, The recent thread Nyall kick-started with his “QGIS 3.0?” email got me to think about the eternal stability vs. development dilemma it (re-)exposed through the

  1   2   >