]> git.openstreetmap.org Git - rails.git/blob - test/fixtures/current_nodes.yml
Fixing the resync that I had done wrong at the end of last week on the nodes. All...
[rails.git] / test / fixtures / current_nodes.yml
1 # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2 <% SCALE = 10000000 unless defined?(SCALE) %>
3 visible_node:
4   id: 1
5   latitude: <%= 1*SCALE %>
6   longitude: <%= 1*SCALE %>
7   user_id: 1
8   visible: 1
9   timestamp: 2007-01-01 00:00:00
10
11 invisible_node:
12   id: 2
13   latitude: <%= 2*SCALE %>
14   longitude: <%= 2*SCALE %>
15   user_id: 1
16   visible: 0
17   timestamp: 2007-01-01 00:00:00
18
19 used_node_1:
20   id: 3
21   latitude: <%= 3*SCALE %>
22   longitude: <%= 3*SCALE %>
23   user_id: 1
24   visible: 1
25   timestamp: 2007-01-01 00:00:00
26
27 used_node_2:
28   id: 4
29   latitude: <%= 4*SCALE %>
30   longitude: <%= 4*SCALE %>
31   user_id: 1
32   visible: 1
33   timestamp: 2007-01-01 00:00:00
34
35 node_used_by_relationship:
36   id: 5
37   latitude: <%= 5*SCALE %>
38   longitude: <%= 5*SCALE %>
39   user_id: 1
40   visible: 1
41   timestamp: 2007-01-01 00:00:00
42   
43 node_too_far_north:
44   id: 6
45   latitude: <%= 91*SCALE %>
46   longitude: <%= 6*SCALE %>
47   user_id: 1
48   timestamp: 2007-01-01 00:00:00
49   
50 node_too_far_south:
51   id: 7
52   latitude: <%= -91*SCALE %>
53   longitude: <%= 7*SCALE %>
54   user_id: 1
55   timestamp: 2007-01-01 00:00:00
56   
57 node_too_far_west:
58   id: 8
59   latitude: <%= 8*SCALE %>
60   longitude: <%= -181*SCALE %>
61   user_id: 1
62   timestamp: 2007-01-01 00:00:00
63   
64 node_too_far_east:
65   id: 9
66   latitude: <%= 9*SCALE %>
67   longitude: <%= 181*SCALE %>
68   user_id: 1
69   timestamp: 2007-01-01 00:00:00
70   
71 node_totally_wrong:
72   id: 10
73   latitude: <%= 1000*SCALE %>
74   longitude: <%= 1000*SCALE %>
75   user_id: 1
76   timestamp: 2007-01-01 00:00:00
77