MapServer Workshop at FOSS4G 2010

Hope to see you at the MapServer introduction workshop at FOSS4G 2010 in Barcelona this September.

As usual, it’s a team teaching approach for beginners, delivered by Jeff McKenna, Perry Nacionales and myself.

This workshop always sells out and people beg to join in or stand at the back – so sign up soon or you might miss out.

See you there!

Install Skype on AMD64 Debian/Sidux

I switched to running the Sidux distribution not too long ago, at the same time I upgraded to a 64 bit AMD machine. It’s my first foray into Debian based distros and has been pretty nice until I went to install Skype. I won’t regurgitate the other message boards, but in a nutshell here was my solution:

  • Add Medibuntu repository to my apt sources. I had to manually select the hardy.list file to download since there were no sid.list files.
  • Install ia32-libs and ia32-libs-gtk packages via apt. May need other ia32-libs-* as well.
  • Update apt and install Skype package via apt. NOT by downloading from Skype website

I use Pidgin IM with a Skype plugin package, so I have a single contacts list. Bummer is I have to have Skype running in the background so it can communicate via dbus, but it’s better than nothing.

Meet me in Sydney

The biggest annual event for me and OSGeo is fast approaching. The FOSS4G conference event, held this year in Sydney, Australia, will be held in October. I’d love to meet you there if you would like to chat about open source, GIS, cartography, programming and all such related topics. Attend a workshop to learn to make maps or run web mapping sites. Or just come to hear talks from leaders in the open source geospatial community.

You’ll find friends from all programming language communities there showing you how they get things done. From government to industry to NGO and the hobbyist users – all will find content that is appealing and useful.

Open source geospatial toolkits are used behind many of the largest GIS software packages and web mapping sites. Learning these tools helps build your own personal set of tools for doing the job well.

Hope to see you there!

Tyler

Open Source Car Needs Open Source Navigation

I recently came across the 40fires.org project – a forum to develop energy-efficient cars using an open source approach.

While waiting for more information from them, I did some thinking about what parts of this kind of project would interest me or how OSGeo or other geospatial projects could help them out.

Perhaps someone out there has already though about Open Source navigation project using OSGeo tools. If so, I’d encourage you to contact them.

It’s also interesting to me to consider how embedded hardware could work in these vehicles. Imagine having an open API and open connectors to access data in the machine. Starts to sounds pretty interesting to me.

IMAP for migrating from OSX Mail to Thunderbird

There is a common online question about migrating from Apple’s Mail app (Using .emlx format mail files) to Thunderbird (or any other non-Mail app). I looked at a few options and have decided, as strange as it may seem, that installing an IMAP service was the best solution.

IMAP is normally known for it’s server-side mail storage with download/offline browsing on the client side as needed. If you want to travel lighter and have no trouble depending on Internet access for getting at some of your mail, then IMAP is for you. For you Gmail lovers, it has an IMAP option too so you don’t have to have multiple copies of your mail on PCs as well as their online services.

That said, installing IMAP (this time around) was really easy on my new sidux linux box. A couple of apt-get install later, generate an SSL certificate and I was away to the races!

Over on my Mac side, I connected to my IMAP service, created a new folder/mailbox and copied my messages over from my normal old POP account into the new IMAP one. Instantly I have a copy on my server in a flatfile that I can also access from Thunderbird.

In Thunderbird I can set up my normal POP accounts, but also set up the IMAP one. Now I can just drag the messages over from IMAP into the POP account.

Job done, carry on with life. One more nail in my Mac dependency coffin. 😉

Next time I have a long weekend I will configure my server to download my POP mail into my server IMAP folders, so I can run IMAP all the time and use VPN to get to my email securely.

Drop me a note if you’re interested (or already know how to already) too.

* This site helped me get the basics done, though I think it’s out of date. On Debian I could skip the SSL certificate part of this tutorial and also user accounts were automagically enabled already.

Datum transformation in Python

I’ll describe here a procedure for the evaluation of the tranforming parameters necessary to effect coordinates change among reference frames materialized on different Datum.

In order to have the changing of Datum it is used a
geometric transformation of correspond (conforme) type through the resolution of a last squares system based on a homologous points series, in order toobtain the direct changing from plane coordinates in one of the two Datum
to the corresponding in the other Datum.

The procedure realyzed in Python
environment, provides the possibilty to apply both a conforme transformation
(plane rotation with translation and isotropic scale variation) and of affine transformation (plane rotation with translation and anisotropic scale variation).

The
code has been implemented in a Python module sasha.py, in order to operate
geometric transformation on text files, trhough the use of special software libraries (numpy , scipy ) .

An example on how to use scipy-numpy to make a datum transformation :

>>from numpy import *
>>from scipy import *
>>L = io.readarray(str('locale'))
>>G = io.readarray(str('globale'))
>>L

array([[ 496.4 , -14853.55],
[ -405.58, -15197.24],
[ 602.12, -15273.71],
[ 643.14, -15141.68]])

>>G

array([[ 2561715.65, 4444638.81],
[ 2560815.52, 4444289.81],
[ 2561823.58, 4444219.83],
[ 2561863.75, 4444351.03]])

>>A = zeros((2*L.shape[0],4),float)
>>A

array([[ 0., 0., 0., 0.],
[ 0., 0., 0., 0.],
[ 0., 0., 0., 0.],
[ 0., 0., 0., 0.],
[ 0., 0., 0., 0.],
[ 0., 0., 0., 0.],
[ 0., 0., 0., 0.],
[ 0., 0., 0., 0.]])

>>A[ ::2, 0] = 1.0
>>A[1::2, 1] = 1.0
>>A[ ::2, 2] = L[:,0]
>>A[1::2, 2] = L[:,1]
>>A[ ::2, 3] = L[:,1]
>>A[1::2, 3] = -L[:,0]
>>A

array([[ 1.00000000e+00, 0.00000000e+00, 4.96400000e+02,
-1.48535500e+04],
[ 0.00000000e+00, 1.00000000e+00, -1.48535500e+04,
-4.96400000e+02],
[ 1.00000000e+00, 0.00000000e+00, -4.05580000e+02,
-1.51972400e+04],
[ 0.00000000e+00, 1.00000000e+00, -1.51972400e+04,
4.05580000e+02],
[ 1.00000000e+00, 0.00000000e+00, 6.02120000e+02,
-1.52737100e+04],
[ 0.00000000e+00, 1.00000000e+00, -1.52737100e+04,
-6.02120000e+02],
[ 1.00000000e+00, 0.00000000e+00, 6.43140000e+02,
-1.51416800e+04],
[ 0.00000000e+00, 1.00000000e+00, -1.51416800e+04,
-6.43140000e+02]])

>>Y = zeros((2*G.shape[0],1),float)

array([[ 0.],
[ 0.],
[ 0.],
[ 0.],
[ 0.],
[ 0.],
[ 0.],
[ 0.]])

>>Y[ ::2, 0] = G[:,0]
>>Y[1::2, 0] = G[:,1]
>>Y

array([[ 2561715.65],
[ 4444638.81],
[ 2560815.52],
[ 4444289.81],
[ 2561823.58],
[ 4444219.83],
[ 2561863.75],
[ 4444351.03]])

>>N = dot(A.T.conj(), A)
>>T = dot(A.T.conj(), Y)
>>C = dot(linalg.inv(N), T)
>>C

array([[ 2.56113298e+06],
[ 4.45948730e+06],
[ 9.99856124e-01],
[ -5.80009571e-03]])

>>E0 = C[0]
>>N0 = C[1]
>>a = C[2]
>>b = C[3]
>>x = E0 + L[0,0] * a + L[0,1] * b
>>y = N0 + L[0,1] * a – L[0,0] * b
>>print x,y

[ 2561715.45624184] [ 4444638.76898143]

Examples on how to use sasha.py


>> #in python
>> from sasha import conforme
>> print conforme('GCP1.txt','GCP2.txt','x','out.txt')
Parametri di trasformazione :
Tx : -2587285.48816
Ty : -4445117.1582
Rotazione rigida : [ 0.33236506]
Fattore di scala: [ 1.]
Varianza dei parametri geometrici :
Sigma quadro rotazione rigida : 0.0244664334334
Sigma quadro varazione di scala : 0.000854147546627
Scarto quadratico medio : 0.343476930718
none

Guest blogger Massimo Di Stefano

Over the past few months I’ve been picking away on various hardware projects, particularly configuring my Arduino board as a USB joystick device and fusing in Python code, GPS signals, etc.

During this time I met Massimo Di Stefano (aka epifanio) who is also doing a bunch of neat controller work with ossimPlanet. You may know him from the #osgeo channel in IRC. We both feel we are just playing around in our spare time, but have some common goals. We are both interested in open source, hardware, ossimPlanet, Python, GPS and UAVs.

His work is encouraging for me and I think it is really cool. To help share some of his work, he’ll be blogging on here from time to time (he has his own feed).

Slashgeo – my source for news

As official Slashgeo day I wanted to make mention of this service for geospatial related news topics. When I’m too busy to browse through lists of blogs and websites, I can always depend on some interesting headlines from Satri and the gang. They are sure to point out much open source related news as well, which I always appreciate.

See: Slashgeo.org
—–
For open source focused blog entries, check out the OSGeo Planet Feed.

Safety Net for Cloud Computing?

A friend pointed out this Guardian article about Stallman’s (and others) perspective on the cloud computing direction. From an open source perspective I’ve felt similar concerns re: the shift to GMail, but I know that many users (like me) merely use it for mail mirroring, not a wholesale dependency.

As I got into FOSS, I prided myself on being “independent” of proprietary control – many of us started by running Linux on our home networks just to help maintain that sense of control and security. But with cloud computing, perhaps there’s a different story. What’s it worth to tap into that power? Are FOSS developers and service providers really going to move important services to these kinds of platforms? Intriguing, yes and exciting, no doubt – but how far will we go?

Like traditional proprietary strangleholds, I believe the FOSS universe will come through with their own alternatives. With all the Linux smarts sitting around, wouldn’t some sort of loosely coupled, FOSS-based peer-to-peer clustering network be enough for most of us? Or are FOSS developers and system integrators really ready to invest themselves in somebody else’s black boxes?

Did we learn nothing from Skynet or the first Cylon War? Those documentaries were accurate, right?

Disclaimer: Since my first introduction to “cloud computing” was through marketing hype, I’m trying to ignore that it exists until someone tells me it’s really useful. So, for now, my ignorance is intentional. 😉

A home server version of Linux – Amahi

What better way to spend a long weekend that experimenting with a new Linux-based file-sharing and networking platform? 😉 Amahi Linux Home Server aka the Home Digital Assistant is a set of pre-configured tools and services that are added on to the Fedora Core base. I just learned about it and thought I’d give it a try.
It’s currently in beta but is already looking like an interesting and “more easy” way of getting a home network up and running. Pretty much straight out of the box, you can map to a central set of Samba shares and access a web-based interface to various admin functions. Using ssh or samba, you can copy your docs, music and pictures over to it and use various built-in apps to access them. You can serve up your mp3 folder into a stream using the FireFly Media Server service, view your photos in a nice viewer and set up and monitor backup processes. I am especially interested in trying out the pre-configured VPN service!

For me, its primary purpose will be so I can have access to my docs and data while on the go, but my other interest is using this kind of system as a base for some geospatial tools. Similar to the FGS suite, or the OSGeo for Windows installed, I’d love to have my geospatial apps pre-configured and ready to use for interesting things like cataloguing data, browsing files and sharing maps.
There is still some progress to be made, especially to get it ready for Fedora 9, but take a tour – I’ll be interested to know what you think.

%d bloggers like this: