Certificat complémentaire en Géomatique
3 PARTIE : CONSTRUCTION DU MODÈLE
Types de façades Quantification Façade active suscitant la flânerie, la rencontre et le séjour 3 Façade active suscitant des entrées/sorties et des flux rapides 2.5 Façade active attirant le regard, créant un effet d'intrigue et suscitant des latéralisations 2 Façade neutre 1.5 Façade ennuyeuse 1 Façade repoussante 0
Type de locaux Magasin, arcade Hotel, restaurant, bar, dancin Bureau, cabinet Atelier Ecole, creche Locaux specialises Salle sport Habitation Clinique, hopital, foyer facade sans activite Parkings publics socle inactif Autre
Quantification 3 3 2 2 2 2 2 1.5 1.5 1 1 0 0
30. Fig. Table avec le pointage attribué au type de façades
Construction indicateur de façade :
Expression Python def Reclass(type_locaux): if type_locaux==»Magasin, arcade»: return 3 elif type_locaux==»Hotel, restaurant, bar, dancin»: return 3 elif type_locaux==»Bureau, cabinet»: return 2 elif type_locaux==»Atelier»: return 2 elif type_locaux==»Ecole, creche»: return 2 elif type_locaux==»Locaux specialises»: return 2 elif type_locaux==»Salle sport»: return 2 elif type_locaux==»Habitation»: return 1.5 elif type_locaux==»Clinique, hopital, foyer»: return 1.5 elif type_locaux==»facade sans activite»: return 1 elif type_locaux==»Parkings publics»: return 1 elif type_locaux==»socle inactif»: return 0 else: return 0 Reclass( !type_locaux!
35