Skip to content

Instantly share code, notes, and snippets.

@h4ck3rm1k3
Forked from andrewharvey/bboxfilter.pl
Created January 28, 2012 17:11
Show Gist options
  • Save h4ck3rm1k3/1695067 to your computer and use it in GitHub Desktop.
Save h4ck3rm1k3/1695067 to your computer and use it in GitHub Desktop.
XSL to convert http://api.fosm.org/api/0.6/changesets into an Atom/GeoRSS feed
#!/usr/bin/perl -wT
# This script uses XML::Atom::Filter to filter an existing FOSM recent changes
# feed given a query bbox based on the georss:box for each entry in the feed
#
# Ideally we would implement it on the server for /feed to return the static
# atom feed from disk, and /feed?bbox to call this CGI script.
#
# This script is licensed CC0 by Andrew Harvey <andrew.harvey4@gmail.com>
#
# To the extent possible under law, the person who associated CC0
# with this work has waived all copyright and related or neighboring
# rights to this work.
# http://creativecommons.org/publicdomain/zero/1.0/
use strict;
use CGI;
use lib "/home/h4ck3rm1k3/perl5/lib/perl5";
use XML::Atom::Filter;
my $cgi = CGI->new;
my $query_bbox = $cgi->param('bbox');
# FIXME: how should we go about implementing a /feed and /feed?bbox api like
# OSM? Should we use a fancy proxy in our web server, or adapt this script to
# handle /feed without a bbox. Ideally the latter shouldn't add a performance
# hit to the former.
if (!defined $query_bbox) {
print $cgi->header(-status => '400', -type => 'text/plain');
print "For now, the undpoint URL for a filtered feed and non-filtered feed are different, so for this URL you must specify a bbox paramater.\n";
exit;
}
# check bbox syntax
if ($query_bbox !~ /^([-]?\d+\.?\d*),([-]?\d+\.?\d*),([-]?\d+\.?\d*),([-]?\d+\.?\d*)$/) {
print $cgi->header(-status => '400', -type => 'text/plain');
print "Your bbox paramater is malformed.\n";
exit;
}
# get query bbox from URL parameters
my $query_bottom = $2;
my $query_left = $1;
my $query_top = $4;
my $query_right = $3;
my $f = XML::Atom::Filter->new();
my $input_file = "fosm-changesets.atom";
open(my $in_fh, '<', $input_file) or die $!;
{ no warnings 'redefine';
# update the feed header to reflect this is a feed for the given bbox
sub XML::Atom::Filter::pre {
my ($class, $feed) = @_;
# retitle the feed
# TODO we could instead add area in sq km, and give a close locality but we will keep it simple for now
$feed->title($feed->title . " for $query_left,$query_bottom,$query_right,$query_top");
$feed->id($feed->id . "?bbox=$query_bbox");
}
# find the extents of this entry from the georss:box element and test if it
# overlaps our query bbox
sub XML::Atom::Filter::entry {
my ($class, $entry) = @_;
my $georss_ns = XML::Atom::Namespace->new(dc => 'http://www.georss.org/georss');
my $bbox = $entry->get($georss_ns, 'box');
my ($bottom, $left, $top, $right) = split / /, $bbox;
if ($left < $query_right && $right > $query_left &&
$bottom < $query_top && $top > $query_bottom) {
# this entry overlaps our query bbox, so leave it in the output feed
return $entry;
}else{
# return undef to filter this entry out of the output feed
return undef;
}
}
}
# return the filtered feed
print $cgi->header(-type => 'application/atom+xml; charset=utf-8');
# FIXME how to have this return a pretty printed feed?
$f->filter($in_fh);
<?xml version="1.0" encoding="UTF-8"?>
<!--
This XSL stylesheet takes an XML document of recent FOSM.org changesets and
produces an Atom feed of those changesets. The output is modeled on the
changeset/feed Atom output of http://git.openstreetmap.org/?p=rails.git
xsltproc is one such program which can apply this XSL to produce the Atom feed.
This document is licensed CC0 by Andrew Harvey.
To the extent possible under law, the person who associated CC0
with this work has waived all copyright and related or neighboring
rights to this work.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/2005/Atom"
xmlns:georss="http://www.georss.org/georss">
<xsl:output method="xml" indent="yes" encoding="UTF-8"/>
<xsl:template match="/osm">
<feed xml:lang="en" xmlns:georss="http://www.georss.org/georss" xmlns="http://www.w3.org/2005/Atom">
<id>http://api.fosm.org/api/0.6/changesets/feed</id>
<title>Recent fosm.org Changesets</title>
<icon>http://www.openstreetmap.org/favicon.ico</icon>
<logo>http://www.openstreetmap.org/images/mag_map-rss2.0.png</logo>
<rights type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<a href="http://creativecommons.org/licenses/by-sa/2.0/">
<img src="http://i.creativecommons.org/l/by-sa/2.0/88x31.png" alt="Creative Commons by-sa 2.0"/>
</a>
</div>
</rights>
<link href="http://api.fosm.org/api/0.6/changesets" type="text/xml" rel="alternate"/>
<xsl:apply-templates select="changeset">
</xsl:apply-templates>
</feed>
</xsl:template>
<xsl:template match="changeset">
<xsl:param name="id" select="@id"/>
<xsl:param name="user" select="@user"/>
<entry>
<id><xsl:text>http://api.fosm.org/api/0.6/changeset/</xsl:text><xsl:value-of select="@id"/></id>
<published><xsl:value-of select="@created_at"/></published>
<updated><xsl:value-of select="@closed_at"/></updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id={$id}" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/{$id}" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/{$id}/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">
<xsl:text>Changeset </xsl:text>
<xsl:value-of select="@id"/>
<xsl:text> - </xsl:text>
<xsl:value-of select="tag[@k='comment']/@v"/>
</title>
<author>
<name><xsl:value-of select="@user"/></name>
<uri><xsl:text>http://www.openstreetmap.org/user/</xsl:text><xsl:value-of select="@user"/></uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td><xsl:value-of select="@created_at"/></td>
</tr>
<tr>
<th>Closed at:</th>
<td><xsl:value-of select="@closed_at"/></td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/{$user}"><xsl:value-of select="@user"/></a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<xsl:apply-templates select="tag">
</xsl:apply-templates>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>
<xsl:value-of select="@min_lat"/>
<xsl:text> </xsl:text>
<xsl:value-of select="@min_lon"/>
<xsl:text> </xsl:text>
<xsl:value-of select="@max_lat"/>
<xsl:text> </xsl:text>
<xsl:value-of select="@max_lon"/>
</georss:box>
</entry>
</xsl:template>
<xsl:template match="tag" xmlns="http://www.w3.org/1999/xhtml">
<tr>
<td/>
<xsl:value-of select="@k"/>
<xsl:text> = </xsl:text>
<xsl:value-of select="@v"/>
</tr>
</xsl:template>
</xsl:stylesheet>
# Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h dom mon dow command
1 1 * * * bash /pine02/www/rss/fosm-changeset-feed
#!/bin/sh
# This script is a wrapper around the changesets-osm2atom.xsl script.
# It fetches the changeset xml from fosm.org, runs xslt and pushes the
# result to the web server document directory.
# You can add this script as an hourly cron task for hourly updates.
# This script is licensed CC0 http://creativecommons.org/publicdomain/zero/1.0/
TMPDIR=/tmp/fosm-changesets-feed
WWWDIR=/pine02/fosm.org-webpage/fosm.org/rss
mkdir -p $TMPDIR
curl -o $TMPDIR/incomming "http://api.fosm.org/api/0.6/changesets"
if [ $? -ne 0 ] ; then
# raise error
echo "curl error $?"
exit 1
fi
xsltproc -o $TMPDIR/outgoing /pine02/www/rss/changesets-osm2atom.xsl $TMPDIR/incomming
if [ $? -ne 0 ] ; then
# raise error
echo "xslt error $?"
exit 1
fi
sed "s/<rights type=\"xhtml\">/<updated>`date --utc --rfc-3339=seconds | sed 's/ /T/' | sed 's/+.*$/Z/'`<\/updated>\n <rights type=\"xhtml\">/" $TMPDIR/outgoing > $TMPDIR/outgoing-patched
cp $TMPDIR/outgoing-patched $WWWDIR/fosm-changesets.atom
exit 0
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns:georss="http://www.georss.org/georss" xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
<id>http://api.fosm.org/api/0.6/changesets/feed</id>
<title>Recent fosm.org Changesets</title>
<icon>http://www.openstreetmap.org/favicon.ico</icon>
<logo>http://www.openstreetmap.org/images/mag_map-rss2.0.png</logo>
<updated>2012-01-28T17:19:16Z</updated>
<rights type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<a href="http://creativecommons.org/licenses/by-sa/2.0/">
<img src="http://i.creativecommons.org/l/by-sa/2.0/88x31.png" alt="Creative Commons by-sa 2.0"/>
</a>
</div>
</rights>
<link href="http://api.fosm.org/api/0.6/changesets" type="text/xml" rel="alternate"/>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006589</id>
<published>2012-01-28T16:12:40Z</published>
<updated>2012-01-28T16:12:40Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006589" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006589" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006589/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006589 - sas tracing</title>
<author>
<name>TimSC</name>
<uri>http://www.openstreetmap.org/user/TimSC</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T16:12:40Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T16:12:40Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/TimSC">TimSC</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = sas tracing</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.26155942278878 -0.5975807376856707 51.26521777563369 -0.5942015899250092</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006588</id>
<published>2012-01-28T15:45:10Z</published>
<updated>2012-01-28T15:45:10Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006588" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006588" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006588/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006588 - address mapping</title>
<author>
<name>TimSC</name>
<uri>http://www.openstreetmap.org/user/TimSC</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T15:45:10Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T15:45:10Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/TimSC">TimSC</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = address mapping</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.26241303000109 -0.587323509576195 51.26341869191926 -0.585169385212314</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006587</id>
<published>2012-01-28T15:38:38Z</published>
<updated>2012-01-28T15:38:38Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006587" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006587" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006587/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006587 - address mapping</title>
<author>
<name>TimSC</name>
<uri>http://www.openstreetmap.org/user/TimSC</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T15:38:38Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T15:38:38Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/TimSC">TimSC</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = address mapping</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.2639274 -0.585097048639761 51.264000747266095 -0.5848811</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006586</id>
<published>2012-01-28T15:37:53Z</published>
<updated>2012-01-28T15:37:53Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006586" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006586" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006586/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006586 - address mapping</title>
<author>
<name>TimSC</name>
<uri>http://www.openstreetmap.org/user/TimSC</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T15:37:53Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T15:37:53Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/TimSC">TimSC</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = address mapping</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.2548216 -0.5902382 51.2643472 -0.5831845</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006585</id>
<published>2012-01-28T13:22:46Z</published>
<updated>2012-01-28T13:22:46Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006585" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006585" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006585/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006585 - correct edits by supt_of_printing</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T13:22:46Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T13:22:46Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = correct edits by supt_of_printing</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-37.7222201 145.3463645 -37.2117154 145.4985604</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006584</id>
<published>2012-01-28T13:04:44Z</published>
<updated>2012-01-28T13:04:44Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006584" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006584" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006584/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006584 - Remove incorrect roundabout names new additions updates Bendigo Vic</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T13:04:44Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T13:04:44Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names new additions updates Bendigo Vic</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-36.7687074 144.2773666 -36.7581803 144.2922407</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006583</id>
<published>2012-01-28T12:47:56Z</published>
<updated>2012-01-28T12:47:56Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006583" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006583" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006583/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006583 - Remove incorrect roundabout names new additions updates Bendigo Vic</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T12:47:56Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T12:47:56Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names new additions updates Bendigo Vic</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-36.7822386 144.2521142 -36.759468172764755 144.27870081194234</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006582</id>
<published>2012-01-28T11:38:21Z</published>
<updated>2012-01-28T11:38:21Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006582" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006582" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006582/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006582 - Near Lake St Clair - presurvey - rivers and creeks from HiRes Bing and Geoscience Australia</title>
<author>
<name>null_dev</name>
<uri>http://www.openstreetmap.org/user/null_dev</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T11:38:21Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T11:38:21Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/null_dev">null_dev</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Near Lake St Clair - presurvey - rivers and creeks from HiRes Bing and Geoscience Australia</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-42.11746946248517 146.10440699430805 -42.08835 146.1633797869796</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006581</id>
<published>2012-01-28T11:23:10Z</published>
<updated>2012-01-28T11:23:10Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006581" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006581" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006581/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006581 - Near Lake St Clair - presurvey - rivers and creeks from HiRes Bing and Geoscience Australia</title>
<author>
<name>null_dev</name>
<uri>http://www.openstreetmap.org/user/null_dev</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T11:23:10Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T11:23:10Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/null_dev">null_dev</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Near Lake St Clair - presurvey - rivers and creeks from HiRes Bing and Geoscience Australia</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-42.2999629 146.02353 -41.911697364893335 146.2696882</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006580</id>
<published>2012-01-28T11:21:45Z</published>
<updated>2012-01-28T11:21:45Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006580" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006580" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006580/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006580 - beautify lachlan river</title>
<author>
<name>drlizau</name>
<uri>http://www.openstreetmap.org/user/drlizau</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T11:21:45Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T11:21:45Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/drlizau">drlizau</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = beautify lachlan river</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-34.2776099 143.9887592 -34.2700453 144.0350672</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006579</id>
<published>2012-01-28T11:11:08Z</published>
<updated>2012-01-28T11:11:08Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006579" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006579" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006579/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006579 - beautify lachlan river</title>
<author>
<name>drlizau</name>
<uri>http://www.openstreetmap.org/user/drlizau</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T11:11:08Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T11:11:08Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/drlizau">drlizau</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = beautify lachlan river</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-33.35431865905853 145.7929505 -33.32606629921425 145.8748007</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006578</id>
<published>2012-01-28T11:02:50Z</published>
<updated>2012-01-28T11:02:50Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006578" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006578" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006578/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006578 - beautify lachlan river</title>
<author>
<name>drlizau</name>
<uri>http://www.openstreetmap.org/user/drlizau</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T11:02:50Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T11:02:50Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/drlizau">drlizau</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = beautify lachlan river</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-33.3966597 145.5795712 -33.3303693 145.8748007</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006577</id>
<published>2012-01-28T10:47:55Z</published>
<updated>2012-01-28T10:47:55Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006577" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006577" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006577/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006577 - Remove incorrect roundabout names</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T10:47:55Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T10:47:55Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-36.783468763129086 144.2738274 -36.7692924 144.290631</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006576</id>
<published>2012-01-28T10:35:59Z</published>
<updated>2012-01-28T10:35:59Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006576" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006576" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006576/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006576 - Remove incorrect roundabout names</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T10:35:59Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T10:35:59Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-32.07845922544139 115.9180151 -32.0640052 115.93072985180189</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006575</id>
<published>2012-01-28T10:24:17Z</published>
<updated>2012-01-28T10:24:17Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006575" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006575" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006575/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006575 - Remove incorrect roundabout names</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T10:24:17Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T10:24:17Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-27.4565895 153.0699883 -27.4361166 153.1088189</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006574</id>
<published>2012-01-28T10:12:19Z</published>
<updated>2012-01-28T10:12:19Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006574" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006574" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006574/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006574 - Remove incorrect roundabout names</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T10:12:19Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T10:12:19Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-31.9325114 115.76614427438903 -31.9115287 115.7959243</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006573</id>
<published>2012-01-28T09:50:28Z</published>
<updated>2012-01-28T09:50:28Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006573" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006573" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006573/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006573 - Remove incorrect roundabout names</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T09:50:28Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T09:50:28Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-27.3336801 153.0477256 -27.1912732 153.1184897</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006572</id>
<published>2012-01-28T09:23:20Z</published>
<updated>2012-01-28T09:23:20Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006572" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006572" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006572/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006572 - Remove incorrect roundabout names</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T09:23:20Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T09:23:20Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-31.0994446 150.8990278 -31.07856401280175 150.92797591605014</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006571</id>
<published>2012-01-28T07:06:56Z</published>
<updated>2012-01-28T07:06:56Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006571" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006571" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006571/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006571 - Picaville</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T07:06:56Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T07:06:56Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Picaville</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.35565436478922 -1.3741225261242198 49.3678766 -1.3667628683526616</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006570</id>
<published>2012-01-28T07:05:26Z</published>
<updated>2012-01-28T07:05:26Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006570" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006570" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006570/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006570 - test of fosm</title>
<author>
<name>h4ck3rm1k3</name>
<uri>http://www.openstreetmap.org/user/h4ck3rm1k3</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-28T07:05:26Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-28T07:05:26Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/h4ck3rm1k3">h4ck3rm1k3</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = test of fosm</tr>
<tr><td/>created_by = JOSM/1.5 (4597 en)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>42.2132816 20.7341922 42.2132816 20.7341922</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006569</id>
<published>2012-01-27T21:48:43Z</published>
<updated>2012-01-27T21:48:43Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006569" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006569" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006569/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006569 - Picaville</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T21:48:43Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T21:48:43Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Picaville</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.392524131504814 -1.3777452370258971 49.394313145560226 -1.3730681116324743</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006568</id>
<published>2012-01-27T21:28:13Z</published>
<updated>2012-01-27T21:28:13Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006568" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006568" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006568/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006568 - Picaville</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T21:28:13Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T21:28:13Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Picaville</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.3589536 -1.366119970427845 49.40439828019416 -1.348048</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006567</id>
<published>2012-01-27T21:23:33Z</published>
<updated>2012-01-27T21:23:33Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006567" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006567" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006567/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006567 - Picaville</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T21:23:33Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T21:23:33Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Picaville</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.37237003980966 -1.3805329975718952 49.40439828019416 -1.3518185225177457</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006566</id>
<published>2012-01-27T20:28:46Z</published>
<updated>2012-01-27T20:28:46Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006566" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006566" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006566/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006566 - Update Strood</title>
<author>
<name>netman55</name>
<uri>http://www.openstreetmap.org/user/netman55</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T20:28:46Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T20:28:46Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/netman55">netman55</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Update Strood</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.40092857490801 0.4882974 51.4035498 0.4959817214361232</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006565</id>
<published>2012-01-27T20:24:33Z</published>
<updated>2012-01-27T20:24:33Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006565" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006565" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006565/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006565 - Update Strood</title>
<author>
<name>netman55</name>
<uri>http://www.openstreetmap.org/user/netman55</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T20:24:33Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T20:24:33Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/netman55">netman55</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Update Strood</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.39934602537413 0.4968615942036462 51.399527202616866 0.49718192535940464</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006564</id>
<published>2012-01-27T20:22:32Z</published>
<updated>2012-01-27T20:22:32Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006564" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006564" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006564/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006564 - Update Strood</title>
<author>
<name>netman55</name>
<uri>http://www.openstreetmap.org/user/netman55</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T20:22:32Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T20:22:32Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/netman55">netman55</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Update Strood</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.3977031 0.4882974 51.4027678 0.49750343618996856</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006563</id>
<published>2012-01-27T20:03:59Z</published>
<updated>2012-01-27T20:03:59Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006563" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006563" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006563/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006563 - Update Strood</title>
<author>
<name>netman55</name>
<uri>http://www.openstreetmap.org/user/netman55</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T20:03:59Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T20:03:59Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/netman55">netman55</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Update Strood</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.3982986 0.4914371 51.402908 0.4978573</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006562</id>
<published>2012-01-27T19:43:52Z</published>
<updated>2012-01-27T19:43:52Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006562" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006562" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006562/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006562 - Update Strood - Yoke Close</title>
<author>
<name>netman55</name>
<uri>http://www.openstreetmap.org/user/netman55</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T19:43:52Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T19:43:52Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/netman55">netman55</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Update Strood - Yoke Close</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.4000378 0.4921992 51.4010544 0.4986073</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006561</id>
<published>2012-01-27T19:33:16Z</published>
<updated>2012-01-27T19:33:16Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006561" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006561" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006561/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006561 - Update Strood - Yoke Close</title>
<author>
<name>netman55</name>
<uri>http://www.openstreetmap.org/user/netman55</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T19:33:16Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T19:33:16Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/netman55">netman55</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Update Strood - Yoke Close</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.400195674278436 0.4946905304670176 51.40054062152763 0.4950764135199558</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006560</id>
<published>2012-01-27T19:32:36Z</published>
<updated>2012-01-27T19:32:36Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006560" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006560" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006560/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006560 - Update Strood - Yoke Close</title>
<author>
<name>netman55</name>
<uri>http://www.openstreetmap.org/user/netman55</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T19:32:36Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T19:32:36Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/netman55">netman55</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Update Strood - Yoke Close</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.40019513074117 0.4946904245412844 51.40054157372862 0.4950763946100917</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006559</id>
<published>2012-01-27T19:30:21Z</published>
<updated>2012-01-27T19:30:21Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006559" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006559" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006559/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006559 - Update Strood - Yoke Close</title>
<author>
<name>netman55</name>
<uri>http://www.openstreetmap.org/user/netman55</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T19:30:21Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T19:30:21Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/netman55">netman55</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Update Strood - Yoke Close</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.3982986 0.4943304 51.402908 0.4959364</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006558</id>
<published>2012-01-27T17:42:57Z</published>
<updated>2012-01-27T17:42:57Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006558" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006558" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006558/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006558 - Picaville</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T17:42:57Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T17:42:57Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Picaville</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.38347639185135 -1.4018596090278557 49.38411722143922 -1.3993165911612737</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006557</id>
<published>2012-01-27T16:50:34Z</published>
<updated>2012-01-27T16:50:34Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006557" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006557" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006557/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006557 - Picaville</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T16:50:34Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T16:50:34Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Picaville</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.393299391456935 -1.4026668121184027 49.3952727252136 -1.4007078680327916</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006556</id>
<published>2012-01-27T16:47:30Z</published>
<updated>2012-01-27T16:47:30Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006556" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006556" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006556/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006556 - Picaville</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T16:47:30Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T16:47:30Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Picaville</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.3823731 -1.4197044661129972 49.4074594 -1.3259538</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006555</id>
<published>2012-01-27T16:42:35Z</published>
<updated>2012-01-27T16:42:35Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006555" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006555" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006555/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006555 - Picaville</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T16:42:35Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T16:42:35Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Picaville</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box> </georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006554</id>
<published>2012-01-27T16:41:35Z</published>
<updated>2012-01-27T16:41:35Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006554" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006554" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006554/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006554 - Picaville</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T16:41:35Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T16:41:35Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Picaville</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.3952727252136 -1.4044124708345598 49.40190331465422 -1.3758745</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006553</id>
<published>2012-01-27T16:10:28Z</published>
<updated>2012-01-27T16:10:28Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006553" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006553" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006553/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006553 - update from nearmap</title>
<author>
<name>tiger</name>
<uri>http://www.openstreetmap.org/user/tiger</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T16:10:28Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T16:10:28Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/tiger">tiger</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = update from nearmap</tr>
<tr><td/>created_by = JOSM/1.5 (4875 SVN de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-33.6643499 115.0035229 -33.5298223 115.0598093</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006552</id>
<published>2012-01-27T16:07:20Z</published>
<updated>2012-01-27T16:07:20Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006552" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006552" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006552/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006552 - update from nearmap</title>
<author>
<name>tiger</name>
<uri>http://www.openstreetmap.org/user/tiger</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T16:07:20Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T16:07:20Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/tiger">tiger</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = update from nearmap</tr>
<tr><td/>created_by = JOSM/1.5 (4875 SVN de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-33.7024277 115.0308925 -33.6725544 115.18961640428581</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006551</id>
<published>2012-01-27T16:01:25Z</published>
<updated>2012-01-27T16:01:25Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006551" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006551" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006551/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006551 - update from nearmap</title>
<author>
<name>tiger</name>
<uri>http://www.openstreetmap.org/user/tiger</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T16:01:25Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T16:01:25Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/tiger">tiger</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = update from nearmap</tr>
<tr><td/>created_by = JOSM/1.5 (4875 SVN de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-33.7024277 115.0308925 -33.63954145976269 115.1894849</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006550</id>
<published>2012-01-27T13:46:43Z</published>
<updated>2012-01-27T13:46:43Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006550" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006550" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006550/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006550 - update from nearmap</title>
<author>
<name>tiger</name>
<uri>http://www.openstreetmap.org/user/tiger</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T13:46:43Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T13:46:43Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/tiger">tiger</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = update from nearmap</tr>
<tr><td/>created_by = JOSM/1.5 (4875 SVN de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-31.7339252 115.7268161 -31.7279873 115.7315882</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006549</id>
<published>2012-01-27T13:45:27Z</published>
<updated>2012-01-27T13:45:27Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006549" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006549" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006549/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006549 - update from nearmap</title>
<author>
<name>tiger</name>
<uri>http://www.openstreetmap.org/user/tiger</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T13:45:27Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T13:45:27Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/tiger">tiger</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = update from nearmap</tr>
<tr><td/>created_by = JOSM/1.5 (4875 SVN de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-31.7990781 115.7162864 -31.69411459183431 115.7384991</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006548</id>
<published>2012-01-27T12:52:10Z</published>
<updated>2012-01-27T12:52:10Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006548" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006548" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006548/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006548 - Admiral Close, Weybridge</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T12:52:10Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T12:52:10Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Admiral Close, Weybridge</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.3719215 -0.4423038 51.3859459 -0.41752658211025695</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006547</id>
<published>2012-01-27T12:47:19Z</published>
<updated>2012-01-27T12:47:19Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006547" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006547" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006547/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006547 - Remove incorrect roundabout names</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T12:47:19Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T12:47:19Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-37.8771139 145.1926115 -37.7944472 145.3369032</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006546</id>
<published>2012-01-27T10:19:38Z</published>
<updated>2012-01-27T10:19:38Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006546" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006546" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006546/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006546 - Remove incorrect roundabout names</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T10:19:38Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T10:19:38Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-27.7093569 153.0105092 -27.6839833 153.0349044</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006545</id>
<published>2012-01-27T09:43:47Z</published>
<updated>2012-01-27T09:43:47Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006545" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006545" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006545/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006545 - update from nearmap</title>
<author>
<name>tiger</name>
<uri>http://www.openstreetmap.org/user/tiger</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T09:43:47Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T09:43:47Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/tiger">tiger</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = update from nearmap</tr>
<tr><td/>created_by = JOSM/1.5 (4875 SVN de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-31.6943697 115.7269489 -31.6901974 115.7303288</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006544</id>
<published>2012-01-27T09:42:47Z</published>
<updated>2012-01-27T09:42:47Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006544" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006544" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006544/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006544 - update from nearmap</title>
<author>
<name>tiger</name>
<uri>http://www.openstreetmap.org/user/tiger</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T09:42:47Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T09:42:47Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/tiger">tiger</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = update from nearmap</tr>
<tr><td/>created_by = JOSM/1.5 (4875 SVN de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-31.981977 115.4457088 -31.2843762 115.7553323</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006543</id>
<published>2012-01-27T09:23:24Z</published>
<updated>2012-01-27T09:23:24Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006543" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006543" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006543/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006543 - Remove incorrect roundabout names</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T09:23:24Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T09:23:24Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-34.4361728 150.8614481 -34.4065355 150.91027614718615</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006542</id>
<published>2012-01-27T09:04:19Z</published>
<updated>2012-01-27T09:04:19Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006542" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006542" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006542/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006542 - Remove incorrect roundabout names</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T09:04:19Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T09:04:19Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-27.6851304 152.982065 -27.648697 153.0074249</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006541</id>
<published>2012-01-27T09:00:40Z</published>
<updated>2012-01-27T09:00:40Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006541" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006541" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006541/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006541 - add tracks from nearmap</title>
<author>
<name>aharvey</name>
<uri>http://www.openstreetmap.org/user/aharvey</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T09:00:40Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T09:00:40Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/aharvey">aharvey</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = add tracks from nearmap</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-35.35480546152082 150.26155160069848 -35.29423798167075 150.33001385278865</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006540</id>
<published>2012-01-27T08:52:59Z</published>
<updated>2012-01-27T08:52:59Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006540" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006540" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006540/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006540 - little forest plateau nearmap trace</title>
<author>
<name>aharvey</name>
<uri>http://www.openstreetmap.org/user/aharvey</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T08:52:59Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T08:52:59Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/aharvey">aharvey</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = little forest plateau nearmap trace</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-35.3735507 150.2880429 -35.230676 150.35775827678594</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006539</id>
<published>2012-01-27T08:34:20Z</published>
<updated>2012-01-27T08:34:20Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006539" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006539" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006539/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006539 - porters creek dam</title>
<author>
<name>aharvey</name>
<uri>http://www.openstreetmap.org/user/aharvey</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T08:34:20Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T08:34:20Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/aharvey">aharvey</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = porters creek dam</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-35.2770840 150.2898581 -35.24996557018545 150.34248722291136</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006538</id>
<published>2012-01-27T08:32:28Z</published>
<updated>2012-01-27T08:32:28Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006538" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006538" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006538/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006538 - New additions updates Broome WA</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T08:32:28Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T08:32:28Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = New additions updates Broome WA</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-17.943835412376338 122.23332000266235 -17.94272099008477 122.23491171608788</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006537</id>
<published>2012-01-27T08:09:41Z</published>
<updated>2012-01-27T08:09:41Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006537" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006537" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006537/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006537 - Remove incorrect roundabout names</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T08:09:41Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T08:09:41Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-35.0886488 138.5269560 -35.0622003 138.5422444</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006536</id>
<published>2012-01-27T05:25:28Z</published>
<updated>2012-01-27T05:25:28Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006536" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006536" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006536/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006536 - River Street extended to absorb section of Pacific Highway released as side-effect of Ballina Bypass progress.</title>
<author>
<name>FOSMR</name>
<uri>http://www.openstreetmap.org/user/FOSMR</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T05:25:28Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T05:25:28Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/FOSMR">FOSMR</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = River Street extended to absorb section of Pacific Highway released as side-effect of Ballina Bypass progress.</tr>
<tr><td/>created_by = Potlatch 2</tr>
<tr><td/>version = (Foxbase) Alpha</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-33.7187164 151.1098835 -28.161041 153.5673915</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006535</id>
<published>2012-01-27T03:57:02Z</published>
<updated>2012-01-27T03:57:02Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006535" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006535" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006535/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006535 - Remove incorrect roundabout names</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T03:57:02Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T03:57:02Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-32.8889905 151.6213185 -32.8746116 151.652159</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006534</id>
<published>2012-01-27T03:40:20Z</published>
<updated>2012-01-27T03:40:20Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006534" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006534" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006534/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006534 - Remove incorrect roundabout names</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T03:40:20Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T03:40:20Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-27.3366961 152.9481275 -27.3285129 152.9607027</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006533</id>
<published>2012-01-27T02:13:11Z</published>
<updated>2012-01-27T02:13:11Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006533" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006533" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006533/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006533 - Remove incorrect roundabout names</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T02:13:11Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T02:13:11Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-31.8976140 115.9304876 -31.886104 115.9405863</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006532</id>
<published>2012-01-27T01:54:10Z</published>
<updated>2012-01-27T01:54:10Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006532" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006532" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006532/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006532 - Remove incorrect roundabout names</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T01:54:10Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T01:54:10Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-27.52164 152.9221213 -27.51628130929417 152.9255022</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006531</id>
<published>2012-01-27T00:57:59Z</published>
<updated>2012-01-27T00:57:59Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006531" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006531" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006531/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006531 - Remove incorrect roundabout names</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-27T00:57:59Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-27T00:57:59Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Remove incorrect roundabout names</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-27.516325473333204 152.9021053 -27.5005081 152.9313256</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006530</id>
<published>2012-01-26T21:39:51Z</published>
<updated>2012-01-26T21:39:51Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006530" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006530" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006530/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006530 - update from nearmap</title>
<author>
<name>tiger</name>
<uri>http://www.openstreetmap.org/user/tiger</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T21:39:51Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T21:39:51Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/tiger">tiger</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = update from nearmap</tr>
<tr><td/>created_by = JOSM/1.5 (4874 SVN de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-33.6877664 115.0339585 -33.6172849 115.11125664211585</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006529</id>
<published>2012-01-26T21:31:13Z</published>
<updated>2012-01-26T21:31:13Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006529" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006529" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006529/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006529 - update from nearmap</title>
<author>
<name>tiger</name>
<uri>http://www.openstreetmap.org/user/tiger</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T21:31:13Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T21:31:13Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/tiger">tiger</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = update from nearmap</tr>
<tr><td/>created_by = JOSM/1.5 (4874 SVN de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-33.65539419688212 115.09231570942401 -33.6319575 115.15736120983988</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006528</id>
<published>2012-01-26T21:26:24Z</published>
<updated>2012-01-26T21:26:24Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006528" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006528" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006528/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006528 - update from nearmap</title>
<author>
<name>tiger</name>
<uri>http://www.openstreetmap.org/user/tiger</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T21:26:24Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T21:26:24Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/tiger">tiger</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = update from nearmap</tr>
<tr><td/>created_by = JOSM/1.5 (4874 SVN de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-33.694775757226616 115.05836535402624 -33.617944 115.17876604490341</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006527</id>
<published>2012-01-26T21:19:39Z</published>
<updated>2012-01-26T21:19:39Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006527" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006527" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006527/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006527 - update from nearmap</title>
<author>
<name>tiger</name>
<uri>http://www.openstreetmap.org/user/tiger</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T21:19:39Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T21:19:39Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/tiger">tiger</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = update from nearmap</tr>
<tr><td/>created_by = JOSM/1.5 (4874 SVN de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-33.64956086939771 115.17920819781962 -33.6460154717732 115.19347880612925</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006526</id>
<published>2012-01-26T21:18:42Z</published>
<updated>2012-01-26T21:18:42Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006526" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006526" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006526/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006526 - update from nearmap</title>
<author>
<name>tiger</name>
<uri>http://www.openstreetmap.org/user/tiger</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T21:18:42Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T21:18:42Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/tiger">tiger</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = update from nearmap</tr>
<tr><td/>created_by = JOSM/1.5 (4874 SVN de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-33.7464818 115.1789 -32.0559036 115.7753118</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006525</id>
<published>2012-01-26T18:44:41Z</published>
<updated>2012-01-26T18:44:41Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006525" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006525" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006525/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006525 - Picauville</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T18:44:41Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T18:44:41Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Picauville</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.3073124 -1.4621691456122063 49.4415762 -1.3795703</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006524</id>
<published>2012-01-26T18:25:36Z</published>
<updated>2012-01-26T18:25:36Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006524" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006524" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006524/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006524 - Picauville</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T18:25:36Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T18:25:36Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Picauville</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.37057706951376 -1.5207998006309886 49.4557183 -1.4158621377788552</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006523</id>
<published>2012-01-26T18:01:22Z</published>
<updated>2012-01-26T18:01:22Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006523" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006523" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006523/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006523 - Picauville</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T18:01:22Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T18:01:22Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Picauville</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.3073124 -1.5207998006309886 49.4415762 -1.3795703</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006522</id>
<published>2012-01-26T17:25:59Z</published>
<updated>2012-01-26T17:25:59Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006522" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006522" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006522/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006522 - Picauville</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T17:25:59Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T17:25:59Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Picauville</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.369554 -1.5207998006309886 49.4557183 -1.3795703</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006521</id>
<published>2012-01-26T13:42:30Z</published>
<updated>2012-01-26T13:42:30Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006521" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006521" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006521/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006521 - Saint Sauveur le Vicomte</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T13:42:30Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T13:42:30Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Saint Sauveur le Vicomte</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.37413746020007 -1.5212395683637716 49.5011315 -1.4368764</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006520</id>
<published>2012-01-26T13:09:17Z</published>
<updated>2012-01-26T13:09:17Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006520" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006520" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006520/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006520 - New additions updates Mackay Qld</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T13:09:17Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T13:09:17Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = New additions updates Mackay Qld</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-21.133361655158772 149.18933365726005 -21.133361655158772 149.18933365726005</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006519</id>
<published>2012-01-26T13:08:07Z</published>
<updated>2012-01-26T13:08:07Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006519" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006519" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006519/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006519 - Saint Sauveur le Vicomte</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T13:08:07Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T13:08:07Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Saint Sauveur le Vicomte</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.3062191 -1.6531731 49.4677725 -1.4368764</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006518</id>
<published>2012-01-26T13:08:05Z</published>
<updated>2012-01-26T13:08:05Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006518" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006518" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006518/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006518 - New additions updates Mackay Qld</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T13:08:05Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T13:08:05Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = New additions updates Mackay Qld</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-21.1490213 149.1746864 -21.1330303 149.18936098283385</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006517</id>
<published>2012-01-26T12:40:39Z</published>
<updated>2012-01-26T12:40:39Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006517" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006517" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006517/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006517 - New additions updates Alice Springs NT</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T12:40:39Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T12:40:39Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = New additions updates Alice Springs NT</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-23.70975471988707 133.87782537189202 -23.697181253701828 133.8870998197974</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006516</id>
<published>2012-01-26T12:36:44Z</published>
<updated>2012-01-26T12:36:44Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006516" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006516" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006516/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006516 - Saint Sauveur le Vicomte</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T12:36:44Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T12:36:44Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Saint Sauveur le Vicomte</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.3415129 -1.6531731 49.38848229076911 -1.5216914657095888</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006515</id>
<published>2012-01-26T12:11:35Z</published>
<updated>2012-01-26T12:11:35Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006515" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006515" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006515/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006515 - New additions updates Alice Springs NT</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T12:11:35Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T12:11:35Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = New additions updates Alice Springs NT</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-23.7078171080318 133.87652958849839 -23.70070179368909 133.88460021316885</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006514</id>
<published>2012-01-26T11:58:15Z</published>
<updated>2012-01-26T11:58:15Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006514" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006514" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006514/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006514 - Saint Sauveur le Vicomte</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T11:58:15Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T11:58:15Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Saint Sauveur le Vicomte</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.3062191 -1.5412725 49.5011315 -1.4368764</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006513</id>
<published>2012-01-26T11:45:12Z</published>
<updated>2012-01-26T11:45:12Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006513" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006513" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006513/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006513 - New additions updates Alice Springs NT</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T11:45:12Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T11:45:12Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = New additions updates Alice Springs NT</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-34.9152161 130.8341461 -12.4250746 138.6423858</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006512</id>
<published>2012-01-26T11:29:58Z</published>
<updated>2012-01-26T11:29:58Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006512" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006512" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006512/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006512 - Saint Sauveur le Vicomte</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T11:29:58Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T11:29:58Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Saint Sauveur le Vicomte</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box> </georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006511</id>
<published>2012-01-26T11:21:14Z</published>
<updated>2012-01-26T11:21:14Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006511" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006511" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006511/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006511 - New additions updates Alice Springs NT</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T11:21:14Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T11:21:14Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = New additions updates Alice Springs NT</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-23.721960493369792 133.8644423 -23.6718338 133.87970055230005</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006510</id>
<published>2012-01-26T11:21:02Z</published>
<updated>2012-01-26T11:21:02Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006510" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006510" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006510/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006510 - Saint Sauveur le Vicomte</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T11:21:02Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T11:21:02Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Saint Sauveur le Vicomte</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.3681367 -1.6362419 49.4677725 -1.5169018721871985</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006509</id>
<published>2012-01-26T10:59:01Z</published>
<updated>2012-01-26T10:59:01Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006509" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006509" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006509/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006509 - Saint Sauveur le Vicomte</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T10:59:01Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T10:59:01Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Saint Sauveur le Vicomte</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.3415129 -1.6531731 49.4677725 -1.5173305</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006508</id>
<published>2012-01-26T10:32:39Z</published>
<updated>2012-01-26T10:32:39Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006508" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006508" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006508/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006508 - Pre survey tag fixes.</title>
<author>
<name>null_dev</name>
<uri>http://www.openstreetmap.org/user/null_dev</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T10:32:39Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T10:32:39Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/null_dev">null_dev</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Pre survey tag fixes.</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-42.012572 145.9443481 -41.6536251 146.1016679</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006507</id>
<published>2012-01-26T10:31:06Z</published>
<updated>2012-01-26T10:31:06Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006507" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006507" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006507/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006507 - Pre survey tag fixes. Improved Lake Clair res using Bing</title>
<author>
<name>null_dev</name>
<uri>http://www.openstreetmap.org/user/null_dev</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T10:31:06Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T10:31:06Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/null_dev">null_dev</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Pre survey tag fixes. Improved Lake Clair res using Bing</tr>
<tr><td/>created_by = JOSM/1.5 (4667 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-42.1175029 145.93818111046693 -41.6536251 146.2195631</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006506</id>
<published>2012-01-26T05:10:39Z</published>
<updated>2012-01-26T05:10:39Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006506" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006506" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006506/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006506 - New additions updates Broome WA</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T05:10:39Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T05:10:39Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = New additions updates Broome WA</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-17.934164248421073 122.21866666604764 -17.93027619960209 122.22170163059057</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006505</id>
<published>2012-01-26T05:06:57Z</published>
<updated>2012-01-26T05:06:57Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006505" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006505" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006505/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006505 - New additions updates Broome WA</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T05:06:57Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T05:06:57Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = New additions updates Broome WA</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-17.930465462214208 122.21348056035524 -17.923419313523503 122.21878729945207</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006504</id>
<published>2012-01-26T04:42:31Z</published>
<updated>2012-01-26T04:42:31Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006504" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006504" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006504/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006504 - New additions updates Broome WA</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T04:42:31Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T04:42:31Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = New additions updates Broome WA</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-17.935932555549773 122.21083755636495 -17.898707600000037 122.22553706008613</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006503</id>
<published>2012-01-26T04:07:12Z</published>
<updated>2012-01-26T04:07:12Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006503" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006503" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006503/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006503 - New additions updates Broome WA</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T04:07:12Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T04:07:12Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = New additions updates Broome WA</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-17.94180321645717 122.23397286171787 -17.939973744188382 122.23496685988866</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006502</id>
<published>2012-01-26T00:21:53Z</published>
<updated>2012-01-26T00:21:53Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006502" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006502" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006502/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006502 - New additions updates Broome WA</title>
<author>
<name>Rosscoe</name>
<uri>http://www.openstreetmap.org/user/Rosscoe</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-26T00:21:53Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-26T00:21:53Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/Rosscoe">Rosscoe</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = New additions updates Broome WA</tr>
<tr><td/>created_by = JOSM/1.5 (4777 en_AU)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>-17.935932555549773 122.21377747655005 -17.928459873833546 122.22540127559034</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006501</id>
<published>2012-01-25T22:13:50Z</published>
<updated>2012-01-25T22:13:50Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006501" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006501" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006501/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006501 - France</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-25T22:13:50Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-25T22:13:50Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = France</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>49.3850150 -1.6362419 49.4677725 -1.5277609</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006500</id>
<published>2012-01-25T22:01:04Z</published>
<updated>2012-01-25T22:01:04Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006500" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006500" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006500/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006500 - Hambledon</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-25T22:01:04Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-25T22:01:04Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Hambledon</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.1382381 -0.6277916 51.156975169326024 -0.6129095</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006499</id>
<published>2012-01-25T21:46:20Z</published>
<updated>2012-01-25T21:46:20Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006499" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006499" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006499/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006499 - Godalming</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-25T21:46:20Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-25T21:46:20Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Godalming</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.1382381 -0.6244343 51.17444192899262 -0.5888111</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006498</id>
<published>2012-01-25T21:27:31Z</published>
<updated>2012-01-25T21:27:31Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006498" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006498" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006498/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006498 - B2130</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-25T21:27:31Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-25T21:27:31Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = B2130</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.1777123451545 -0.6168004 51.1866292 -0.6022806361124797</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006497</id>
<published>2012-01-25T21:05:42Z</published>
<updated>2012-01-25T21:05:42Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006497" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006497" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006497/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006497 - B2130</title>
<author>
<name>80n</name>
<uri>http://www.openstreetmap.org/user/80n</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-25T21:05:42Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-25T21:05:42Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/80n">80n</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = B2130</tr>
<tr><td/>created_by = JOSM/1.5 (4279 en_GB)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>51.15558455467143 -0.6172864 51.1819489 -0.5754373258122102</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006496</id>
<published>2012-01-25T20:38:48Z</published>
<updated>2012-01-25T20:38:48Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006496" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006496" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006496/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006496 - Plöckenpass Angerbach</title>
<author>
<name>railsnail</name>
<uri>http://www.openstreetmap.org/user/railsnail</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-25T20:38:48Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-25T20:38:48Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/railsnail">railsnail</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Plöckenpass Angerbach</tr>
<tr><td/>created_by = JOSM/1.5 (4729 de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>46.60740747950319 12.96396473758068 46.6141938 12.9963757</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006495</id>
<published>2012-01-25T20:36:54Z</published>
<updated>2012-01-25T20:36:54Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006495" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006495" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006495/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006495 - Plöckenpass Angerbach</title>
<author>
<name>railsnail</name>
<uri>http://www.openstreetmap.org/user/railsnail</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-25T20:36:54Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-25T20:36:54Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/railsnail">railsnail</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Plöckenpass Angerbach</tr>
<tr><td/>created_by = JOSM/1.5 (4729 de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>46.605150385790594 12.962462930138951 46.6138910571203 13.01644616266897</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006494</id>
<published>2012-01-25T20:35:46Z</published>
<updated>2012-01-25T20:35:46Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006494" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006494" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006494/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006494 - Plöckenpass Angerbach</title>
<author>
<name>railsnail</name>
<uri>http://www.openstreetmap.org/user/railsnail</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-25T20:35:46Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-25T20:35:46Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/railsnail">railsnail</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Plöckenpass Angerbach</tr>
<tr><td/>created_by = JOSM/1.5 (4729 de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>46.605150385790594 12.962462930138951 46.6138910571203 13.01644616266897</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006493</id>
<published>2012-01-25T20:34:23Z</published>
<updated>2012-01-25T20:34:23Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006493" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006493" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006493/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006493 - Plöckenpass Angerbach</title>
<author>
<name>railsnail</name>
<uri>http://www.openstreetmap.org/user/railsnail</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-25T20:34:23Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-25T20:34:23Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/railsnail">railsnail</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Plöckenpass Angerbach</tr>
<tr><td/>created_by = JOSM/1.5 (4729 de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>46.60838644186935 12.98729761025363 46.61021719797518 12.987643384211065</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006492</id>
<published>2012-01-25T20:31:47Z</published>
<updated>2012-01-25T20:31:47Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006492" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006492" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006492/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006492 - Plöckenpass Angerbach</title>
<author>
<name>railsnail</name>
<uri>http://www.openstreetmap.org/user/railsnail</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-25T20:31:47Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-25T20:31:47Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/railsnail">railsnail</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Plöckenpass Angerbach</tr>
<tr><td/>created_by = JOSM/1.5 (4729 de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>46.60769181230764 12.982977112265518 46.6089083079596 12.9838415471591</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006491</id>
<published>2012-01-25T20:29:07Z</published>
<updated>2012-01-25T20:29:07Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006491" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006491" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006491/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006491 - Plöckenpass Angerbach</title>
<author>
<name>railsnail</name>
<uri>http://www.openstreetmap.org/user/railsnail</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-25T20:29:07Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-25T20:29:07Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/railsnail">railsnail</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Plöckenpass Angerbach</tr>
<tr><td/>created_by = JOSM/1.5 (4729 de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>46.60740747950319 12.96396473758068 46.6141938 12.9963757</georss:box>
</entry>
<entry>
<id>http://api.fosm.org/api/0.6/changeset/1000006490</id>
<published>2012-01-25T20:25:52Z</published>
<updated>2012-01-25T20:25:52Z</updated>
<link type="text/html" href="http://173.230.151.169/fosmhv/changeset.jsp?id=1000006490" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006490" type="application/osm+xml" rel="alternate"/>
<link href="http://api.fosm.org/api/0.6/changeset/1000006490/download" type="application/osmChange+xml" rel="alternate"/>
<title type="html">Changeset 1000006490 - Plöckenpass Angerbach</title>
<author>
<name>railsnail</name>
<uri>http://www.openstreetmap.org/user/railsnail</uri>
</author>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>th { text-align: left } tr { vertical-align: top }</style>
<table>
<tr>
<th>Created at:</th>
<td>2012-01-25T20:25:52Z</td>
</tr>
<tr>
<th>Closed at:</th>
<td>2012-01-25T20:25:52Z</td>
</tr>
<tr>
<th>Belongs to:</th>
<td>
<a href="http://www.openstreetmap.org/user/railsnail">railsnail</a>
</td>
</tr>
<tr>
<th>Tags:</th>
<td>
<table cellpadding="0">
<tr><td/>comment = Plöckenpass Angerbach</tr>
<tr><td/>created_by = JOSM/1.5 (4729 de)</tr>
</table>
</td>
</tr>
</table>
</div>
</content>
<georss:box>46.6088635 12.9944137 46.6093807 12.9974181</georss:box>
</entry>
</feed>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment