Archive for May, 2008
Sahana to be deployed in Chengdu
I’ve just heard some good news that Sahana is going to be deployed in Chengdu following the recent earthquake in China. This is excellent news!
Within two days, together with the project team at China System Center in Beijing, they have finished the customization of Sahana software based on the center’s specific request, and the People Module of the solution is ready to be deployed and start to function very soon. I know the team leader of the Chengdu Sahana Project team had just lost his house in the earthquake, however, he is fully engaged in the project these days.
I am very pleased to share with you that the Chengdu Municipal Government has officially accepted our proposal of using Sahana System to enhance their efficiency of the relief work! When Sahana System being deployed, and will be very soon, we will help over 100,000 people in Chengdu City and its 20 administrated districts immediately.
I hope that someday we will actually be able to get more organisations to not only deploy Sahana before a disaster occurs, but also to contribute to its ongoing development and improvement.
Budget2008
I haven’t done some political blogging for a while, but figured I’d briefly wade in with a couple of comments re: Michael Cullen’s Budget.
One particular comment I’d like to raise and highlight as a point of difference that National could make. In Cullen’s Budget speech he stated that the structure of the income tax system would be simplified.
This programme consists of a combination of a cut in the bottom rate of income tax, threshold changes, a simplification of the structure of the income tax system, a bringing forward of indexation of Working for Families and a forecast second round of such indexation.
In theory the current personal tax system has three rates: 19.5 per cent up to $38,000, 33 per cent from $38,001 to $60,000, and 39 per cent above $60,000 a year.
In practice, the operation of the Low Income Rebate for earned income creates an effective four-step scale with the bottom step split into two: 15 per cent up to $9500 a year and 21 per cent from $9501 to $38,000.
At the completion of the Budget 2008 tax-cut programme the rates will be 12.5 per cent on the first $20,000 of income, 21 per cent from $20,001 to $42,500, 33 per cent from $42,501 to $80,000, and 39 per cent above $80,000.
Call me blind, but aren’t we starting with a four-tier system and ending with a four-tier system? What is simple about that? If Cullen was serious about simplifying the income tax system he would look at removing one, and ideally two of the tiers. This would create a far simpler two-tier structure. Why not have a lower tax bracket for all income up to say $20k-$30k, and a higher rate for everything over that bracket?
For a while I was keen on a single income tax rate, but I have come to recognise that there does need to be some break given to lower income earners to recognise that tax can be more significant.
A simple two-tier income tax system would achieve true simplification. One has to wonder if Cullen only wants to keep complexity in the tax system to make juggling the numbers easier.
Speeding up OS X
Having just been through some emails with work colleagues complaing about slow performance in Windows, it got me thinking about what I could do to speed up my nearly 4-year-old Powerbook G4 with 1.25GB of RAM. I’m going to capture here some of the things I tried, and will keep updating them as I find more. It has slown down significantly under 10.5, and Mail in particular has not been very useable at times.
1. Turn off 3d dock. This creates a flattened Dock. I also turned off Magnification – Apple > Dock > Turn Magnification Off. Certainly doesn’t take as much CPU and it looks a little cleaner to boot.
defaults write com.apple.dock no-glass -boolean YES
killall Dock
2. I closed all my widgets as I had read that they can take up 10MB per widget! Seems a little excessive, but given how infrequently I use them, I can lose them for a while.
3. Upgrade the RAM – this one is going to cost some money. Currently it is running at 1.25GB and this appears to be right at the minimum required for OS X 10.5. My Page Outs are currently running at 143MB, which suggests I don’t have enough RAM. So time to look at replacing a 256MB module with a 1GB one and taking it to 2GB.
Update: 2008-05-30
After two weeks I have found the machine to be quite a bit more responsive. Sure, there are times when I have memory hungry applications open that it does slow down, but for general use – email, browsing, and working on documents, it has improved. I think the main improvement has been the bump to 2GB of RAM, but I think the other changes have helped as well. I wonder if I’ll be able to eeek the life of my laptop out to five years now!
Protecting your privacy uploading tracklogs to public sites
I have become interested in the ways that you can protect potentially private or sensitive information that may be contained in tracklogs uploaded to any public site. I am primarily writing this article from an OSM perspective, but it is really valid for any site that you may upload a tracklog to.
A GPX tracklog consists of a lot of sections of code that look something this – a trackpoint.
<trkpt lat="-43.502053000" lon="172.576317000">
<ele>16.480000</ele>
<time>2008-05-06T08:37:46Z</time>
</trkpt>
A trackpoint contains two key pieces of information – the time (in UTC – the Z after the time refers to this), and the location in latitude and longitude. A whole pile of these trackpoints are then added together to produce a tracklog. This of course presents a privacy risk as anyone that has access to the tracklog might be able to assume that the person that uploaded the tracklog was at that location at the time specified. And with GPS, this can be recorded to a high level of accuracy.
So, what we need to do is look at ways to protect some of this information. I’ll write here about two techniques that I have used to protect information in tracklogs by editing them before uploading them to public websites. For most public websites, the most important information is location, and time is less important. So we need to take a two-pronged approach to tracklog privacy protection.
1. Delete track points that we might have privacy concerns with.
2. Remove timestamps that we don’t want people knowing the time we were there.
Deleting Trackpoints
1. Protecting it manually. I have been using the free GPSTrackMaker to load and edit tracklogs before uploading them to OSM. This is a manual and sometime laborious process. I use this to remove any trackpoints around the final locations of puzzles/multi-caches that I have visited, and also to remove trackpoints close to home/home/friends etc. I also use it to touch up the tracklogs such as those areas that spray trackpoints around a wide area that don’t mean anything – such as in urban canyons in Wellington. This can result in quite a ‘rich’ tracklog, especially if you delete those areas where the trackpoints are not that accurate due to GPS signal error.
2. Automating deletion of trackpoints. There are also a number of locations that one may always want to remove from a tracklog before making it publicly available. Locations such as home and work spring to mind. I was looking for a way to automate the removal of these locations using GPSBabel. Using nothing more than co-ordinates near your home and a radius, you can easily set up a filter to remove all points that fall with the circle using the following GPSBabel command. Note that the following command is needlessly complex as a little workaround is required to use the radius filter on trackpoints (you have to convert tracks to waypoints, do the radius filter on waypoints, and then convert the waypoints back to tracks – ugly but it works).
gpsbabel -t -i gpx -f in.gpx -x transform,wpt=trk -x nuketypes,tracks -x radius,distance=0.3K,lat=-43.0,lon=172.5,exclude,nosort -x transform,trk=wpt -x nuketypes,waypoints -x track,pack,split=30m,title="LOG %Y%m%d" -o gpx -F out.gpx
It is possible to build a batch file that removes multiple locations such as home, work and friends, that requires very little input. Note that this process does not destroy the original tracklog that you keep, rather it creates a new tracklog with the sensitive data removed.
Removing Timestamps
For whatever reason, it makes some sense to also remove timestamp information from tracklogs – I won’t go into the reasons here. Here is a little unix script that I use to change the timestamp information. Usually I don’t mind people knowing what day I was somewhere, but I’m not that keen on them always knowing the time. So, I will remove either minutes/seconds, or minutes/seconds/hours as have every timestamp appear as midnight.
If you want to set it so that all times are set to the start of the hour e.g. hh:00:00, use this.
#!/bin/sh
for f in *.gpx; do
sed 's/:[0-9][0-9]:[0-9][0-9]Z/:00:00Z/g' < $f > ${f%.gpx}-clean.gpx
done
If you want to set it so that all times are set to midnight e.g. 00:00:00, use this.
#!/bin/sh
for f in *.gpx; do
sed 's/T[0-9][0-9]:[0-9][0-9]:[0-9][0-9]Z/T00:00:00Z/g' < $f > ${f%.gpx}-clean.gpx
done
Naturally, this isn’t the easiest to do, but it is getting easier. It would be great if someone was able to write a tool/webpage that was able to do this sort of cleaning of tracklog data before uploading it to public websites.
National Address Register project terminated
I wanted to share some extremely disappointing news that I received today. The National Address Register project has been terminated.
This project had the intention of providing a single national authoritative dataset for roads, addresses and placename information. The potential of this project was to deliver a free dataset that all organisations and individuals in New Zealand were free to use. This would have made a fantastic resource, and had the potential to consolidate a number of mapping projects, and could have greatly simplified the work associated with project such as the NZ Open GPS Maps project, as the NAR would have provided a single national focal point for feedback and correction of road and address information.
The cynic in me says that the reason this project failed was because of the commercial interests in existing roading datasets. Currently there are multiple roading datasets from different providers, and they are making very good money from these. Some roading datasets sell for six figure sums on an annual basis. Naturally, very few organisations can afford these prices, so only large Government agencies tend to be able to purchase them. Suffice to say, these datasets are different, and there is not a single authoritative dataset amongst them.
The NAR had the potential to create a single, free and authoritative road, address and placename dataset. Tenders were invited for the project, and there was going to be only one organisation to win the tender. As a result, all but one of the current commercial providers stood to lose their revenue streams from their roading datasets. As you will see in the notification below, the tenders were too expensive. I believe that it was in all the commercial vendors interests to put in high tender prices to ensure that the NAR did not go ahead, and that they could protect their existing revenue streams rather than risk missing the tender and losing it all.
The upshot of this is that my faith in the Government to provide geospatial information to its citizens is now close to zero. If they are not capable of producing a single authoritative roading dataset (arguably one of the most important sets of spatial information as it defines most of our physical connectivity) then there is little hope of them being able to deliver any useful spatial information to citizens.
As the NZ Open GPS Maps, Zenbu and NZ Open Street Map projects have shown us, a volunteer community can develop products faster and cheaper than commercial or government organisations, and over time they will have better quality as well.
I believe the time has come for us to build more volunteer communities to provide spatial information that our Government is failing to provide to us. No longer can we wait upon them, rather we must build it ourselves. There are four key areas that we need to focus on.
1. Raw data collection – taking our GPS units out into the real world and collecting and sharing data. Collecting track logs and uploading these to the OpenStreetMap or NZ Open GPS Maps projects. Providing waypoints to OSM and Zenbu. Please – if you haven’t already, consider donating some time and information to these projects so that they have raw data to work with. This ‘field survey’ work is essential to creating our own spatial information resources. (I would particularly encourage geocachers to contribute their tracklogs if at all possible as we tend to travel a little more than others)
2. Mapping – converting the data collected in the field to information. Creating vectors for road lines, adding street name, directions, speeds. Using your local knowledge to map the community around you.
3. End products – converting the spatial information into a form suitable for others to use, for example the NZ Open GPS Maps project producing Garmin map files that can be loaded into GPS units.
4. Distribution – due to the large quantities of information involved, we may need to look at creating an ad-hoc network of individuals and websites to share the vast quantities of information about our country via torrents or similar P2P mechanism.
I believe the time has come for all those that want better access to spatial information to go out there and be a part of collecting, and building it. We can’t wait for Government to build it for us, so we will have to do it ourselves.
Let’s get started.
SUBJECT: NAR PROJECT TERMINATEDThe National Address Register (NAR) project is a cross-government initiative set up to develop infrastructure to improve the provision of address, road and place name information for government agencies, businesses and the wider community.The project is over-seen by a Steering Committee comprised of representatives of key stakeholders from central government, local government and emergency services agencies.
An integral part of developing a business model and business case for the National Address Register (NAR) was to assess whether there was a supplier able to provide the relevant services and to identify the likely costs. An RFP process was chosen as the most effective way of identifying both of these.
Following assessment of the tender proposals, the Steering Committee has decided to terminate the project. Despite the project showing considerable potential to reduce duplication across government and reduce costs, it is too expensive to proceed with in its current form.
Further investigation into the need for, and the most cost-effective way of providing address, road and place information, will be led by the New Zealand Geospatial Office, within their mandate under the NZ Geospatial Strategy. This work will include determining the optimal role for the Crown, local government and the private sector. Brendon Whiteman, Director New Zealand Geospatial Office - brendon.whiteman@linz.govt.nz; will be happy to answer any queries that you may have in relation to these activities in the context of the overall work programme of the Geospatial Office.
It is expected that agencies will continue with existing arrangements they have for the purchase of this location data, from the commercial sector.
Nancy McBeth of the State Services Commission, is preparing a Lessons Learnt report on the NAR project. If you have some views that you would like considered in that report, please contact her at nancy.mcbeth@ssc.govt.nz by 31 May 2008.
On his return from Annual Leave next week, Laurence Millar, Chair of the NAR Steering Committee will formally write to your Chief Executive to advise of the decision.
Regards
Jill Barclay
Operational Owner NAR project
NZ Police
Received from a public email list I subscribe to.
Garmin Colorado 300 Review
Note – this is a living document and will be continually updated with more observations as I spend more time using the unit.
Introduction
For a couple of years now, I have been borrowing a friends Garmin 60csx for going geocaching with. My last GPS was a Garmin GPS Map 76S, and before that the venerable 12XL. With my use of the 60csx steadily increasing, my friend was seeing less and less of their GPS, so I finally decided after some reading to take the dive and purchase one of the new Garmin Colorado’s to become my primary GPS.
This article is my living review of the Garmin Colorado 300 that I purchased, and I’ll be continually updating the page as I find more likes and dislikes. Any additions after the first publication will have the date of addition in brackets. I’ll mark positive and negative points with the obvious +/-.
Summary
I had heard quite a few comments and discussions about the Colorado’s, and had the brief opportunity to try one out up in Hamilton recently thanks to RadioNut and ButterflyLady. I had been tossing up between trying a Colorado and getting a Nuvi for the car, but the need to stop hoggin my friends 60csx made the decision for me.
To date I haven’t regretted it. The benefits so far appear to outweigh the hassles, and I’m sure that there will be many improvements made to the software in due course. Haven’t yet cached with it, but it looks promising – although I don’t think it will replace the PDA notes functionality I use for recording multi-waypoint information and calculating final caches.
System Software History
* Initial Writing – Software Version 2.40, GPS Software Version 2.60
Casing and Connectivity
The new exterior to the unit is remarkably different. Most noticeable is the big shiny screen, the roller, and the silver finish.
+ In the hand – the unit fits in my hand much better than the 60csx and feels much more solid and durable.
+ Big screen – more real estate taken up by the screen is a good thing!
+ External antenna port – this is in a far better position than the 60csx, and is far less likely to come out during use. The problem I had with the 60csx was the rounded casing around the external antenna port caused the plug to come loose with just the slightest antenna cable movements. Initial tests in the car show this port to be far better designed.
+ Latch system – the new latch also looks a big improvement over the 60csx. Having previously attempt to carabena the 60csx to something using the metal ring on the back, I quick discovered that with a big of movement the latch would soon open the battery compartment and you’d end up with the GPS on the ground, and just the back lid still attached to you. Not good. The new latch appears to secure the back much better.
+ Mounting system – the new mounting system on the back also seems a big improvement. I haven’t got the bike mount set up yet, and the car mount hasn’t arrived, but it appears to have a very nice rile system to slide the unit snugly into mounts.
- Silver finish – sure it looks high tech and all, but I’m wondering how long it is going to remain in that pristine condition once it has been on a few geocache hunts with me.
- USB Storage mode – why oh why did Garmin decide to have the Colorado automatically switch to USB storage mode as soon as a USB cable is connected? The 60csx was fantastic in that you could power the unit in the car via USB. Now you plug it in with the same cable and the unit switches to USB storage mode. Even worse, because you can’t eject it, you have to remove the batteries to reset the unit to its ordinary operating mode. For sure, make the storage mode easy to access when connecting it to a computer, but don’t have it default to it. Perhaps pop up a brief window that gives the option of converting to USB storage mode, but if no input is given in a few seconds then the GPS should stay in the same state.
Configuration and Profiles
The Colorado can be a bit of a monster to configure at first glance. It introduces profiles for different activities that allow you to quickly change the setup of the GPS.
+ Profiles – it is great being able to customise the the GPS for different activities. The unit came with profiles for Recreational, Geocaching, Automotive, Marine and Fitness activities. Each profile allows full customisation of all settings of the unit. Even allowing different co-ordinate systems, or measurement systems to be defined.
+ XML Profiles – I haven’t had much more than a casual poke-around on the USB file system of the GPS yet, but it appears that the profiles are stored in XML. This means in theory that you may be able to create a global XML template, and then adjust them in a software editor or even a web page. This may be particularly useful for sharing profiles with mates, or for suppliers to create profiles, and then upload new profiles just by copying the XML profile files into the appropriate folder.
- No global profile – one problem with the very configurable XML Profiles is that there doesn’t appear to be a global profile. This means that if you want to change a setting in all profiles you have to either load and edit each profile individually in the GPS, or change it in each XML file. What would be really nice is being able to have a Global profile (XML, just like the rest) that defines settings, and then each profile is able to either overwrite a setting, or inherit the property from the Global profile. Likewise, if the profiles are able to inherit properties from the Global profile, then the XML profiles would be smaller and easier to edit as they would only have to record the settings that are different from the Global profile, rather than record every setting.
Interface and Input Methods
This has been perhaps the biggest learning curve yet, as the Colorado has a significantly different user interface and input methods.
Having come from the 12XL, 76S, and more recently the 60csx, I have become very accustomed to the ‘page’ style of navigation.
+ After a few days usage, the roller is very very nice for changing the map scale, and sure beats the continue – in, in, in or out, out, out on the 60′s.
- Shortcuts Menu – I’m not yet convinced this is the easiest way to navigate around the pages, and for the time being I have changed this to the more familiar ‘page’ navigation. This can be changed in System Setup Page > Shortcuts > Options > [ Use Shortcut Menu | Use Page Loops ]. This may be where profiles come in. If using a profile with only a few pages, it may be better to use Page Loops. If using a profile with a large number of pages, the Shortcut Menu is probably a far better option. At least with profiles, you’ll have the best choice.
- Navigation strangeness – When navigating to a waypoint, and using Shortcuts, the Stop Navigation function is found under the Shortcuts list. However, when using Page Loop, it is dynamically added to the top of the Other list. Strangely enough, neither of the two obvious pages that may be used for routing – Map or Active Route – provide a quick option to either Stop or Detour the current navigation. Detour doesn’t even appear in the Other list in Page Loop mode. For some reason, when you are navigation, and are set in Page Loop mode, a second Mark Waypoint is added to the Other list, so you end up with Stop Navigation, followed by two Mark Waypoints. Clearly a bug with handling these dynamic menus. As it is currently structured, the Shortcuts mode appears to be far more reliable and easier to access Stop Navigation.
- Profiles – it should be far, far easier to change profiles. Right now you have to head to either Setup or Other, select Change Profile and select the profile. Too hard for constant changing, particularly if you’re going from Automotive to Geocaching as you drive to a cache, hunt a cache, drive to the next cache etc. It should be possible to load profiles into the Shortcuts menu.
- White message pages – these have frankly become a little irritating. Having the whole screen revert to white to display an error message is annoying. Particularly when you are driving and navigating and you are not necessarily in the possible to dismiss the error. More subtle error messages should be implemented that allow you to continue to at least see the display of the GPS.
Function – Tracks
The tracklog is a mixed bag so far with the Colorado, and I haven’t yet quite got my head right around it. The setup is relatively simple and allows you to select Auto/Time/Distance as always.
One thing I loved about the 60csx – particularly for travel – was the way you could set it to record track points quite frequently, and have it save them to the card. Each day it would create a new tracklog file with the date as the filename – e.g. 20080508.gpx. This was great.
The Colorado setup is different. In particular is the way it handles Current vs Archive tracks. This of course may just be nomenclature in that the Current track is the same as the 10k active track on a 60csx, and the Archive tracks are the equivalent of those save to a card. However, instead of naming and filing the tracklog GPX files by date, the Colorado appears to be using a serial number e.g. 1.gpx, 2.gpx etc. It appears to create a new file at a certain size, rather a separate file for each day.
Function – Geocaching
The geocaching functionality on the Colorado certainly deserves a lot of discussion. Some aspects of it work very well, others leave a lot to be desired.
+ Geocaching GPX – the ability to store geocaching GPX in the unit and display cache information is quite useful. It provides nice quick access to difficulty, terrain, cache size, trackables, full description, hints and logs. This certainly brings the Colorado a long way towards true paperless geocaching.
+ Field Notes – these appear to work very well. After heading out for some geocaching where I found four, and DNF’ed another, I tested the upload of the field notes file. It worked flawlessly and provided me with an easy means of creating logs for each cache, and these were removed from the list as the caches were logged. The are loaded in the order they were logged in the field – making the logging of caches easier than ever before. I am certainly going to make good use of this function. Of course, given that field notes are nothing more than a text file, it could also be crafted on a PDA in the field and uploaded. But the Colorado certainly makes it painless.
- Geocaching GPX for multis and puzzles – the geocaching GPX is fantastic for simple geocaches such as traditionals and letterboxes. However, it does fall down when multicaches are concerned. Multis still required something to record details and solve to find the final cache. Coming from a PDA, I still found myself reaching for the PDA to complete the multi-caches today.
- Geocache waypoints – Unfortunately the geocaching functionality does not recognise multicache waypoints, or carparks and the like. Instead of finding them under the Geocache page, you have to return to the Where To? page, and go to waypoints and then try and find the waypoint. The Colorado really should be smart enough to match the 3rd-6th/7th characters of a waypoint name so that it can match it to a geocache, and then display these child waypoints under the Options menu with a nice quick Go To Child Waypoints page or similar.
- Routing – it is quite cumbersome to select road routing to drive to a cache, and then revert to geocaching mode to find the cache. All navigation in the built in geocaching mode is point-to-point. The Geocaching profile really needs an additional option when selecting Go To Location – it should ask whether you would like to route or go direct. I found it quite frustrating today to switch back and forwards between modes today so that one could route from cache to cache in the car.
- Cache identification – it would be nice on the Geocache page if the type of each geocache was identified with a little icon. It would help when deciding what cache to do next to see whether it is a traditional, multi or puzzle.
The Geocaching functionality has a lot of potential, but it is still in a relatively immature state. The capabilities are huge step up from the 60csx in terms of complexity, however the ease of use and thought about the interface doesn’t look that refined.
Function – Automotive
Wow – used the Automotive profile today and was very impressed by the map. A nice oblique view looking down from behind to show the streets ahead. Upcoming streets a nicely labelled. I’m really looking forward to getting the car mount now and using it. It looks very nice.
Function – Satellite
It is a simple page, but one I refer to quite often to check the signal. Whilst the display of information is very nice, I feel that it has a few improvements that could be made.
- Signal Strength Bars – the dark blue signal strength bars are very difficult to see against the default dark green background. Please provide a higher colour contrast setting so that you can actual see the signal strength bars at a quick glance.
- Unknown Number – there is a little number down the bottom right of the constellation map, but it is not identified. I assume it is the elevation. Please mark it as such.
Function – Map
What can I say other than the new map looks absolutely fantastic. Most of these comments are based on the NZ Open GPS Maps and the Global DEM.
+ Global Digital Elevation Model (DEM) – the inclusion of a global DEM means that even New Zealand to some degree gets the pretty shaded relief map imagery when zoomed out. Note that this is not the 3D view, and that requires additional information to be added to the maps to support that.
+ Resolution and Screen Size – the combination of increased screen size and increased resolution have created a gorgeous and practical display. Practical as you can display more detail on the map by using smaller cartography.
+ Tracklog Mapping – the mapping of tracklogs is far less intrusive than it used to be. A nice thin black line that doesn’t obscure the actual roads is a big improvement. It even allows you to see more detail in you tracklog, such as the line around roundabouts. Very nice.
+ Options – the map options are very simple and easy to use. It is simple to select maps and enable/disable them with just a few simple clicks. Likewise adding and removing data fields are quick and easy. Modifying data fields couldn’t be much easier either.
- Only Two Data Fields – with the increase in map size, it might be nice to have say four data fields on occasion, but the options didn’t appear to allow anything other than the default two.
Function – Compass
I haven’t really used the compass yet, so more comments will come.
- Easy On/Off – it seem really strange that to turn the compass on and off, you can’t do this from Compass Page > Options, rather Setup > Heading > Compass > [ Off | Auto ]. You should be able to quick toggle this from the Compass page options.
Function – Project Waypoint
This is a really bad example of user interface design. I can’t believe that to enter the bearing, you have to enter each digit of the degree. How slow, painful and indicative of someone that hasn’t really thought about the design. They should use a different graphic to indicate a compass, and have fast turns translate to +/- 10 or 15 degree increments, and have slow turns refine the bearing by individual degrees. Far quicker entry than the tortuous system they have now.
Recommended Improvements
These are listed in no particular order, and are a brief summary of what is contained in the review above. I’m sure some of these we will see in time with software upgrades – assuming that Garmin just wanted to get the Colorado’s to market, and then continue adding/refining features to an existing userbase.
* Create a global profile, and allow custom profiles to inherit or override properties from the global profile. This will make profile management quite a bit easier.
* High contrast signal strength bars on the Satellite Page.
* Identify the mystery number of the Satellite Page.
* Allow the display of more data fields on the map display e.g. default is two, allow say four, or even six.
* Provide a quick Compass Off/Auto option on the Compass Page.
* Provide a different user interface for selecting degrees on the Project Waypoint page. There is absolutely no reason to enter each digit individually for a bearing.
* It would be nice on either the Satellite or Map pages to have an option to quickly turn the Tracklog on/off.
* Make it easier to access the Stop Navigation/Detour modes when in Page Loop mode. In fact, why not just put these under the Options menu for both the Map and Active Route pages – as these are the most commonly used pages for routing.
* Profiles should be able to be added to the shortcuts menu to speed switching e.g. I’d like to be able to quickly select Automotive and Geocaching profiles with as few button presses as usual.
* Geocaches page needs to identify different cache type at a glance.
* The Geocaching function needs a much easier means of integrating routing for driving between caches, and then switching to cache hunting.
* Stop the unit switching to USB mode when a USB cable is plugged in. Why can’t it work just like the 60csx? USB should power it by default, and perhaps the USB mode could be selected from the Shortcuts instead
* Get rid of the full white page error messages.
Comments on the spatial citizen
Just wanted to add some brief comments following discussion as GOVIS 2008, in the ‘Our Place in Space’ stream. This was held in Wellington last Friday. At the end of the day I raised the following challenging comments to the audience, and they seemed to be well received. I will be reviewing and adding to these in the near future.
1. Don’t wait for application ideas or business cases. Free as much data as possible and the applications will follow. The killer application for your data has not been invented yet.
2. Consider community and volunteers. We are enthusiastic, have a huge capacity to learn, we have a hunger for data, and if it suits us we will dedicate massive amounts of time to it. Our expectations are being fed by online mapping and we want more.
3. Spatial citizens don’t care about arbitrary political boundaries and are happy acting with national and even international datasets. We don’t want to work with 80+ Local Government agencies. We want it to be trivial to find spatial information. Let us integrate the data we want using our own systems. We want to package the data our way. We want to take it out into the real world where there is no web access. We want to fix your data, but only if it is fixed once and fixed fast. LINZ – are you listening? We can do it in 24 hours and we’re not getting paid to do it. We will only get faster, more competent, and hungrier for information about our place in space…