Tag Archives: arcgis

Wilderness 4: Wilderness degradation analysis

Area with wilderness and encroachment. Visualization of change of wilderness status.

Area with wilderness and encroachment. Visualization of change of wilderness status.

Wilderness degradation happens when new encroachments are made changing the wilderness status of an area. It is a complex issue which does not easily lend it self to a GIS based analysis. I will refer to my posting on wilderness for a peek into the complex world of wilderness philosophy.

It is possible to set up a system like FME to do an analysis of changes in wilderness due to new encroachments. The procedure I made generates a wilderness degradation data set based on wilderness and (new) encroachment data. It is based on procedures used by the Norwegian government in their analysis of wilderness and encroachment. The system should however be easy to accommodate for different preconditions by manipulating the number of wilderness zones and/or their buffer distances.

To visualize the degradation of wilderness it is necessary to make a categorization and furthermore establish a cartography to carry the information to the reader. In my view this can not be done unless the author/mapmaker to some extent takes side in what is good or not good related to wilderness degradation. This will be the focus on a forthcoming posting, but I will touch into the issues here as well.

FME is but one of the potential solutions for producing the results. QGISGeoKettle and even PostGIS could be good alternatives. The GitHub project has room for alternative implementations.

Continue reading

Uganda QGIS and remote sensing workshop

qgisThis week I had the privilege of coordinating a workshop on QGIS and remote sensing in Kampala, Uganda. Our trainers were Thomas Ballatore and Shane Bradt. We were very pleased with their walkthroughs and presentations of crucial software and plugins. The training is part of the Norwegian Oil for Development Program.

The focus was of course QGIS. But to be hones BEAM Visat was a real eye-opener. Yes, I have been introduced to the software while working in an expert group on satellite imagery. We earlier this year concluded a report for the Norwegian Space Centre where BEAM Visat was mentioned as one of several crucial components for handling remote sensing data. But – the workshop provided an applied context which gave me a whole new perspective to both software and methods.

Continue reading

Converting shapefiles to Mission Planner .poly-files

15-9-plannedMission Planner by Michael Oborne is an impressive piece of software. It is used to program the open-source APM autopilot. The autopilot is used to control planes, copters and rovers. I have used Mission Planner a lot and I can not do without.

Some years ago I started making a map for the Mindland island in the archipelago of Norway using a GPS, OpenStreetMap and Bing aerial imagery. The main driver for this project was to document old place names. With the drones becoming somewhat of a hobby last year I thought it would be nice to also establish a proper open license ortophoto for the island. Mission planner has what it takes to approach such a task in a structured manner, save for one thing. The polygon tool only imports .poly-files.

When working with maps some of us tend to stick with shapefiles or geodatabases. I have made a small script which allows for the conversion of a shapefile with a geographic coordinate system (wgs84) to as many .poly files as there are objects in the shapefile. Adding the functionality to Mission Planner has been indicated as possible, but has yet to materialise. So until then the script associated with this posting remains relevant. Continue reading

American mink – alien species proliferation analysis

Procedure overview for the analysis

Procedure overview for the analysis

The aim of this posting is to document the more technical aspects of establishing the knowledge basis necessary to follow up the action plan against american mink (nevison vison) – an alien species in the Norwegian fauna. It will show how the Python programming language and relevant programming libraries (ArcPy and others) are used in an analysis aiming to understand where the mink can spread under given circumstances.

The motivation for this is to document the process for other relevant projects as well as to make relevant code and methodological descriptions available for other persons/institutions involved in similar projects. The work has been made possible with access to other freely available information online and as such this posting should be considered a timely way of paying back for “services provided”. Continue reading

Solving the ESRI arcpy dissolve challenge

ready_for_dissolveIn a recent project at work I did an analysis on the spread of an alien species in Norway using ESRI ArcGIS 10.1 SP1. In this particular analysis we assumed that the species could swim a certain number of meters in open sea. How would it spread and to what extent would current protected areas be invaded by this overseas stranger to our environment? The density of islands Norwegian archipelago is massive, so the possibility for the alien species to spread is rather overwhelming.

As part of the analysis I ended up doing buffers around islands in the Norwegian archipelago. After which it would be necessary to merge and dissolve the objects. This turned out to be problematic. But for some of the shapefiles I was working with ArcGIS (arcpy and python) simply failed to complete the dissolve operation.

After contacting our local ESRI representative, Geodata AS in Norway, they concluded that this was related to the following error in ArcGIS 10.1: NIM079373: Running a large number of features through the Dissolve or Buffer with dissolve option, hangs during process. I have not found any publicly information with this reference.

One could say that 7283 polygons is a tall order. One could perhaps also say that working with polygons in a task like this rather than with raster is asking for problems. Given enough time I will look into it – later – in that quiet week when nothing else is going on at work, sometime.

This blog post is about but  how I came to understand more about the limitations and possibilities with the ESRI arcpy Dissolve_management tool. It is also explains how I found a rather surprising way to make it faster.

Continue reading