Improved python console in QGIS master

Posted by & filed under QGIS.

Today we got another nice new feature in QGIS master – a pimped out python console! The improvements were implemented by Salvatore Larosa with some hints and help from Larry Shaffer. Read on for more details!  

Making your QGIS command line applications quiet

Posted by & filed under QGIS.

Here is a quick tip on how to make QGIS less noisy on the command line. I write quite a few command line based apps (typically in python these days) and I got kinda bored of looking at the reams of stuff that gets put onto stdout like this: src/core/qgsproviderregistry.cpp: 219: (QgsProviderRegistry) Checking /usr/local/qgis-master//lib/qgis/plugins/libheatmapplugin.so :… Read more »

Remote debugging QGIS plugins using PyCharm

Posted by & filed under QGIS.

Wow it’s been a long time since I posted anything here….but I’m back with another (hopefully) useful howto. Over the last six months or so I have made a rather dramatic shift away from using VIM as my primary development environment for everything to using IDE’s for my python development work. I spent the first… Read more »

Installing PostGIS 2.0 on ubuntu

Posted by & filed under Postgres & PostGIS, QGIS.

PostGIS 2.0 is out and the awesomness continues! You can install PostGIS 2.0 on Ubuntu using packages which is exactly what I am going to show you here. Read on for details on how to get up and running and do your first simple raster analysis!

Specifying options in the QGIS GDAL Tools

Posted by & filed under QGIS.

You probably looked at the GDAL Tools (under the raster menu in QGIS) and  blissfully ignored that ‘Creation Options’ panel that appears near the bottom of some dialogs. This is definately a power user feature, but a very handy one. In this quick article I will show you how to compress the rasters you create… Read more »

A python layer action to open a wikipedia page in QGIS

Posted by & filed under QGIS.

One of the really cool features in QGIS that doesn’t get much press is the ability to run actions based on a feature selection. Under 1.7.4 this works by using the identify tool and then choosing an action from the action list in the identified feature(s) attributes. A new improvement in QGIS master (and should… Read more »