-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpreferences.xml
584 lines (584 loc) · 54.2 KB
/
preferences.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
<?xml version="1.0" encoding="UTF-8"?>
<preferences xmlns='http://josm.openstreetmap.de/preferences-1.0' version='19277'>
<tag key='cache.bing.attribution.xml' value='1740482209'/>
<tag key='cache.capabilities1637351842' value='1739984883'/>
<tag key='cache.motd.html' value='1740485098'/>
<tag key='cache.motd.html.java' value='21.0.6'/>
<tag key='cache.motd.html.lang' value='En:'/>
<tag key='cache.motd.html.version' value='19277'/>
<tag key='changesetdialog.lastHeight' value='0'/>
<list key='clr.general.inactive'>
<entry value='#00FF00'/>
<entry value='general'/>
<entry value=''/>
<entry value='inactive'/>
</list>
<tag key='commandstack.lastHeight' value='0'/>
<tag key='conflict.lastHeight' value='0'/>
<tag key='download.autorun' value='true'/>
<tag key='download.overpass.for-multi-fetch' value='true'/>
<maps key='download.overpass.queries'>
<map>
<tag key='query' value='[out:json][timeout:400];

// ===============================================================
// Grid Mapping Starter Kit 
// 
// Cover a country, state or province you want to map 
// with the Slippy Map bounding box to select the area you want to download. 
// 
// ===============================================================
// Depending on the area you want to map, you need to switch 
// between country (admin_level=2), state (admin_level=3), 
// or province (admin_level=5) level. 
// ===============================================================
// Please note that the minimum voltage level in this script 
// is set to 90 kV by default, as these scripts are optimized 
// for transmission grid mapping. 
// Add poles and lower the voltage to map the distribution grid. 
// ===============================================================

// Select country or state/province nodes inside the bounding box
node["place"~"country|state|province"]({{bbox}}) -> .places;

 // ================================
 // You can set the admin_level 
 // in the following code. 
 // ================================

// Find administrative boundaries that match the selected admin level
relation["boundary"="administrative"]["admin_level"="2"](bn.places) -> .admin_boundary;

 // =========================================================
 // If you want load data based on country, state, or 
 // province names, please comment out the code in 
 // the following lines. 
 // =========================================================

// relation["boundary"="administrative"]["name"~"Kenya|Uganda"] -> .admin_boundary;
// relation["boundary"="administrative"]["name"~"Colombia"] -> .admin_boundary;

// Map the relation to an area
.admin_boundary map_to_area -> .searchArea;

// ================================
// Get transmission grid relevant data
// ================================

// Map the relation to an area
.admin_boundary map_to_area -> .searchArea;


// Find all power towers within the administrative boundary
node["power"="tower"](area.searchArea) -> .towers;

// Find all power poles within the administrative boundary
node["power"="pole"](area.searchArea) -> .poles;

// Find all power lines that are connected to towers within the administrative boundary
way["power"="line"](area.searchArea)
 (bn.towers) -> .lines_connected;

// Find all high-voltage power lines (>= 90 kV) within the administrative boundary
way["power"="line"]["voltage"](if:t["voltage"] >= 90000)(area.searchArea) -> .high_voltage_lines;

// Find only poles that are part of high-voltage lines within the administrative boundary
node.poles(w.high_voltage_lines) -> .hv_poles;

// Include substations within the administrative boundary
node["power"="substation"](area.searchArea) -> .substation_nodes;
way["power"="substation"](area.searchArea) -> .substation_ways;
relation["power"="substation"](area.searchArea) -> .substation_relations;

// Include power plants within the administrative boundary
node["power"="plant"](area.searchArea) -> .plant_nodes;
way["power"="plant"](area.searchArea) -> .plant_ways;
relation["power"="plant"](area.searchArea) -> .plant_relations;

// Include generators within the administrative boundary
node["power"="generator"](area.searchArea) -> .generator_nodes;
way["power"="generator"](area.searchArea) -> .generator_ways;
relation["power"="generator"](area.searchArea) -> .generator_relations;

// Include generators within the administrative boundary
node["power"="transformer"](area.searchArea) -> .transformer_nodes;
way["power"="transformer"](area.searchArea) -> .transformer_ways;
relation["power"="transformer"](area.searchArea) -> .transformer_relations;

// Include portals within the administrative boundary
node["power"="portal"](area.searchArea) -> .portal_nodes;

// Combine all relevant results
(
 .towers;
 // poles
 .hv_poles; // Only HV poles
 .lines_connected;
 .high_voltage_lines;
 .substation_nodes;
 .substation_ways;
 .substation_relations;
 .plant_nodes;
 .plant_ways;
 .plant_relations;
 .generator_nodes;
 .generator_ways;
 .generator_relations;
 .portal_nodes;
 .transformer_nodes;
 .transformer_ways;
 .transformer_relations;
 .admin_boundary;
);

out body;
>;
out skel qt;'/>
<tag key='lastEdit' value='10:33:36, 24-02-2025'/>
<tag key='key' value='history 10:33:36, 24-02-2025'/>
</map>
</maps>
<tag key='download.overpass.query' value='[out:json][timeout:400];

// ===============================================================
// Grid Mapping Starter Kit 
// 
// Cover a country, state or province you want to map 
// with the Slippy Map bounding box to select the area you want to download. 
// 
// ===============================================================
// Depending on the area you want to map, you need to switch 
// between country (admin_level=2), state (admin_level=3), 
// or province (admin_level=5) level. 
// ===============================================================
// Please note that the minimum voltage level in this script 
// is set to 90 kV by default, as these scripts are optimized 
// for transmission grid mapping. 
// Add poles and lower the voltage to map the distribution grid. 
// ===============================================================

// Select country or state/province nodes inside the bounding box
node["place"~"country|state|province"]({{bbox}}) -> .places;

 // ================================
 // You can set the admin_level 
 // in the following code. 
 // ================================

// Find administrative boundaries that match the selected admin level
relation["boundary"="administrative"]["admin_level"="2"](bn.places) -> .admin_boundary;

 // =========================================================
 // If you want load data based on country, state, or 
 // province names, please comment out the code in 
 // the following lines. 
 // =========================================================

// relation["boundary"="administrative"]["name"~"Kenya|Uganda"] -> .admin_boundary;
// relation["boundary"="administrative"]["name"~"Colombia"] -> .admin_boundary;

// Map the relation to an area
.admin_boundary map_to_area -> .searchArea;

// ================================
// Get transmission grid relevant data
// ================================

// Map the relation to an area
.admin_boundary map_to_area -> .searchArea;


// Find all power towers within the administrative boundary
node["power"="tower"](area.searchArea) -> .towers;

// Find all power poles within the administrative boundary
node["power"="pole"](area.searchArea) -> .poles;

// Find all power lines that are connected to towers within the administrative boundary
way["power"="line"](area.searchArea)
 (bn.towers) -> .lines_connected;

// Find all high-voltage power lines (>= 90 kV) within the administrative boundary
way["power"="line"]["voltage"](if:t["voltage"] >= 90000)(area.searchArea) -> .high_voltage_lines;

// Find only poles that are part of high-voltage lines within the administrative boundary
node.poles(w.high_voltage_lines) -> .hv_poles;

// Include substations within the administrative boundary
node["power"="substation"](area.searchArea) -> .substation_nodes;
way["power"="substation"](area.searchArea) -> .substation_ways;
relation["power"="substation"](area.searchArea) -> .substation_relations;

// Include power plants within the administrative boundary
node["power"="plant"](area.searchArea) -> .plant_nodes;
way["power"="plant"](area.searchArea) -> .plant_ways;
relation["power"="plant"](area.searchArea) -> .plant_relations;

// Include generators within the administrative boundary
node["power"="generator"](area.searchArea) -> .generator_nodes;
way["power"="generator"](area.searchArea) -> .generator_ways;
relation["power"="generator"](area.searchArea) -> .generator_relations;

// Include generators within the administrative boundary
node["power"="transformer"](area.searchArea) -> .transformer_nodes;
way["power"="transformer"](area.searchArea) -> .transformer_ways;
relation["power"="transformer"](area.searchArea) -> .transformer_relations;

// Include portals within the administrative boundary
node["power"="portal"](area.searchArea) -> .portal_nodes;

// Combine all relevant results
(
 .towers;
 // poles
 .hv_poles; // Only HV poles
 .lines_connected;
 .high_voltage_lines;
 .substation_nodes;
 .substation_ways;
 .substation_relations;
 .plant_nodes;
 .plant_ways;
 .plant_relations;
 .generator_nodes;
 .generator_ways;
 .generator_relations;
 .portal_nodes;
 .transformer_nodes;
 .transformer_ways;
 .transformer_relations;
 .admin_boundary;
);

out body;
>;
out skel qt;'/>
<tag key='download.overpass.query-list.opened' value='true'/>
<list key='download.places.history'>
<entry value='Kenya'/>
<entry value='China'/>
<entry value='Aachen'/>
</list>
<list key='download.sophox.servers'>
<entry value='https://sophox.org/bigdata/namespace/wdq/sparql'/>
<entry value='https://sophox.org/bigdata/namespace/wdq/sparql'/>
<entry value='https://sophox.org/bigdata/namespace/wdq/sparql'/>
</list>
<tag key='download.source.tab' value='overpassdownloadpanel'/>
<tag key='download.tabsplit.overpassdownloadpanel' value='281'/>
<tag key='draw.rawgps.colormode' value='0'/>
<tag key='draw.rawgps.lines' value='2'/>
<tag key='expert' value='true'/>
<list key='file-open.history'>
<entry value='/home/cy0/gitclones/OET/grid-mapping-starter-kit/josm-config/transmission_grid_mapping_template.joz'/>
<entry value='/home/cy0/gitclones/OET/grid-mapping-starter-kit/scripts/osmose_unfinished_power_lines.geojson'/>
<entry value='/home/cy0/Documents/grid_mapping/shapes/burundigrid.geojson'/>
<entry value='/home/cy0/gitclones/osmose_country/osmose_unfinished_power_lines.geojson'/>
<entry value='/home/cy0/Documents/grid_mapping/playground.joz'/>
<entry value='/home/cy0/gitclones/OET/sentisub/coordinates.geojson'/>
<entry value='/home/cy0/Documents/grid_mapping/shapes/US_Electric_Power_Transmission_Lines_-5565712113468837121.zip'/>
<entry value='/home/cy0/gitclones/OET/grid-mapping-starter-kit/josm-config/kenya_template.joz'/>
<entry value='/home/cy0/gitclones/OET/grid-mapping-starter-kit/josm-config/africa_template.osm'/>
<entry value='/home/cy0/Documents/grid_mapping/south_east_asia.joz'/>
<entry value='/home/cy0/Documents/grid_mapping/south_east_asia_v2.joz'/>
<entry value='/home/cy0/Documents/grid_mapping/shapes/primary_substations.geojson'/>
<entry value='/home/cy0/Documents/grid_mapping/central_africa_mapping.joz'/>
<entry value='/home/cy0/Documents/grid_mapping/OSM_grid_mapping_sessions/South_Vietname.joz'/>
<entry value='/home/cy0/Documents/issues.geojson'/>
</list>
<tag key='filter.lastHeight' value='0'/>
<maps key='filters.entries'>
<map>
<tag key='version' value='1'/>
<tag key='text' value='substation'/>
<tag key='mode' value='in_selection'/>
<tag key='enable' value='true'/>
<tag key='hiding' value='false'/>
<tag key='inverted' value='false'/>
</map>
</maps>
<tag key='geoimage.docked' value='false'/>
<tag key='geoimage.geometry' value='x=192,y=410,width=1285,height=755'/>
<tag key='geoimage.lastHeight' value='718'/>
<tag key='gui.geometry' value='x=-771,y=152,width=1440,height=879'/>
<tag key='gui.maximized' value='true'/>
<maps key='imagery.entries'>
<map>
<tag key='max-zoom' value='22'/>
<tag key='min-zoom' value='1'/>
<tag key='noTileHeaders' value='{"X-VE-Tile-Info":["no-tile"]}'/>
<tag key='noTileChecksums' value='{"MD5":["c13269481c73de6e18589f9fbc3bdf7e"]}'/>
<tag key='metadataHeaders' value='{"X-VE-TILEMETA-CaptureDatesRange":"Capture Date"}'/>
<tag key='transparent' value='true'/>
<tag key='minimumTileExpire' value='3600'/>
<tag key='name' value='Bing aerial imagery'/>
<tag key='id' value='Bing'/>
<tag key='type' value='bing'/>
<tag key='url' value='https://www.bing.com/maps/'/>
<tag key='permission-reference-url' value='https://wiki.openstreetmap.org/wiki/Bing_Maps'/>
<tag key='cookies' value=''/>
<tag key='icon' value='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAALVBMVEUMhIT///8jj4/Z7Ozl8vJUqal/vr6+3t6Tycmo1NQxl5dutbXz+flBn5/M5eX9gIKtAAAAjUlEQVR4XmMgD6gFoQkoC7eiCQgKK6AJiNBEQGkBmoBW5S40LROFZyugCMQICloEIQuoCwoKCicgCbAJCgoKGiEJMCWjCTAwpaAJsBaiCnC1CCILCCslCwoKijQgVKQLCgoKliLcAQbWCqgCFgin6wkKCgqevIDwHO8cQUHxAAYkwFoonMSAArS7GCgAAKZlGg8L4DPrAAAAAElFTkSuQmCC'/>
<tag key='customHttpHeaders' value='{}'/>
<tag key='category' value='photo'/>
</map>
<map>
<tag key='max-zoom' value='22'/>
<tag key='noTileHeaders' value='{"Etag":["\"10i954m13i2\""]}'/>
<tag key='noTileChecksums' value='{"MD5":["f27d9de7f80c13501f470595e327aa6d"]}'/>
<tag key='transparent' value='true'/>
<tag key='minimumTileExpire' value='3600'/>
<tag key='name' value='Esri World Imagery'/>
<tag key='id' value='EsriWorldImagery'/>
<tag key='type' value='tms'/>
<tag key='url' value='https://{switch:services,server}.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}'/>
<tag key='attribution-text' value='Terms & Feedback'/>
<tag key='attribution-url' value='https://wiki.openstreetmap.org/wiki/Esri'/>
<tag key='cookies' value=''/>
<tag key='icon' value='data:image/png;base64,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'/>
<tag key='customHttpHeaders' value='{}'/>
<tag key='category' value='photo'/>
</map>
<map>
<tag key='max-zoom' value='22'/>
<tag key='noTileHeaders' value='{"ETag":["\"336b022ed883bc72347a637634e490d4\"|\"067736a547cafe90014b4e59b6510abe\"|\"ee1f6802b0234046b553cbbc672ac7d9\"|\"9f5a2f1d7cc131e58befc2052c71c827\""]}'/>
<tag key='noTileChecksums' value='{"MD5":["58e78313d04adf0ea64b8de8590c3d46"]}'/>
<tag key='transparent' value='true'/>
<tag key='minimumTileExpire' value='3600'/>
<tag key='name' value='Mapbox Satellite'/>
<tag key='id' value='Mapbox'/>
<tag key='type' value='tms'/>
<tag key='url' value='https://{switch:a,b,c,d}.tiles.mapbox.com/v4/mapbox.satellite/{zoom}/{x}/{y}.jpg?access_token={apikey}'/>
<tag key='attribution-text' value='Terms & Feedback'/>
<tag key='attribution-url' value='https://www.mapbox.com/about/maps/'/>
<tag key='permission-reference-url' value='https://wiki.openstreetmap.org/wiki/Vertical_Aerial_Photographs#DigitalGlobe_.2F_MapBox'/>
<tag key='cookies' value=''/>
<tag key='icon' value='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAhFBMVEVHcEz///9CZPtphPtFZ/uMof1KavvO0uJifvtQcPuLn/1ng/ve4euQnv36+vtIaPtXdfvt7vTr7PG2v+jl5/BaePuhrv1devugrOC7wNdxi/uap96uuOXKzeDc3/O9xuqfrfzY2+ilsOLEy+xEZfuQntuwttG+w9mpsM2Zp/x3j/t0jfvA+Y0kAAAAAXRSTlMAQObYZgAAASRJREFUeF6Fk+eSwyAMhC2Be+9Ob9fv/d/viBQgDLnx98cedi2JNQTPhHkqZSrC4CVZjYYo8+SzRAdZunqCHsmznuILUk/3HX79fPmMN7vE7XK2n5yAuTVI8KRm/qYATSd4L7R/rddH0i4VObjGPY9IGxYgfvbchRNTBq2PFQkxzvzCk6r8teFKy+0WcSHHjlbDIEdGtne5pIbzXlk2tCxMSFtQ9DMSvxeAwyOsN2RK6lD1jfLGALpCbQwfwPQYtWBnkKZFDEw1TkDkjxYCGZNi39HjhIQw2xzAoXhUDk1QnaMfG2RUkrVuYakWXuSoMzsk015H1GT2d7/HxTAUh69J8Mbt7w6+8V9K58j5JGuHdv3Yr18cy7Ry9RRZ5F1ej1D41/8P1QwO53k2L5oAAAAASUVORK5CYII='/>
<tag key='customHttpHeaders' value='{"Referer":"https://josm.openstreetmap.de/"}'/>
<tag key='category' value='photo'/>
</map>
<map>
<tag key='max-zoom' value='19'/>
<tag key='valid-georeference' value='true'/>
<tag key='transparent' value='true'/>
<tag key='minimumTileExpire' value='3600'/>
<tag key='name' value='OpenStreetMap Carto (Standard)'/>
<tag key='id' value='standard'/>
<tag key='type' value='tms'/>
<tag key='url' value='https://tile.openstreetmap.org/{zoom}/{x}/{y}.png'/>
<tag key='attribution-text' value='© OpenStreetMap contributors'/>
<tag key='attribution-url' value='https://www.openstreetmap.org/'/>
<tag key='permission-reference-url' value='https://wiki.osmfoundation.org/wiki/Terms_of_Use'/>
<tag key='cookies' value=''/>
<tag key='icon' value='data:image/png;base64,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'/>
<tag key='customHttpHeaders' value='{}'/>
<tag key='category' value='osmbasedmap'/>
</map>
</maps>
<list key='imagery.layers.default'>
<entry value='Bing'/>
<entry value='EsriWorldImagery'/>
<entry value='EsriWorldImageryClarity'/>
<entry value='Mapbox'/>
<entry value='standard'/>
</list>
<maps key='imagery.offsetbookmarks'>
</maps>
<tag key='josm.version' value='19277'/>
<tag key='language' value='en'/>
<tag key='lastDirectory' value='/home/cy0/gitclones/OET/grid-mapping-starter-kit/josm-config'/>
<tag key='layerlist.lastHeight' value='205'/>
<tag key='mapillary-filter-expert.lastHeight' value='0'/>
<tag key='mapillary-filter.lastHeight' value='0'/>
<tag key='mapillary-info.lastHeight' value='0'/>
<tag key='mapillary-main.lastHeight' value='0'/>
<tag key='mappaint.renderer-class-name' value='org.openstreetmap.josm.data.osm.visitor.paint.StyledMapRenderer'/>
<maps key='mappaint.style.entries'>
<map>
<tag key='active' value='true'/>
<tag key='title' value='JOSM default (MapCSS)'/>
<tag key='ptoken' value='standard'/>
<tag key='url' value='resource://styles/standard/elemstyles.mapcss'/>
</map>
<map>
<tag key='active' value='true'/>
<tag key='title' value='transmission-grid-mapping-style'/>
<tag key='url' value='https://raw.githubusercontent.com/open-energy-transition/grid-mapping-starter-kit/refs/heads/main/josm-config/transmission_grid_mapping_style.mapcss'/>
</map>
</maps>
<list key='mappaint.style.known-defaults'>
<entry value='resource://styles/standard/elemstyles.mapcss'/>
</list>
<tag key='mapstyle.lastHeight' value='161'/>
<tag key='mapstyle.visible' value='true'/>
<tag key='message.imagery.nagPanel.https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/1.0.0/WMTSCapabilities.xml' value='false'/>
<tag key='message.imagery.nagPanel.https://tiles.maps.eox.at/?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=s2cloudless-2023_3857&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}' value='false'/>
<tag key='message.imagery.nagPanel.https://www.bing.com/maps/' value='false'/>
<tag key='minimap.lastHeight' value='0'/>
<list key='mirror./home/cy0/.cache/JOSM/images.https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png'>
<entry value='1736207905614'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___api.trafikinfo.trafikverket.se_img_apple-touch-icon-144-precomposed.png'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://avatars.githubusercontent.com/u/37575873?s_32&v_4'>
<entry value='1736207904751'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___avatars.githubusercontent.com_u_37575873_s_32_v_4'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/clock.svg?format_raw'>
<entry value='1736259277456'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_clock.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/activate.svg?format_raw'>
<entry value='1736259278494'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_activate.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/delete.svg?format_raw'>
<entry value='1736259279027'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_delete.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/down.svg?format_raw'>
<entry value='1736259278426'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_down.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/geoimage.svg?format_raw'>
<entry value='1736259277689'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_geoimage.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/layerlist.svg?format_raw'>
<entry value='1736259277312'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_layerlist.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/layerlist/active.svg?format_raw'>
<entry value='1736259278050'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_layerlist_active.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/layerlist/colorfulness.svg?format_raw'>
<entry value='1736259278716'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_layerlist_colorfulness.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/layerlist/eye.svg?format_raw'>
<entry value='1736259278286'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_layerlist_eye.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/layerlist/gamma.svg?format_raw'>
<entry value='1736259278780'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_layerlist_gamma.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/layerlist/offset.svg?format_raw'>
<entry value='1736259278220'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_layerlist_offset.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/layerlist/scale.svg?format_raw'>
<entry value='1736259278129'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_layerlist_scale.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/layerlist/sharpness.svg?format_raw'>
<entry value='1736259278871'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_layerlist_sharpness.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/layerlist/transparency.svg?format_raw'>
<entry value='1736259278652'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_layerlist_transparency.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/layerlist/visibility.svg?format_raw'>
<entry value='1736259278584'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_layerlist_visibility.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/notes/note_open.svg?format_raw'>
<entry value='1736259277979'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_notes_note_open.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/up.svg?format_raw'>
<entry value='1736259278360'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_up.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/dialogs/validator.svg?format_raw'>
<entry value='1736259277912'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_dialogs_validator.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/imagery_menu.svg?format_raw'>
<entry value='1736259277846'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_imagery_menu.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/layer/gpx_small.svg?format_raw'>
<entry value='1736259277539'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_layer_gpx_small.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/layer/marker_small.svg?format_raw'>
<entry value='1736259277613'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_layer_marker_small.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/layer/osmdata_small.svg?format_raw'>
<entry value='1736259277390'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_layer_osmdata_small.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/browser/trunk/resources/images/wikimedia_commons.svg?format_raw'>
<entry value='1736259277770'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_browser_trunk_resources_images_wikimedia_commons.svg_format_raw'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/raw-attachment/wiki/Maps/USA%20Country/TIGER2017RoadsOverlay.png'>
<entry value='1738189952497'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_raw-attachment_wiki_Maps_USA_20Country_TIGER2017RoadsOverlay.png'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://josm.openstreetmap.de/raw-attachment/wiki/Maps/Worldwide/eox.png'>
<entry value='1737988831654'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___josm.openstreetmap.de_raw-attachment_wiki_Maps_Worldwide_eox.png'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://kelkkareitit.fi/img/favicon.png'>
<entry value='1736207901553'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___kelkkareitit.fi_img_favicon.png'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png'>
<entry value='1736207901757'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___kommunikasjon.ntb.no_data_images_00525_e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png'>
<entry value='1738189952701'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___osmlab.github.io_editor-layer-index_sources_north-america_us_TIGER2017RoadsOverlay.png'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://upload.wikimedia.org/wikipedia/commons/thumb/0/02/Emblem_of_the_Norwegian_Directorate_of_Mining.svg/157px-Emblem_of_the_Norwegian_Directorate_of_Mining.svg.png'>
<entry value='1736207900687'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___upload.wikimedia.org_wikipedia_commons_thumb_0_02_Emblem_of_the_Norwegian_Directorate_of_Mining.svg_157px-Emblem_of_the_Norwegian_Directorate_of_Mining.svg.png'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Sweden_road_sign_D9.svg/200px-Sweden_road_sign_D9.svg.png'>
<entry value='1736207904778'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___upload.wikimedia.org_wikipedia_commons_thumb_8_8f_Sweden_road_sign_D9.svg_200px-Sweden_road_sign_D9.svg.png'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Emblem_of_the_Norwegian_Directorate_of_Fisheries.svg/175px-Emblem_of_the_Norwegian_Directorate_of_Fisheries.svg.png'>
<entry value='1736207900852'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___upload.wikimedia.org_wikipedia_commons_thumb_9_9c_Emblem_of_the_Norwegian_Directorate_of_Fisheries.svg_175px-Emblem_of_the_Norwegian_Directorate_of_Fisheries.svg.png'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://upload.wikimedia.org/wikipedia/en/5/59/Riksantikvaren_logo.png'>
<entry value='1736207901786'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___upload.wikimedia.org_wikipedia_en_5_59_Riksantikvaren_logo.png'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://wiki.openstreetmap.org/w/images/thumb/c/c9/Hot_logo.svg/300px-Hot_logo.svg.png'>
<entry value='1740392575998'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___wiki.openstreetmap.org_w_images_thumb_c_c9_Hot_logo.svg_300px-Hot_logo.svg.png'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://www.fosterhjemsforening.no/wp-content/uploads/2015/06/SSB_logo1.png'>
<entry value='1736207905076'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___www.fosterhjemsforening.no_wp-content_uploads_2015_06_SSB_logo1.png'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://www.raa.se/app/themes/raa-external/assets/images/favicon/raa-favicon-32.png'>
<entry value='1736207902826'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___www.raa.se_app_themes_raa-external_assets_images_favicon_raa-favicon-32.png'/>
</list>
<list key='mirror./home/cy0/.cache/JOSM/images.https://www.svk.se/static/img/favicon/favicon-32x32.png'>
<entry value='1736207905284'/>
<entry value='/home/cy0/.cache/JOSM/images/mirror_https___www.svk.se_static_img_favicon_favicon-32x32.png'/>
</list>
<list key='mirror.https://api.github.com/repos/JOSM/Mapillary/releases/latest'>
<entry value='1737050012546'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___api.github.com_repos_JOSM_Mapillary_releases_latest'/>
</list>
<list key='mirror.https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/1.0.0/WMTSCapabilities.xml'>
<entry value='1738242019753'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___gibs.earthdata.nasa.gov_wmts_epsg3857_best_1.0.0_WMTSCapabilities.xml'/>
</list>
<list key='mirror.https://josm.openstreetmap.de/josmfile?page_Styles/Admin_Boundaries&zip_1'>
<entry value='1738062899989'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___josm.openstreetmap.de_josmfile_page_Styles_Admin_Boundaries_zip_1'/>
</list>
<list key='mirror.https://josm.openstreetmap.de/josmfile?page_Styles/MapillaryDetections&zip_1'>
<entry value='1737988920488'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___josm.openstreetmap.de_josmfile_page_Styles_MapillaryDetections_zip_1'/>
</list>
<list key='mirror.https://josm.openstreetmap.de/josmfile?page_Styles/Potlatch2&zip_1'>
<entry value='1738610932353'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___josm.openstreetmap.de_josmfile_page_Styles_Potlatch2_zip_1'/>
</list>
<list key='mirror.https://josm.openstreetmap.de/josmfile?page_Styles/Power&zip_1'>
<entry value='1737539561000'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___josm.openstreetmap.de_josmfile_page_Styles_Power_zip_1'/>
</list>
<list key='mirror.https://josm.openstreetmap.de/josmfile?page_Styles/PowerMapping&zip_1'>
<entry value='1737539655586'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___josm.openstreetmap.de_josmfile_page_Styles_PowerMapping_zip_1'/>
</list>
<list key='mirror.https://josm.openstreetmap.de/maps'>
<entry value='1740482150813'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___josm.openstreetmap.de_maps'/>
</list>
<list key='mirror.https://josm.openstreetmap.de/presets'>
<entry value='1740152641379'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___josm.openstreetmap.de_presets'/>
</list>
<list key='mirror.https://josm.openstreetmap.de/remote/geofabrik-index-v1-nogeom.json'>
<entry value='1739984887612'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___josm.openstreetmap.de_remote_geofabrik-index-v1-nogeom.json'/>
</list>
<list key='mirror.https://josm.openstreetmap.de/remote/sophox-sparql?query_SELECT+%28CONCAT%28%22Key%3A%22%2C+%3Fpermanent_key_ID%29+as+%3FOSM_key%29+%3Fformatter_URL+WHERE+%7B%0A++%3Fitem+osmdt%3AP2+osmd%3AQ7.%0A++%3Fitem+osmdt%3AP16+%3Fpermanent_key_ID.%0A++%3Fitem+osmdt%3AP8+%3Fformatter_URL.%0A%7D%0A'>
<entry value='1735742822958'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___josm.openstreetmaa9afd68cc62ad3780ff2609e7bb1e11b'/>
</list>
<list key='mirror.https://josm.openstreetmap.de/remote/wikidata-sparql?query_SELECT+%3FOSM_key+%3Fformatter_URL+WHERE+%7B%0A++%7B+%3Fitem+wdt%3AP1282+%3FOSM_key.+%7D%0A++FILTER%28STRSTARTS%28%3FOSM_key%2C+%27Key%3A%27%29%29+.%0A%0A++%7B%0A++++%7B+%3Fitem+wdt%3AP1630+%3Fformatter_URL.+%7D%0A++++UNION%0A++++%7B+%3Fitem+wdt%3AP3303+%3Fformatter_URL.+%7D%0A++%7D%0A%7D%0A'>
<entry value='1735742822553'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___josm.openstreetma2ed2f87d98ef5b24c7f8123020996ecf'/>
</list>
<list key='mirror.https://josm.openstreetmap.de/rules'>
<entry value='1739436308017'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___josm.openstreetmap.de_rules'/>
</list>
<list key='mirror.https://josm.openstreetmap.de/styles'>
<entry value='1739892675733'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___josm.openstreetmap.de_styles'/>
</list>
<list key='mirror.https://josm.openstreetmap.de/tested'>
<entry value='1737637914477'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___josm.openstreetmap.de_tested'/>
</list>
<list key='mirror.https://raw.githubusercontent.com/open-energy-transition/grid-mapping-starter-kit/refs/heads/main/josm-config/Styles_Power-style.mapcss'>
<entry value='1739183672503'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___raw.githubusercontent.com_open-energy-transition_grid-mapping-starter-kit_refs_heads_mai_1119b9a2e398f962f6a67d77a2959210'/>
</list>
<list key='mirror.https://raw.githubusercontent.com/open-energy-transition/grid-mapping-starter-kit/refs/heads/main/josm-config/transmission_grid_mapping_style.mapcss'>
<entry value='1739225421304'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___raw.githubusercontent.com_open-energy-transition_grid-mapping-starter-kit_refs_heads_mai_fe561d73ed9e5215063fe4463af70d17'/>
</list>
<list key='mirror.https://services.sentinel-hub.com/ogc/wmts/113184fa-263a-4bd8-a2d3-0c00fbcef8b5?SERVICE_WMS&REQUEST_GetCapabilities'>
<entry value='1736210669880'/>
<entry value='/home/cy0/.cache/JOSM/mirror_https___services.sentinel-hub.com_ogc_wmts_113184fa-263a-4bd8-a2d3-0c00fbcef8b5_SERVICE_WMS_REQUEST_GetCapabilities'/>
</list>
<tag key='notes/note_open.lastHeight' value='0'/>
<tag key='o24.png.lastHeight' value='0'/>
<tag key='o24.png.minimized' value='true'/>
<tag key='openqa.filetype' value='geojson'/>
<list key='openqa.osmose-tests'>
<entry value='7040'/>
<entry value='8281'/>
</list>
<tag key='org.openstreetmap.josm.actions.SessionSaveAction$SessionSaveAsDialog.geometry' value='x=735,y=388,width=450,height=450'/>
<tag key='org.openstreetmap.josm.gui.dialogs.DeleteFromRelationConfirmationDialog.geometry' value='x=760,y=513,width=400,height=200'/>
<tag key='org.openstreetmap.josm.gui.dialogs.LatLonDialog.geometry' value='x=601,y=350,width=717,height=526'/>
<tag key='org.openstreetmap.josm.gui.dialogs.changeset.ChangesetCacheManager.geometry' value='x=0,y=27,width=1000,height=600'/>
<tag key='org.openstreetmap.josm.gui.dialogs.properties.TagEditHelper$AddTagsDialog.geometry' value='x=446,y=421,width=432,height=426'/>
<tag key='org.openstreetmap.josm.gui.dialogs.properties.TagEditHelper$EditTagDialog.geometry' value='x=516,y=519,width=887,height=188'/>
<tag key='org.openstreetmap.josm.gui.dialogs.relation.GenericRelationEditor.geometry' value='x=610,y=288,width=1164,height=909'/>
<tag key='org.openstreetmap.josm.gui.download.DownloadDialog.geometry' value='x=102,y=98,width=1573,height=1010'/>
<tag key='org.openstreetmap.josm.gui.help.HelpBrowser.geometry' value='x=0,y=27,width=1212,height=973'/>
<tag key='org.openstreetmap.josm.gui.io.UploadDialog.geometry' value='x=560,y=313,width=800,height=600'/>
<tag key='org.openstreetmap.josm.gui.preferences.PreferenceDialog.geometry' value='x=35,y=128,width=1885,height=1024'/>
<tag key='org.openstreetmap.josm.gui.preferences.advanced.ListEditor.geometry' value='x=727,y=465,width=500,height=350'/>
<tag key='org.openstreetmap.josm.gui.preferences.imagery.AddWMSLayerPanel.geometry' value='x=760,y=313,width=400,height=600'/>
<tag key='org.openstreetmap.josm.plugins.utilsplugin2.multitagger.MultiTagDialog.geometry' value='x=710,y=363,width=500,height=500'/>
<tag key='osm-download.bounds' value='-1.7136117;35.0463867;2.8552628;40.3857422'/>
<tag key='osm-server.upload-strategy' value='singlerequest'/>
<tag key='pluginmanager.lastupdate' value='1739984880157'/>
<tag key='pluginmanager.version' value='19277'/>
<tag key='preferences.reset.draw.rawgps.lines' value='true'/>
<tag key='progressdialog.size' value='280'/>
<list key='properties.recent-tags'>
<entry value='power'/>
<entry value='substation'/>
<entry value='tower:type'/>
<entry value='communication'/>
<entry value='power'/>
<entry value='terminal'/>
<entry value='power'/>
<entry value='tower'/>
<entry value='start_date'/>
<entry value='2024'/>
<entry value='wikipedia'/>
<entry value='en:Isinya–Singida High Voltage Power Line'/>
<entry value='substation'/>
<entry value='transmission'/>
<entry value='power'/>
<entry value='plant'/>
<entry value='voltage'/>
<entry value='132000'/>
<entry value='plant:output:electricity'/>
<entry value='254 MW'/>
<entry value='wikipedia'/>
<entry value='132000'/>
<entry value='wikipedia'/>
<entry value='en:Genale-Dawa-III-Hydroelectric-Power-Station'/>
<entry value='wikipedia'/>
<entry value='en:Genale_Dawa_III_Hydroelectric_Power_Station'/>
<entry value='wikipedia'/>
<entry value='en:Genale Dawa III Hydroelectric Power Station'/>
</list>
<tag key='propertiesdialog.lastHeight' value='301'/>
<tag key='relationlist.lastHeight' value='0'/>
<tag key='relationlist.visible' value='false'/>
<tag key='remotecontrol.enabled' value='true'/>
<tag key='remotecontrol.permission.authorization' value='true'/>
<list key='search.history'>
<entry value='R 3655420431'/>
</list>
<tag key='selectionlist.lastHeight' value='167'/>
<list key='sensitive.keys'>
<entry value='oauth.access-token.key'/>
<entry value='oauth.access-token.object.OAuth20.api.openstreetmap.org'/>
<entry value='oauth.access-token.secret'/>
<entry value='osm-server.password'/>
<entry value='osm-server.username'/>
<entry value='proxy.pass'/>
<entry value='proxy.user'/>
<entry value='sensitive.keys'/>
</list>
<tag key='sidetoolbar.hidden.mapmode/node/autonode' value='false'/>
<tag key='sidetoolbar.hidden.mapmode/splitway' value='false'/>
<tag key='sourcetag.value' value='Bing'/>
<tag key='streetside-info.lastHeight' value='0'/>
<tag key='streetside-main.lastHeight' value='0'/>
<tag key='streetside-main.visible' value='false'/>
<tag key='streetside-viewer.lastHeight' value='0'/>
<tag key='streetside-viewer.visible' value='false'/>
<tag key='streetside.download-mode' value='manualOnly'/>
<tag key='streetside.imageInfo.helpDisplayedCountdown' value='0'/>
<tag key='toggleDialogs.width' value='420'/>
<list key='toolbar'>
<entry value='open'/>
<entry value='save'/>
<entry value='download'/>
<entry value='upload'/>
<entry value='|'/>
<entry value='undo'/>
<entry value='redo'/>
<entry value='|'/>
<entry value='dialogs/search(searchExpression=)'/>
<entry value='preference'/>
<entry value='|'/>
<entry value='combineway'/>
<entry value='wayflip'/>
<entry value='tagging_Man Made/Power/Power Substation'/>
<entry value='tagging_Man Made/Power/Power Tower'/>
<entry value='tagging_Man Made/Power/Power Line'/>
<entry value='tagging_Man Made/Power/Power Portal'/>
<entry value='tagginggroup_Man Made/Power/Power Plant'/>
<entry value='addnode'/>
</list>
<list key='upload.comment.history'>
<entry value='Fix Substation'/>
<entry value='Add more info to substation'/>
<entry value=''/>
<entry value='Found towers next to substation'/>
<entry value='Found new towers'/>
<entry value='Found new towers '/>
<entry value='Connected 115 kV Line'/>
<entry value='Connected 230 kV Line'/>
<entry value='Found some towers next to substation'/>
<entry value='Found some towers next to substation and connected new lines'/>
<entry value='Found new towers and substation next to hydro power '/>
<entry value='Found new towers along power line'/>
<entry value='Found new power plant and substation'/>
<entry value='Found new substation following a new line'/>
<entry value='Found Hydro Power plant'/>
</list>
<tag key='upload.comment.last-used' value='1740390352'/>
<list key='upload.source.history'>
<entry value='Esri World Imagery'/>
<entry value='Esri World Imagery; Bing'/>
<entry value='Bing'/>
<entry value='Bing; Mapbox Satellite; Esri World Imagery'/>
<entry value='Bing; Esri World Imagery'/>
<entry value='Bing; Esri World Imagery; Mapbox Satellite'/>
<entry value='Esri World Imagery; OpenStreetMap Carto (Standard)'/>
<entry value='Esri World Imagery; Mapbox Satellite'/>
<entry value='Esri World Imagery; Mapbox Satellite; Bing'/>
<entry value='OpenStreetMap Carto (Standard); Esri World Imagery; Bing; Mapbox Satellite'/>
<entry value='Mapbox Satellite; Esri World Imagery'/>
<entry value='Mapbox Satellite; Esri World Imagery; Bing'/>
<entry value='Bing; Mapbox Satellite'/>
<entry value='Esri World Imagery; Bing; Mapbox Satellite'/>
<entry value='OpenStreetMap (German Style); Esri World Imagery; Bing'/>
</list>
<tag key='upload.source.obtainautomatically' value='true'/>
<tag key='userlist.lastHeight' value='89'/>
<tag key='utilsplugin2.customurl' value='https://www.openstreetmap.org/{#type}/{#id}/history'/>
<list key='utilsplugin2.urlHistory'>
<entry value='Wikipedia'/>
<entry value='https://en.wikipedia.org/w/index.php?search={name}&fulltext=Search'/>
<entry value='Wikipedia RU'/>
<entry value='http://osm.mapki.com/history/{#type}.php?id={#id}'/>
<entry value='Who Dit It?'/>
<entry value='http://simon04.dev.openstreetmap.org/whodidit/?zoom=12&lat={#lat}&lon={#lon}&layers=BTT'/>
<entry value='Keep Right validator'/>
<entry value='http://keepright.ipax.at/report_map.php?zoom=14&lat={#lat}&lon={#lon}&layers=B0T'/>
<entry value='Element history [demo, =Ctrl-Shift-H]'/>
<entry value='https://www.openstreetmap.org/{#type}/{#id}/history'/>
<entry value='Browse element [demo, =Ctrl-Shift-I]'/>
<entry value='https://www.openstreetmap.org/{#type}/{#id}'/>
</list>
<tag key='validated.ipv6' value='true'/>
<tag key='validator.lastHeight' value='200'/>
<list key='validator.skip'>
</list>
<list key='validator.skipBeforeUpload'>
</list>
<tag key='validator.visible' value='true'/>
<tag key='wikidata.lastHeight' value='0'/>
<tag key='wikipedia.lastHeight' value='155'/>
<tag key='wikipedia.visible' value='false'/>
</preferences>