Routino SVN Repository Browser

Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino

ViewVC logotype

Annotation of /trunk/extras/find-fixme/fixme.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1367 - (hide annotations) (download) (as text)
Sat Jun 1 18:56:25 2013 UTC (11 years, 9 months ago) by amb
File MIME type: application/xml
File size: 1451 byte(s)
A tool to search an OSM file for "fixme" tags to create a database and display
them on an interactive map.

1 amb 1367 <?xml version="1.0" encoding="UTF-8" ?>
2    
3     <!-- ============================================================
4     An XML format file containing Routino tagging rules - copy the input file
5     directly to the output with no modifications.
6    
7     Part of the Routino routing software.
8     ============================================================
9     This file Copyright 2010-2013 Andrew M. Bishop
10    
11     This program is free software: you can redistribute it and/or modify
12     it under the terms of the GNU Affero General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
15     ============================================================ -->
16    
17     <routino-tagging xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18     xsi:noNamespaceSchemaLocation="http://www.routino.org/xml/routino-tagging.xsd">
19    
20     <!-- - - - - - - - - - - Node rules - - - - - - - - - - -->
21    
22     <node>
23    
24     <!-- Copy everything from input to output -->
25    
26     <if>
27     <output />
28     </if>
29    
30     </node>
31    
32     <!-- - - - - - - - - - - Way rules - - - - - - - - - - -->
33    
34     <way>
35    
36     <!-- Copy everything from input to output -->
37    
38     <if>
39     <output />
40     </if>
41    
42     </way>
43    
44     <!-- - - - - - - - - - - Relation rules - - - - - - - - - - -->
45    
46     <relation>
47    
48     <!-- Copy everything from input to output -->
49    
50     <if>
51     <output />
52     </if>
53    
54     </relation>
55    
56     </routino-tagging>