-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
635 lines (607 loc) · 26.9 KB
/
index.html
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
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
<html>
<head>
<meta charset="UTF-8">
<title>Pifomètre</title>
<script src="js/jquery-3.4.1.min.js"></script>
<script src="js/tablesorter/jquery.tablesorter.js"></script>
<!-- <script src="js/tablesorter/parsers/parser-input-select.min.js"></script> -->
<!-- <script src="js/tablesorter/widgets/widget-filter.min.js"></script> -->
<link rel="stylesheet" href="css/tablesorter/theme.default.min.css" type="text/css"/>
<link rel="stylesheet" href="css/style.css" type="text/css"/>
<link rel="stylesheet" href="css/style_pifometre.css" type="text/css"/>
<link rel="stylesheet" href="css/menu.css" type="text/css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Pifomètre BANO" href="opensearch.xml" />
<script>
var menu_labels
var commune_valide = false
var osm_state
function start(){
$('#table_communes_voisines').css('visibility','hidden');
$('#table_communes_voisines table tr td').empty()
.removeAttr('insee_cible')
.unbind('click');
$('.rubrique').click(function() {
$('.rubrique').removeClass('active');
$(this).addClass('active');
$('.table_liste').css({display:'none'})
$('#'+$(this).attr('cible')).css({display:'block'})
update_url_tab($(this).parent().children().index($(this)))
update_csv_url($(this).parent().children().index($(this)))
})
$.ajax({
url: "labels_statut_fantoir.py"
})
.done(function( data ) {
a_menus_labels = []
for (c=0;c<data.length;c++){
menu_labels = '<select>'
id_label = 0
for (i=0;i<data.length;i++){
if (c!=i){
menu_labels+='<option value='+data[i][0]+'>'+data[i][1]+'</option>'
} else {
menu_labels+='<option value='+data[i][0]+' selected>'+data[i][1]+'</option>'
id_label = data[i][0]
}
}
menu_labels+='</select>'
a_menus_labels[id_label] = menu_labels
}
})
check_josm_remote_control()
insee = check_url_for_insee()
if (insee){
$('#input_insee').empty()
$('#input_insee')[0].value = insee
requete_fantoir()
}
$('#bouton_communes_voisines').click(function(){
$('#table_communes_voisines').css('visibility','visible');
})
$('#table_communes_voisines > .fermer').click(function(){
$('#table_communes_voisines').css('visibility','hidden');
})
update_csv_url(check_url_for_tab)
$('#bouton_refresh').click(function(){
refresh();
})
.mouseover(function(){
get_osm_state();
refresh_infobulle();
})
.mouseout(function(){
$('#refresh_infobulle').hide()
})
$('#bouton_aide').click(function(){
$('#aide').css('visibility','visible');
})
$('#aide > .fermer').click(function(){
$('#aide').css('visibility','hidden');
})
};
function refresh_infobulle(){
$('#refresh_infobulle').empty()
.append('Mettre à jour avec les données OSM du ')
.append($('<span>').append(osm_state+' (UTC)'))
.show()
}
function refresh(){
if (commune_valide == false){
return 0;
}
$('body').css('cursor','progress');
$('#wait_ajax').empty()
.css('z-index','20')
.css('opacity','0.8')
.append($('<span>').append('Mise à jour BANO en cours...'));
$.ajax({
url: "refresh.py?insee="+$('#input_insee')[0].value,
})
.done(function( data ){
if (data == '1'){
$('#wait_ajax').append($('<span>').append("Ok"));
requete_fantoir();
} else {
alert('Problème lors de la mise à jour')
}
$('body').css('cursor','default');
$('#wait_ajax').css('z-index','1').css('opacity','0');
})
}
function get_osm_state(){
$.ajax({
url: "osm_state.py",
async:false
})
.done(function( data ){
osm_state = data;
})
}
function requete_fantoir(){
commune_valide = false;
$('body').css('cursor','progress');
$('#input_insee')[0].value = $('#input_insee')[0].value.toUpperCase()
$('#table_adresses_non_match').empty()
$('#table_adresses_match').empty()
$('#table_voies_fantoir_non_match').empty()
$('#table_voies_match').empty()
$('#table_places_non_match').empty()
$('#table_places_match').empty()
$('#table_OSM_non_match').empty()
$.ajax({
url: "requete_fantoir.py?insee="+$('#input_insee')[0].value
})
.done(function( data ) {
nom_commune = data[0][0]
rappr_cadastre = data[0][1]
rappr_osm = data[0][2]
lon_commune = data[0][3]
lat_commune = data[0][4]
communes_voisines = data[0][5]
insee_commune_parente = data[0][6]
nom_commune_parente = data[0][7]
voies_fantoir_adresses_non_match = data[1]
voies_fantoir_adresses_match = data[2]
voies_fantoir_seules_non_match = data[3]
voies_fantoir_seules_match = data[4]
places_fantoir_non_match = data[5]
places_fantoir_match = data[6]
voies_OSM_non_match = data[7]
url_map_org_part1 = 'http://www.openstreetmap.org/'
url_map_fr_part1 = 'http://tile.openstreetmap.fr/'
url_bano_part1 = 'http://tile.openstreetmap.fr/~cquest/leaflet/bano.html'
url_edit_part1 = 'http://www.openstreetmap.org/edit?editor='
delta = 0.0008
document.title = nom_commune+' - Pifomètre'
$('#infos_commune').empty()
$('.rubrique').empty()
$('#alerte_commune').css('visibility','hidden');
if (nom_commune.length == 0){
$('#infos_commune').append($('<h2>').append('INSEE '+$('#input_insee')[0].value+' : commune inconnue'))
$('body').css('cursor','default');
return 0;
}
commune_valide = true;
$('#infos_commune').append($('<div id="date-maj">')
.append($('<div>').addClass('cellule_intitule').append('Dernier rapprochement BAN le'))
.append($('<div>').addClass('cellule_data').append(rappr_cadastre[2]))
.append($('<div>').addClass('cellule_intitule').append('Données OSM en date du'))
.append($('<div>').addClass('cellule_data').append(rappr_osm[2]))
)
$('#infos_commune').append($('<div id="titre_commune">').append($('<h1>').append((nom_commune))))
url_hash_coords = '15/'+lat_commune+'/'+lon_commune
url_ol_part2 = '?zoom=15&lat='+lat_commune+'&lon='+lon_commune
url_listing_fantoir = './liste_brute_fantoir.html#insee='+$('#input_insee')[0].value
$('#infos_commune').append($('<div id="liens_commune">')
.append($('<a>')
.attr('target','blank')
.attr('href',url_map_org_part1+'?mlat='+lat_commune+'&mlon='+lon_commune+'#map='+url_hash_coords)
.text('ORG')
)
.append(' / ')
.append($('<a>')
.attr('target','blank')
.attr('href',url_map_fr_part1+url_ol_part2)
.text('FR')
)
.append(' / ')
.append($('<a>')
.attr('target','blank')
.attr('href',url_bano_part1+'#'+url_hash_coords)
.text('BANO')
)
.append(' / ')
.append($('<a>')
.attr('target','blank')
.attr('href',url_listing_fantoir)
.text('FANTOIR')
)
)
// $('#table_infos_commune').append($('<tr>').append($('<td>').addClass('cellule_intitule').append('Données OSM en date du')).append($('<td>').addClass('cellule_data').append(cache_hsnr[2])))
$('#rub_adresses_non_match').empty().text(voies_fantoir_adresses_non_match.length+" voies FANTOIR sans rapprochement OSM")
$('#rub_adresses_match').empty().text(voies_fantoir_adresses_match.length+" voies FANTOIR avec rapprochement OSM")
$('#rub_voies_fantoir_non_match').empty().text(voies_fantoir_seules_non_match.length+" voies FANTOIR sans rapprochement OSM")
$('#rub_voies_match').empty().text(voies_fantoir_seules_match.length+" voies FANTOIR avec rapprochement OSM")
$('#rub_places_non_match').empty().text(places_fantoir_non_match.length+" lieux-dits FANTOIR sans rapprochement OSM")
$('#rub_places_match').empty().text(places_fantoir_match.length+" lieux-dits FANTOIR avec rapprochement OSM")
$('#rub_OSM_non_match').empty().text(voies_OSM_non_match.length+" voies et emprises OSM inconnues de FANTOIR")
$('.table_liste').empty()
add_header('table_adresses_non_match',true,false,true,true)
add_header('table_adresses_match',true,false,true,true)
add_header('table_voies_fantoir_non_match',false,false,false,true)
add_header('table_voies_match',true,false,false,true)
add_header('table_places_non_match',true,false,true,true)
add_header('table_places_match',true,true,false,true)
add_header('table_OSM_non_match',true,false,false,false)
a_data_table = [[voies_fantoir_adresses_non_match,'table_adresses_non_match'],
[voies_fantoir_adresses_match,'table_adresses_match'],
[voies_fantoir_seules_non_match,'table_voies_fantoir_non_match'],
[voies_fantoir_seules_match,'table_voies_match'],
[places_fantoir_non_match,'table_places_non_match'],
[places_fantoir_match,'table_places_match'],
[voies_OSM_non_match,'table_OSM_non_match']]
global_ligne_id = 1000;
for (s=0;s<a_data_table.length;s++){
data = a_data_table[s][0];
table = a_data_table[s][1];
with_statut_fantoir = eval($('#'+table).attr('with_statut_fantoir'))
with_edit_and_map_links = eval($('#'+table).attr('with_edit_and_map_links'))
for (l=0;l<data.length;l++){
global_ligne_id+=1;
fantoir = data[l][0]
fantoir_affiche = fantoir
fantoir_dans_relation = 'ok'
if (((s==0)||(s==1)||(s==2)||(s==3)) && data[l][9]){
if (data[l][9] == 'B'){
fantoir_affiche = 'Voie sans FANTOIR'
fantoir_dans_relation = 'ko'
}
//console.log(fantoir+' '+fantoir_affiche+' '+ data[l][9])
}
//Fantoir
$('#'+table+ ' tbody:last').append($('<tr>').attr('id',global_ligne_id).append($('<td>').attr('fantoir',fantoir).addClass('cell_fantoir').text(fantoir_affiche)))
//Fantoir annulé
if (data[l].length > 8){
if (data[l][8] == -1){
$('#'+table+ ' tbody:last tr:last td:last').addClass('annule').attr('title','FANTOIR annulé, à remplacer dans OSM')
}
}
// Date de creation
$('#'+table+' tr:last').append($('<td>').text(data[l][1]))
//Nom Fantoir
if ((table == 'table_places_non_match'||table == 'table_places_match') && (data[l][7] == 0)){
$('#'+table+' tr:last').append($('<td>').append($('<img>').attr('src','img/ld_habite.png').attr('title','Lieu-dit bâti selon FANTOIR')).append($('<span>').text(data[l][2])))
} else {
$('#'+table+' tr:last').append($('<td>').text(data[l][2]))
}
//Nom OSM
$('#'+table+' tr:last').append($('<td>').text(data[l][3]))
lon = data[l][4]
lat = data[l][5]
if (with_edit_and_map_links && lon && lat){
url_ol_part2 = '?zoom=18&lat='+lat+'&lon='+lon
url_hash_coords = '18/'+lat+'/'+lon
xleft = lon-delta
xright = lon+delta
ybottom = lat-delta
ytop = lat+delta
//visu
add_map_link(table,url_map_org_part1+'#map='+url_hash_coords,'ORG')
add_map_link(table,url_map_fr_part1+url_ol_part2,'FR')
add_map_link(table,url_bano_part1+'#'+url_hash_coords,'BANO')
//JOSM
add_josm_link(table,xleft,xright,ybottom,ytop)
//ID
add_map_link(table,url_edit_part1+'id#map='+url_hash_coords,'ID')
//Potlatch
add_map_link(table,url_edit_part1+'potlatch2#map='+url_hash_coords,'P2')
// } else {
// $('#'+table+' tr:last').append($('<td>').attr('colspan','6'))
}
//Statut Fantoir
if (with_statut_fantoir){
add_statut_fantoir(global_ligne_id,fantoir_affiche,data[l][6])
} else {
$('tr:last').addClass('statut0')
}
if (((s==0)||(s==1)) && data[l][7]){
add_josm_addr_link(table,$('#input_insee')[0].value,fantoir,data[l][2],data[l][7],fantoir_dans_relation)
if (fantoir_dans_relation == 'ok'){
add_addr_inspector_link(table,$('#input_insee')[0].value,data[l][0],s,'BAN')
} else {
$('#'+table+' tr:last').append($('<td>'))
}
}
// else if ((s==1) && data[l][7]){
// add_josm_addr_link(table,$('#input_insee')[0].value,fantoir,data[l][3],data[l][7])
// add_addr_inspector_link(table,$('#input_insee')[0].value,data[l][0],data[l][1],s,'BAN')
// }
else if ((s==0)||(s==1)){
$('#'+table+' tr:last').append($('<td>'))
$('#'+table+' tr:last').append($('<td>'))
if (fantoir_dans_relation == 'ok'){
add_addr_inspector_link(table,$('#input_insee')[0].value,data[l][0],s,'BAN')
} else {
$('#'+table+' tr:last').append($('<td>'))
}
}
if ((s==4) && data[l][8]){
$('#'+table+' tr:last').append($('<td title="Adresses de la Base adresse nationale. Non intégrables via Pifomètre">').text(data[l][8] > 1 ? data[l][8]+' Adresses':'1 Adresse'))
}
}
if (data.length > 0){
$('#'+table).trigger("resetToLoadState");
$('#'+table).tablesorter();
}
}
// table_communes_voisines
$('#table_communes_voisines tr td').empty()
$('#table_communes_voisines tr td.commune_centre').text(nom_commune)
for (v in communes_voisines){
$('#table_communes_voisines tr td#'+(communes_voisines[v])[0]).text(communes_voisines[v][2]).attr('insee_cible',communes_voisines[v][1]).addClass('lien_commune')
.click(function(){
location.assign(window.location.href.split('#')[0]+'#insee='+$(this).attr('insee_cible'))
start()
})
}
tab = check_url_for_tab()
// bouton export CSV
update_csv_url(tab)
$('#rubriques tr td')[tab].click()
window.location.hash="#insee="+$('#input_insee')[0].value+"&tab="+tab
$('body').css('cursor','default');
if (insee_commune_parente){
$('#alerte_commune').empty();
$('#alerte_commune').css('visibility','visible');
$('#alerte_commune').append($('<div>').addClass('fermer').text('X'))
$('#alerte_commune > .fermer').click(function(){
$('#alerte_commune').css('visibility','hidden');
})
$('#alerte_commune').append($('<h3>').text(nom_commune+' est une ancienne commune. Elle a été incorporée dans ').append($('<a>').attr('href','index.html#insee='+insee_commune_parente).text(nom_commune_parente+'('+insee_commune_parente+')')))
}
})
};
function check_url_for_insee(){
pattern_insee = new RegExp('^[0-9][0-9abAB][0-9]{3}$')
var res
if (window.location.hash){
if (window.location.hash.split('insee=')[1].split('&')[0]){
if (pattern_insee.test(window.location.hash.split('insee=')[1].split('&')[0])){
res = window.location.hash.split('insee=')[1].split('&')[0]
} else {
alert(window.location.hash.split('insee=')[1].split('&')[0]+' n\'est pas un code INSEE de commune\n\nAbandon')
}
}
}
return res
}
function check_url_for_tab(){
pattern_tab = new RegExp('^[0-5]$')
var res
res = 0
if (window.location.hash){
if (window.location.hash.split('&tab=')[1]){
if (window.location.hash.split('tab=')[1].split('&')[0]){
if (pattern_tab.test(window.location.hash.split('tab=')[1].split('&')[0])) {
res = window.location.hash.split('tab=')[1].split('&')[0]
}
}
}
}
return res
}
function update_url_insee(i){
p1 = window.location.hash.split('&tab=')[0]
p2=''
if (window.location.hash.split('&tab=')[1]){
if (window.location.hash.split('&tab=')[1].split('&')[1]){
p2 = window.location.hash.split('&tab=')[1].split('&')[1]
}
}
window.location.hash = p1+"&tab="+t+p2
}
function update_url_tab(t){
p1 = window.location.hash.split('&tab=')[0]
p2=''
if (window.location.hash.split('&tab=')[1]){
if (window.location.hash.split('&tab=')[1].split('&')[1]){
p2 = window.location.hash.split('&tab=')[1].split('&')[1]
}
}
window.location.hash = p1+"&tab="+t+p2
}
function update_csv_url(tab){
$('#bouton_export_csv').empty()
$('#bouton_export_csv').append($('<a>').attr('href',"requete_fantoir.py?insee="+$('#input_insee')[0].value+'&format=csv&tab='+tab)
.attr('target','blank')
.append($('<img>').attr('src','img/export-to-csv-icon-13.jpg')))
// .append('Export\nCSV'))
}
function add_map_link(table,href,text){
$('#'+table+' tr:last').append($('<td>')
.append($('<a>')
.attr('href',href)
.attr('target','blank')
.text(text)))
}
function add_josm_link(table,xl,xr,yb,yt){
$('#'+table+' tr:last').append($('<td>')
.addClass('zone_click')
.attr('xleft',xl).attr('xright',xr).attr('ybottom',yb).attr('ytop',yt)
.text('JOSM')
.click(function(){
srcLoadAndZoom = 'http://127.0.0.1:8111/load_and_zoom?left='+xl+'&right='+xr+'&top='+yt+'&bottom='+yb;
$('<img>').appendTo($('#josm_target')).attr('src',srcLoadAndZoom);
$(this).addClass('clicked');
})
)
}
function add_josm_addr_link(table,insee,fantoir,nom_fantoir,nombre,fantoir_dans_relation){
$('#'+table+' tr:last').append($('<td>')
.addClass('zone_click')
.text(nombre > 1 ? nombre+' Points':'1 Point')
.click(function(){
stringToRemove = window.location.href.split('/').pop()
srcURL = 'http://127.0.0.1:8111/import?new_layer=true&layer_name='+nom_fantoir+'&url='+window.location.href.replace(stringToRemove,'')+'requete_numeros.py?insee='+insee+'&fantoir='+fantoir+'&modele=Points';
$('<img>').appendTo($('#josm_target')).attr('src',srcURL);
$(this).addClass('clicked');
})
)
$('#'+table+' tr:last').append($('<td>')
.addClass('zone_click')
.text('Relation')
.click(function(){
stringToRemove = window.location.href.split('/').pop()
srcURL = 'http://127.0.0.1:8111/import?new_layer=true&layer_name='+nom_fantoir+'&url='+window.location.href.replace(stringToRemove,'')+'requete_numeros.py?insee='+insee+'&fantoir='+fantoir+'&modele=Relation&fantoir_dans_relation='+fantoir_dans_relation;
$('<img>').appendTo($('#josm_target')).attr('src',srcURL);
$(this).addClass('clicked');
})
)
}
function add_addr_inspector_link(table,insee,fantoir,tab,source){
$('#'+table+' tr:last').append($('<td>').append($('<a>').attr('href',"numeros.html?insee="+insee+'&fantoir='+fantoir+'&source='+source+'&tab='+tab)
.append('Anomalies'))
)};
function add_header(table,with_edit_and_map_links,with_type_osm,with_cadastre_addr_link,with_statut_fantoir){
// $('#'+table).append($('<tr>').append($('<th>').append('Code FANTOIR')))
$('#'+table).attr('with_edit_and_map_links',with_edit_and_map_links)
$('#'+table).attr('with_statut_fantoir',with_statut_fantoir)
$('#'+table).append($('<thead>').append($('<tr>').append($('<th>').append('Code FANTOIR'))))
$('#'+table+' tr').append($('<th>').append('Date de création FANTOIR'))
$('#'+table+' tr').append($('<th>').append('Libellé FANTOIR'))
if (with_type_osm){
$('#'+table+' tr').append($('<th>').append('Type OSM : libellé OSM'))
} else if (table=='table_adresses_non_match'){
$('#'+table+' tr').append($('<th>').append('Libellé BAN'))
} else if (table=='table_places_non_match'){
$('#'+table+' tr').append($('<th>').append('Libellé Cadastre'))
} else {
$('#'+table+' tr').append($('<th>').append('Libellé OSM'))
}
if (with_edit_and_map_links){
$('#'+table+' tr').append($('<th>').attr('colspan','3').append('Cartes'))
$('#'+table+' tr').append($('<th>').attr('colspan','3').append('Édition'))
}
if (with_statut_fantoir){
$('#'+table+' tr').append($('<th>').append('Statut FANTOIR ').append($('<a>').attr('href','http://wiki.openstreetmap.org/wiki/Contribuer_%C3%A0_la_BANO#Typologie_des_anomalies_FANTOIR').append('(wiki)')))
}
if (with_cadastre_addr_link){
$('#'+table+' tr').append($('<th>').addClass('string-none').attr('colspan','3').append('Adresses à intégrer'))
}
$('#'+table).append($('<tbody>'))
}
function add_statut_fantoir(id_ligne,fantoir,id_statut){
$('#'+table+' tr:last').removeClass().addClass('statut'+id_statut)
$('#'+table+' tr:last').append($('<td>').append($(a_menus_labels[id_statut]).change(function() {
insee = fantoir.substr(0,5);
statut = $(this)[0].value;
$.ajax({
url: "statut_fantoir.py?insee="+insee+"&fantoir="+fantoir+"&statut="+statut
})
.done(function( data ) {
if(data == statut){
$('tr#'+id_ligne).removeClass().addClass('statut'+statut)
} else {
alert("Souci lors de la mise à jour du statut. Le nouveau statut n'a pas été pris en compte")
}
})
})))
}
function check_josm_remote_control(){
$.ajax({
url: "http://127.0.0.1:8111/version"
})
.done(function(data){
if (data){
console.log('Telecommande JOSM OK')
}
})
.fail(function(data){
alert("La telecommande JOSM ne répond pas.\nCertains liens sur la page nécessitent que JOSM soit démarré avec la télécommande activée\n\nPour de l'aide sur la télécommande : https://josm.openstreetmap.de/wiki/Help/Preferences/RemoteControl")
})
}
</script>
</head>
<body onload="start()">
<header>
<!--#include file="includes/menu.html" -->
</header>
<div id="barre-jaune">
<span>Commune :</span>
<form action="javascript:requete_fantoir()" autocomplete="on">
<input type="text" id="input_insee" placeholder="Code INSEE"></input>
<input type="submit" value="Lister">
</form>
</div>
<div id="bandeau">
<a href="/pifometre_v3/index.html">
<div id="alerte-v3">
<p>Le nouveau Pifomètre est disponible en version bêta.</p><p>Venez l'essayer !</p>
</div>
</a>
<div id='infos_commune'>
</div>
<div id="refresh_infobulle"></div>
<div id="table_communes_voisines">
<div class="fermer">X</div>
<table>
<tbody>
<tr><td id="11"></td><td id="12"></td><td id="1"></td><td id="2"></td></tr>
<!-- <tr><td id="10"></td><td id="0"></td><td id="0"></td><td id="3"></td></tr>
<tr><td id="9"></td><td id="0"><td id="0"></td></td><td id="4"></td></tr>
-->
<tr><td id="10"></td><td class="commune_centre" colspan="2" rowspan="2"></td><td id="3"></td></tr>
<tr><td id="9"></td><td id="4"></td></tr>
<tr><td id="8"></td><td id="7"></td><td id="6"></td><td id="5"></td></tr>
</tbody>
</table>
</div>
<div id="bouton_export_csv" title="Exporter l'onglet courant en CSV"></div>
<div id="bouton_communes_voisines" title="Communes voisines"></div>
<div id="bouton_refresh" title="Mettre à jour les données BANO"></div>
<div id="bouton_aide" title="Aide"></div>
<div id="infos_refresh"></div>
<div id="alerte_commune"></div>
<div id="aide">
<div class="fermer">X</div>
<h3>Statuts FANTOIR</h3>
<li>Erreur d'orthographe</li><p>Erreur d'orthographe de FANTOIR vérifié sur le terrain ou de source officielle (documents)</p>
<li>Divergence d'orthographe</li><p>Pas la même orthographe dans Fantoir et sur le terrain, sans qu'il soit évident de trancher.
<li>Nom différent</li><p>Existence d'adresse dans une même rue avec des nom de rues différents, coté FANTOIR. Ce n'est ni une erreur d'orthographe, ni un doublon, mais un nom *vraiment* différent. À marquer si ce nom n'est volontairement pas retenu pour les rapprochements.
<li>Type de voie différent</li><p>Par ex. :'Impasse XXX' dans Fantoir, et 'Ruelle XXX' sur le terrain, sans qu'il existe ailleurs dans la commune une 'Impasse XXX'
<li>Voie doublon et type de voie différent</li><p>Par ex. : 2 entrées 'Impasse XXX' ET 'Ruelle XXX' dans Fantoir, et uniquement une 'Ruelle XXX' sur le terrain, sans qu'il existe ailleurs dans la commune d' 'Impasse XXX'. => 'Impasse XXX' à marquer en doublon.
<li>Voie doublon avec orthographe différente</li><p>2 graphies pour un même nom dans Fantoir.
<li>Répétition du type de voie</li><p>Type de voie (rue, petite rue...) en double avec de possibles variantes dans les abréviations. Ex: Gde Rue Grande Rue
<li>Nom introuvable sur le terrain</li><p>Pour un nom n'entrant pas dans les autres situations (doublon...) et sans aucune trace sur le terrain
<li>Ancien nom supprimé sur le terrain</li><p>Normalement Fantoir indique une date de fin pour un nom obsolète, et tous les enregistrements avec une date passée sont ignorés dans BANO. Si un nom Fantoir apparaît dans les listes alors qu'il a été remplacé sur le terrain, il faut le marquer.
<li>Nom tronqué</li><p>Les noms de voie Fantoir sont limités à 26 caractères. Ça peut être une cause d'échec de rapprochement, quand le nom OSM dépasse cette longueur.
<li>Voie détruite</li><p>La voie a bien existé mais son emprise a disparu suite à des travaux.
<li>Voie incorporée à une autre</li><p>La voie a "fusionné" avec une autre. Son nom n'a pas été préservé.
<li>Voie inexistante</li><p>Pas de trace de la voie sur le terrain, et pas de souvenir de son existence par le passé.
<li>Adresses hors périmètre</li><p>C'est plus un souci de géométrie dans le Cadastre, que dans les listes Fantoir en tant que tel : lorsque certains points d'adresse sont situés à plusieurs rues du reste des adresses de la voie, sans aucune justification.
<li>Erreurs combinées</li><p>À utiliser quand plusieurs choix sont possibles dans la liste des anomalies.
</div>
<table id="rubriques">
<tr><th colspan="2" title="Il existe au moins une parcelle avec un numéro d'adresse associé à ces voies.">Voies <span class="emphase">avec</span> adresse(s) numérotée(s)</th>
<th colspan="2" title="Il n'existe pas d'adresse avec numéro pour ces voies.">Voies <span class="emphase">sans</span> adresse(s) numérotée(s)</th>
<th colspan="2" title="Lieux-dits.">Lieux-dits</th>
<th colspan="1" title="Voies uniquement connues d'OSM.">Dans OSM et inconnu de FANTOIR</th>
</tr>
<tr><td class="rubrique" id="rub_adresses_non_match" cible="table_adresses_non_match"></td>
<td class="rubrique" id="rub_adresses_match" cible="table_adresses_match"></td>
<td class="rubrique" id="rub_voies_fantoir_non_match" cible="table_voies_fantoir_non_match"></td>
<td class="rubrique" id="rub_voies_match" cible="table_voies_match"></td>
<td class="rubrique" id="rub_places_non_match" cible="table_places_non_match"></td>
<td class="rubrique" id="rub_places_match" cible="table_places_match"></td>
<td class="rubrique" id="rub_OSM_non_match" cible="table_OSM_non_match"></td>
</tr>
</table>
</div>
<div id="reponse">
<table id="table_adresses_non_match" class="table_liste"></table>
<table id="table_adresses_match" class="table_liste"></table>
<table id="table_voies_fantoir_non_match" class="table_liste"></table>
<table id="table_voies_match" class="table_liste"></table>
<table id="table_places_non_match" class="table_liste"></table>
<table id="table_places_match" class="table_liste"></table>
<table id="table_OSM_non_match" class="table_liste"></table>
</div>
<footer>
<!--#include file="includes/footer.html" -->
</footer>
<div id="josm_target" style="visibility : hidden"></div>
<div id="wait_ajax"></div>
<div id="mask_inspect_adresse"></div>
<div id="modal_inspect_adresse">
<div class="fermer">X</div>
<div id="titre_inspect_adresse"><h1>Titre</h1></div>
<table id="table_inspect_adresse"></table>
</div>
<script>
$('#modal_inspect_adresse > .fermer').click(function(){
$('#mask_inspect_adresse').css('display','none');
$('#modal_inspect_adresse').css('display','none');
})
</script>
</body>
</html>