use super::super::types::{CustomerType, LocationData}; pub(in crate::data::data_seed) const VISITS: &[LocationData] = &[ LocationData { name: "Trattoria Mario", lat: 43.7762, lng: 11.2540, customer_type: CustomerType::Restaurant, }, LocationData { name: "Buca Mario", lat: 43.7698, lng: 11.2505, customer_type: CustomerType::Restaurant, }, LocationData { name: "Il Latini", lat: 43.7705, lng: 11.2495, customer_type: CustomerType::Restaurant, }, LocationData { name: "Osteria dell'Enoteca", lat: 43.7680, lng: 11.2545, customer_type: CustomerType::Restaurant, }, LocationData { name: "Trattoria Sostanza", lat: 43.7735, lng: 11.2470, customer_type: CustomerType::Restaurant, }, LocationData { name: "All'Antico Vinaio", lat: 43.7690, lng: 11.2570, customer_type: CustomerType::Restaurant, }, LocationData { name: "Mercato Centrale", lat: 43.7762, lng: 11.2540, customer_type: CustomerType::Restaurant, }, LocationData { name: "Cibreo", lat: 43.7702, lng: 11.2670, customer_type: CustomerType::Restaurant, }, LocationData { name: "Ora d'Aria", lat: 43.7710, lng: 11.2610, customer_type: CustomerType::Restaurant, }, LocationData { name: "Buca Lapi", lat: 43.7720, lng: 11.2535, customer_type: CustomerType::Restaurant, }, LocationData { name: "Il Palagio", lat: 43.7680, lng: 11.2550, customer_type: CustomerType::Restaurant, }, LocationData { name: "Enoteca Pinchiorri", lat: 43.7695, lng: 11.2620, customer_type: CustomerType::Restaurant, }, LocationData { name: "La Giostra", lat: 43.7745, lng: 11.2650, customer_type: CustomerType::Restaurant, }, LocationData { name: "Fishing Lab", lat: 43.7693, lng: 11.2563, customer_type: CustomerType::Restaurant, }, LocationData { name: "Trattoria Cammillo", lat: 43.7665, lng: 11.2520, customer_type: CustomerType::Restaurant, }, LocationData { name: "Palazzo Vecchio", lat: 43.7693, lng: 11.2563, customer_type: CustomerType::Business, }, LocationData { name: "Uffizi Gallery", lat: 43.7677, lng: 11.2553, customer_type: CustomerType::Business, }, LocationData { name: "Gucci Garden", lat: 43.7692, lng: 11.2556, customer_type: CustomerType::Business, }, LocationData { name: "Ferragamo Museum", lat: 43.7700, lng: 11.2530, customer_type: CustomerType::Business, }, LocationData { name: "Ospedale Santa Maria", lat: 43.7830, lng: 11.2690, customer_type: CustomerType::Business, }, LocationData { name: "Universita degli Studi", lat: 43.7765, lng: 11.2555, customer_type: CustomerType::Business, }, LocationData { name: "Palazzo Strozzi", lat: 43.7706, lng: 11.2515, customer_type: CustomerType::Business, }, LocationData { name: "Biblioteca Nazionale", lat: 43.7660, lng: 11.2650, customer_type: CustomerType::Business, }, LocationData { name: "Teatro del Maggio", lat: 43.7780, lng: 11.2470, customer_type: CustomerType::Business, }, LocationData { name: "Palazzo Pitti", lat: 43.7665, lng: 11.2470, customer_type: CustomerType::Business, }, LocationData { name: "Accademia Gallery", lat: 43.7768, lng: 11.2590, customer_type: CustomerType::Business, }, LocationData { name: "Ospedale Meyer", lat: 43.7910, lng: 11.2520, customer_type: CustomerType::Business, }, LocationData { name: "Polo Universitario", lat: 43.7920, lng: 11.2180, customer_type: CustomerType::Business, }, LocationData { name: "Santo Spirito", lat: 43.7665, lng: 11.2470, customer_type: CustomerType::Residential, }, LocationData { name: "San Frediano", lat: 43.7680, lng: 11.2420, customer_type: CustomerType::Residential, }, LocationData { name: "Santa Croce", lat: 43.7688, lng: 11.2620, customer_type: CustomerType::Residential, }, LocationData { name: "San Lorenzo", lat: 43.7755, lng: 11.2540, customer_type: CustomerType::Residential, }, LocationData { name: "San Marco", lat: 43.7768, lng: 11.2590, customer_type: CustomerType::Residential, }, LocationData { name: "Sant'Ambrogio", lat: 43.7688, lng: 11.2620, customer_type: CustomerType::Residential, }, LocationData { name: "Campo di Marte", lat: 43.7820, lng: 11.2820, customer_type: CustomerType::Residential, }, LocationData { name: "Novoli", lat: 43.7880, lng: 11.2220, customer_type: CustomerType::Residential, }, LocationData { name: "Rifredi", lat: 43.7950, lng: 11.2410, customer_type: CustomerType::Residential, }, LocationData { name: "Le Cure", lat: 43.7890, lng: 11.2580, customer_type: CustomerType::Residential, }, LocationData { name: "Careggi", lat: 43.8020, lng: 11.2530, customer_type: CustomerType::Residential, }, LocationData { name: "Peretola", lat: 43.7960, lng: 11.2050, customer_type: CustomerType::Residential, }, LocationData { name: "Isolotto", lat: 43.7620, lng: 11.2200, customer_type: CustomerType::Residential, }, LocationData { name: "Gavinana", lat: 43.7520, lng: 11.2680, customer_type: CustomerType::Residential, }, LocationData { name: "Galluzzo", lat: 43.7400, lng: 11.2480, customer_type: CustomerType::Residential, }, LocationData { name: "Porta Romana", lat: 43.7610, lng: 11.2560, customer_type: CustomerType::Residential, }, LocationData { name: "Bellosguardo", lat: 43.7650, lng: 11.2350, customer_type: CustomerType::Residential, }, LocationData { name: "Arcetri", lat: 43.7500, lng: 11.2530, customer_type: CustomerType::Residential, }, LocationData { name: "Fiesole", lat: 43.8055, lng: 11.2935, customer_type: CustomerType::Residential, }, LocationData { name: "Settignano", lat: 43.7850, lng: 11.3100, customer_type: CustomerType::Residential, }, ];