blogs

Release plans recap for the road to QGIS 1.0

Hello world. Its been a while since I posted anything here so I thought I would post an update for those curious about the planning for QGIS 0.11.0 and QGIS 1.0.

- Code currently in trunk will become QGIS 0.11.0 at the end of this month (first week of July actually)
- After QGIS 0.11.0 is branched off SVN, the code in trunk will become QGIS 1.0
- QGIS 1.0 is is planned to be released mid August.

New version of eVis

The Center for Biodiversity and Conservation's Biodiversity Informatics Facility is happy to announce the newest release of eVis, The Event Visualization Tool (0.7.0), compatible with QGIS Io (0.10.0). eVis has been developed to easily view geocoded images, referenced through attributes of features, in the QGIS mapping environment. Images can be loaded from a local disk or remotely using the http protocol.

Contour Lines in Qgis

What with the GSoC project and all the other general discussion about analysis tools in QGis, I got somehow sidetracked into pondering how to do contour maps in QGis. There's the hard way: writing a bunch of C++ code to implement a contouring algorithm, then hooking that into QGis and into the GUI for raster drawing properties. Ah, no.

QGIS and Google Summer of Code

QGIS is participating in the Google Summer of Code under the OSGeo umbrella.

For information on the program, see: http://code.google.com/soc/2008

We are looking for students interested in participating in the program this summer. For QGIS project ideas, see: http://wiki.qgis.org/qgiswiki/SummerOfCodeIdeas

Note the student application period runs from March 24th - 31st so time is short. If you are interested please apply. If you have questions regarding potential QGIS projects, feel free to contact me directly [shermange at gmail dot com].

Quantum GIS Graduates OSGeo Incubation

QGIS is now a full fledged OSGeo project. A bit more information can be found on the OSGeo website.

Paolo Cavallini Named to QGIS Project Steering Committee

Paolo Cavallini has been named to the QGIS Project Steering Committee and will assume the role of Financial/Marketing Advisor.

Paolo comes from a strong scientific background in zoology (a PhD, and more than 30 publication in international journals, plus conference proceedings and popular papers). Paolo currently heads a small and active group of professionals (biologists and agronomists) under the name Faunalia.

Nominations for QGIS PSC Open

Nominations are now open for the QGIS Project Steering Committee. Nominations are being solicited for the Financial/Marketing Advisor position.

Please read http://wiki.qgis.org/qgiswiki/Call_for_Nominations_January_2008
for information on the position and how to nominate someone.

Capturing map coordinates in a stand alone app...


For those of you striving to build some stand alone Python apps based on the QGIS Python bindings here is a quick snip for ya:

class MapCoords(object):
  def __init__(self, mainwindow):
    self.mainwindow = mainwindow
    # This one is to capture the mouse move for coordinate display
    QObject.connect(mainwindow.canvas, SIGNAL("xyCoordinates(QgsPoint&)"),
                    self.updateCoordsDisplay)
    self.latlon = QLabel("0.0 , 0.0")
    self.latlon.setFixedWidth(200)

Tutorial 7 - Creating spatial datasets with the QGIS API

Hi all.This is a repost since the original article got deleted some
how. A while ago I decided to make some improvements to some of my code
that creates a shapefile. I was using shapelib which
is nice and simple and self contained, but I found it a little awkward
to add attributes to features in a flexible way. Since my application
use the QGIS libs anyway, I thought I may as well give using

Html Image Plugin 0.2

Since 0.9.1 there is a nice way to upload your plugin in a repository, so others can install it automagically via the Python Plugin Installer.

A couple of months ago I needed a simple Html Image Map plugin, and wrote it using the Python Plugin Interface. Fixed some bugs in it (one which made that it was not working with postgis layers).

The plugin generates an image- and accompanying html-file for an image map.

Syndicate content