forked from osm-fr/osmose-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
analyser_merge_street_objects.py
69 lines (59 loc) · 4.01 KB
/
analyser_merge_street_objects.py
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
#!/usr/bin/env python
#-*- coding: utf-8 -*-
###########################################################################
## ##
## Copyrights Frédéric Rodrigo 2019 ##
## ##
## This program is free software: you can redistribute it and/or modify ##
## it under the terms of the GNU General Public License as published by ##
## the Free Software Foundation, either version 3 of the License, or ##
## (at your option) any later version. ##
## ##
## This program is distributed in the hope that it will be useful, ##
## but WITHOUT ANY WARRANTY; without even the implied warranty of ##
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ##
## GNU General Public License for more details. ##
## ##
## You should have received a copy of the GNU General Public License ##
## along with this program. If not, see <http://www.gnu.org/licenses/>. ##
## ##
###########################################################################
import json
from .Analyser_Merge_Dynamic import Analyser_Merge_Dynamic, SubAnalyser_Merge_Dynamic
from .Analyser_Merge import CSV, Load, Mapping, Select, Generate
from .Analyser_Merge_Mapillary import Source_Mapillary
from io import open # In python3 only, this import is not required
class Analyser_Merge_Street_Objects(Analyser_Merge_Dynamic):
def __init__(self, config, logger = None):
Analyser_Merge_Dynamic.__init__(self, config, logger)
if "country" not in self.config.options:
return
mapping = 'merge_data/mapillary-street-objects.mapping.json'
mapingfile = json.loads(open(mapping).read())
for r in mapingfile:
self.classFactory(SubAnalyser_Merge_Street_Objects, r['class'], r['class'], r['level'], r['otype'], r['conflation'], r['title'], r['object'], r['select_tags'], r['generate_tags'], mapping, 'points')
class SubAnalyser_Merge_Street_Objects(SubAnalyser_Merge_Dynamic):
def __init__(self, config, error_file, logger, classs, level, otype, conflation, title, object, selectTags, generateTags, mapping, layer):
SubAnalyser_Merge_Dynamic.__init__(self, config, error_file, logger)
self.missing_official = self.def_class(item = 8360, id = classs, level = level, tags = ['merge', 'leisure'],
title = T_f('{0} Street object {1} observed around but not associated tags', ', '.join(map(lambda kv: '%s=%s' % (kv[0], kv[1] if kv[1] else '*'), generateTags.items())), title))
self.init(
"www.mapillary.com",
u"Street Objects from Street-level imagery",
CSV(Source_Mapillary(attribution = u"Mapillary Street Objects", country = config.options['country'], polygon_id = config.polygon_id, logger = logger, mapping = mapping, layer = layer)),
Load("X", "Y",
select = {"value": object}),
Mapping(
select = Select(
types = otype,
tags = selectTags),
conflationDistance = conflation,
generate = Generate(
static1 = dict(filter(lambda kv: kv[1], generateTags.items())),
static2 = {"source": self.source},
mapping1 = {
"mapillary": "image_key",
"survey:date": lambda res: res["last_seen_at"][0:10]},
text = lambda tags, fields: {"en": (
"Observed between %s and %s" % (fields["first_seen_at"][0:10], fields["last_seen_at"][0:10]) if fields["first_seen_at"][0:10] != fields["last_seen_at"][0:10] else
"Observed on %s" % (fields["first_seen_at"][0:10],))} )))