Re: [Qgis-developer] Render miniature rasters?

2010-07-22 Thread Alexander Bruy
On Wed, 21 Jul 2010 21:49:16 +0200
Paolo Cavallini cavall...@faunalia.it wrote:

 Il 21/07/2010 20:09, Alexander Bruy ha scritto:
 
  Some time ago I've start to develop plugin that placed photo thumbnails
  based on their EXIF coordinates on QGIS map canvas, also it can display
  full photo when user clicks on thumbnail. I my work I've use custom map
  canvas approach as in Martin's qgis-mapper (really cool and very usefull
  project!).
 
 BTW: what is the state of this project?

It's in early stage, I've start it as test project. User can
load photos, change thumbnails size (in some range) and view full image
after clicking on thumbnail. Also plugin creates an point shapefile
based on photos EXIF tags in same way as Photo2Shape does.

But photos don't stored in any place and after reopening project you need
to load photos again. There is some performance and quality issues with
thumbnails generation.
 
  I have many another ideas about improving this plugin but unfortunatelly
  I don't have much time for implementing, even for debugging and releasing
  plugin with only existing functions.
 
 Anyone willing to take this on? Alex, would you mind making your code 
 available, so
 eventually others could help improving it?

Ok, I'll do some refactoring and make it available


On Thu, 22 Jul 2010 01:19:56 +0200
Giuseppe Sucameli brush.ty...@gmail.com wrote:

 Hi Alex,
 
 I think there are people who would help on improving a great feature like
 this.
 Would you have other ideas as good as this that you didn't release yet? ;)

Yes, I have some other ideas. Also I think Maxim has many ideas too.

-- 
Alexander Bruy
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [Qgis-developer] Render miniature rasters?

2010-07-21 Thread Volker Fröhlich
I first thought about eVis, but it doesn't offer symbols, I think.

Volker

Am Mittwoch 21 Juli 2010, 13:14:40 schrieb Magnus Homann:
 Volker Fröhlich skrev:
  I can't visit your link.
  
  Volker
  
  Am Mittwoch 21 Juli 2010, 12:56:48 schrieb Magnus Homann:
  What does it take development-wise to accomplish what one can do in
  google maps, i.e showing as symbol a miniature of a raster (different
  per point).
 
  Like so:
 Sorry, try this link.
 
 http://img7.imageshack.us/img7/1498/geosettergogle.jpg
 
 Magnus
 ___
 Qgis-developer mailing list
 Qgis-developer@lists.osgeo.org
 http://lists.osgeo.org/mailman/listinfo/qgis-developer

___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [Qgis-developer] Render miniature rasters?

2010-07-21 Thread Marco Hugentobler
Hi Magnus

If the images are related to vector features and the image path comes from an 
attribute, creating a new renderer seems to be a good choice.

If the images are not feature / attributes related (and you don't have 
thousands of it on the canvas), you could also implement the images as canvas 
items.

I have code for a very simple plugin that inserts/removes image items at click 
locations. The plugin was used for educational purposes, but maybe it could be 
enhanced to something useful:

www.hugis.net/imageplugin.tgz

Regards,
Marco

Am Mittwoch, 21. Juli 2010, um 12.56:48 schrieb Magnus Homann:
 What does it take development-wise to accomplish what one can do in google
 maps, i.e showing as symbol a miniature of a raster (different per point).
 
 Like so:
 
 http://skogsforum.se/download/file.php?id=4288mode=view
 
 A new renderer?
 
 Magnus
 ___
 Qgis-developer mailing list
 Qgis-developer@lists.osgeo.org
 http://lists.osgeo.org/mailman/listinfo/qgis-developer


-- 
Dr. Marco Hugentobler
Sourcepole - Linux  Open Source Solutions
Webereistr. 66, CH-8134 Adliswil, Switzerland
marco.hugentob...@sourcepole.ch http://www.sourcepole.ch
Technical Advisor QGIS Project Steering Committee
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [Qgis-developer] Render miniature rasters?

2010-07-21 Thread Magnus Homann

Martin Dobias skrev:


You can check out the player plugin [1] from my former qgis-mapper
project - it uses canvas items to show thumbnails of geotagged images
along the track. It also supports grouping of images when there are
more of them close to each other.


This is very close to what I want to do, ideally showing a directory
of geotagged images as miniatures. Clicking on the picture opens a large window
and (optionally a comment field).

A combination of what you have done with eVis, but preferrably more integrated.

Perhaps a custom provider is also needed?

Magnus
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [Qgis-developer] Render miniature rasters?

2010-07-21 Thread Martin Dobias
On Wed, Jul 21, 2010 at 2:36 PM, Magnus Homann mag...@homann.se wrote:
 Martin Dobias skrev:

 You can check out the player plugin [1] from my former qgis-mapper
 project - it uses canvas items to show thumbnails of geotagged images
 along the track. It also supports grouping of images when there are
 more of them close to each other.

 This is very close to what I want to do, ideally showing a directory
 of geotagged images as miniatures. Clicking on the picture opens a large
 window
 and (optionally a comment field).

 A combination of what you have done with eVis, but preferrably more
 integrated.

 Perhaps a custom provider is also needed?

No, you can use any of the available providers to open a vector layer
from a plugin, then read features from the layer and place the canvas
items accordingly.

Martin
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [Qgis-developer] Render miniature rasters?

2010-07-21 Thread Giuseppe Sucameli
Hi Alex,

On Wed, Jul 21, 2010 at 9:49 PM, Paolo Cavallini cavall...@faunalia.itwrote:

 Il 21/07/2010 20:09, Alexander Bruy ha scritto:

  Some time ago I've start to develop plugin that placed photo thumbnails
  based on their EXIF coordinates on QGIS map canvas, also it can display
  full photo when user clicks on thumbnail. I my work I've use custom map
  canvas approach as in Martin's qgis-mapper (really cool and very usefull
  project!).

 BTW: what is the state of this project?

  I have many another ideas about improving this plugin but unfortunatelly
  I don't have much time for implementing, even for debugging and releasing
  plugin with only existing functions.

 Anyone willing to take this on? Alex, would you mind making your code
 available, so
 eventually others could help improving it?

I think there are people who would help on improving a great feature like
this.
Would you have other ideas as good as this that you didn't release yet? ;)

Cheers

-- 
Giuseppe Sucameli
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer