diff --git a/Databases/add_facilities.py b/Databases/add_facilities.py deleted file mode 100644 index 19b6254..0000000 --- a/Databases/add_facilities.py +++ /dev/null @@ -1,232 +0,0 @@ -import sqlite3 -import random - -# Connect to the SQLite database -conn = sqlite3.connect('Databases/ecobuddy.sqlite') -cursor = conn.cursor() - -# Check if we need to add any new categories -cursor.execute("SELECT id FROM ecoCategories") -existing_categories = [row[0] for row in cursor.fetchall()] - -# Add two new categories -new_categories = [ - (16, "Urban Farms"), - (17, "Rainwater Harvesting Systems") -] - -for category in new_categories: - if category[0] not in existing_categories: - cursor.execute("INSERT INTO ecoCategories (id, name) VALUES (?, ?)", category) - print(f"Added new category: {category[1]}") - -# Get list of user IDs for contributors -cursor.execute("SELECT id FROM ecoUser") -user_ids = [row[0] for row in cursor.fetchall()] - -# Define 10 new ecological facilities in the UK with accurate location data -new_facilities = [ - { - "title": "Community Garden Hackney", - "category": 12, # Pollinator Gardens - "description": "Urban garden with native plants to support local pollinators", - "houseNumber": "45", - "streetName": "Dalston Lane", - "county": "Greater London", - "town": "London", - "postcode": "E8 3AH", - "lng": -0.0612, - "lat": 51.5476, - "contributor": random.choice(user_ids), - "status_comments": [ - "Recently expanded with new wildflower section", - "Volunteer days every Saturday" - ] - }, - { - "title": "Rooftop Solar Farm", - "category": 8, # Green Roofs - "description": "Combined green roof and solar panel installation on commercial building", - "houseNumber": "120", - "streetName": "Deansgate", - "county": "Greater Manchester", - "town": "Manchester", - "postcode": "M3 2QJ", - "lng": -2.2484, - "lat": 53.4808, - "contributor": random.choice(user_ids), - "status_comments": [ - "Generates power for the entire building" - ] - }, - { - "title": "Edinburgh Tool Library", - "category": 15, # Community Tool Libraries - "description": "Borrow tools instead of buying them - reducing waste and consumption", - "houseNumber": "25", - "streetName": "Leith Walk", - "county": "Edinburgh", - "town": "Edinburgh", - "postcode": "EH6 8LN", - "lng": -3.1752, - "lat": 55.9677, - "contributor": random.choice(user_ids), - "status_comments": [] - }, - { - "title": "Cardiff Bay Water Refill Station", - "category": 9, # Public Water Refill Stations - "description": "Free water refill station to reduce plastic bottle usage", - "houseNumber": "3", - "streetName": "Mermaid Quay", - "county": "Cardiff", - "town": "Cardiff", - "postcode": "CF10 5BZ", - "lng": -3.1644, - "lat": 51.4644, - "contributor": random.choice(user_ids), - "status_comments": [ - "Recently cleaned and maintained", - "High usage during summer months" - ] - }, - { - "title": "Bristol Urban Farm", - "category": 16, # Urban Farms (new category) - "description": "Community-run urban farm providing local produce and education", - "houseNumber": "18", - "streetName": "Stapleton Road", - "county": "Bristol", - "town": "Bristol", - "postcode": "BS5 0RA", - "lng": -2.5677, - "lat": 51.4635, - "contributor": random.choice(user_ids), - "status_comments": [ - "Open for volunteers Tuesday-Sunday" - ] - }, - { - "title": "Newcastle Rainwater Collection System", - "category": 17, # Rainwater Harvesting Systems (new category) - "description": "Public demonstration of rainwater harvesting for garden irrigation", - "houseNumber": "55", - "streetName": "Northumberland Street", - "county": "Tyne and Wear", - "town": "Newcastle upon Tyne", - "postcode": "NE1 7DH", - "lng": -1.6178, - "lat": 54.9783, - "contributor": random.choice(user_ids), - "status_comments": [] - }, - { - "title": "Brighton Beach Solar Bench", - "category": 7, # Solar-Powered Benches - "description": "Solar-powered bench with USB charging ports and WiFi", - "houseNumber": "", - "streetName": "Kings Road", - "county": "East Sussex", - "town": "Brighton", - "postcode": "BN1 2FN", - "lng": -0.1426, - "lat": 50.8214, - "contributor": random.choice(user_ids), - "status_comments": [ - "Popular spot for tourists", - "One USB port currently not working" - ] - }, - { - "title": "Leeds Community Compost Hub", - "category": 6, # Community Compost Bins - "description": "Large-scale community composting facility for local residents", - "houseNumber": "78", - "streetName": "Woodhouse Lane", - "county": "West Yorkshire", - "town": "Leeds", - "postcode": "LS2 9JT", - "lng": -1.5491, - "lat": 53.8067, - "contributor": random.choice(user_ids), - "status_comments": [ - "Recently expanded capacity" - ] - }, - { - "title": "Glasgow EV Charging Hub", - "category": 4, # Public EV Charging Stations - "description": "Multi-vehicle EV charging station with fast chargers", - "houseNumber": "42", - "streetName": "Buchanan Street", - "county": "Glasgow", - "town": "Glasgow", - "postcode": "G1 3JX", - "lng": -4.2526, - "lat": 55.8621, - "contributor": random.choice(user_ids), - "status_comments": [ - "6 charging points available", - "24/7 access" - ] - }, - { - "title": "Oxford E-Waste Collection Center", - "category": 13, # E-Waste Collection Bins - "description": "Dedicated facility for proper disposal and recycling of electronic waste", - "houseNumber": "15", - "streetName": "St Aldate's", - "county": "Oxfordshire", - "town": "Oxford", - "postcode": "OX1 1BX", - "lng": -1.2577, - "lat": 51.7520, - "contributor": random.choice(user_ids), - "status_comments": [] - } -] - -# Insert facilities into the database -for facility in new_facilities: - cursor.execute(""" - INSERT INTO ecoFacilities - (title, category, description, houseNumber, streetName, county, town, postcode, lng, lat, contributor) - VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) - """, ( - facility["title"], - facility["category"], - facility["description"], - facility["houseNumber"], - facility["streetName"], - facility["county"], - facility["town"], - facility["postcode"], - facility["lng"], - facility["lat"], - facility["contributor"] - )) - - # Get the ID of the inserted facility - facility_id = cursor.lastrowid - - # Add status comments if any - for comment in facility["status_comments"]: - cursor.execute(""" - INSERT INTO ecoFacilityStatus (facilityId, statusComment) - VALUES (?, ?) - """, (facility_id, comment)) - - print(f"Added facility: {facility['title']} in {facility['town']}") - -# Commit the changes and close the connection -conn.commit() -conn.close() - -print("\nSuccessfully added 10 new ecological facilities to the database.") - -Using the test data in the ecoCategories, ecoFacilities, and ecoFacilityStatus, please create 10 new ecological facilities with the following constraints: -Must be located in the United Kingdom (Names of areas, towns, cities, counties) -Postcode, Latitude and Longitude must be fairly accurate to the location you have generated for the area. -More categories may be made, it is up to you, but make sure foreign keys are respected. -Contributor may be of any user in the database. -Not all facilities must have statusComments, however facilities may have multiple statusComments. \ No newline at end of file diff --git a/Databases/ecobuddynew.sqlite b/Databases/ecobuddynew.sqlite deleted file mode 100755 index 10001a3..0000000 Binary files a/Databases/ecobuddynew.sqlite and /dev/null differ diff --git a/Databases/ecobuddyupdated.sqlite b/Databases/ecobuddyupdated.sqlite deleted file mode 100644 index 7aa6f62..0000000 Binary files a/Databases/ecobuddyupdated.sqlite and /dev/null differ diff --git a/Databases/facility_generation_log.txt b/Databases/facility_generation_log.txt deleted file mode 100644 index 0d9622c..0000000 --- a/Databases/facility_generation_log.txt +++ /dev/null @@ -1,66 +0,0 @@ -Starting facility generation at 2025-03-20 12:34:00.832910 -Target: 1000 new facilities - -Generating facilities... -Generated 100 facilities so far... -Generated 200 facilities so far... -Generated 300 facilities so far... -Generated 400 facilities so far... -Generated 500 facilities so far... -Generated 600 facilities so far... -Generated 700 facilities so far... -Generated 800 facilities so far... -Generated 900 facilities so far... -Generated 1000 facilities so far... - -Inserting facilities into database... -Inserted batch 1/20 -Inserted batch 2/20 -Inserted batch 3/20 -Inserted batch 4/20 -Inserted batch 5/20 -Inserted batch 6/20 -Inserted batch 7/20 -Inserted batch 8/20 -Inserted batch 9/20 -Inserted batch 10/20 -Inserted batch 11/20 -Inserted batch 12/20 -Inserted batch 13/20 -Inserted batch 14/20 -Inserted batch 15/20 -Inserted batch 16/20 -Inserted batch 17/20 -Inserted batch 18/20 -Inserted batch 19/20 -Inserted batch 20/20 - -Inserting status comments... -Inserted comment batch 1/23 -Inserted comment batch 2/23 -Inserted comment batch 3/23 -Inserted comment batch 4/23 -Inserted comment batch 5/23 -Inserted comment batch 6/23 -Inserted comment batch 7/23 -Inserted comment batch 8/23 -Inserted comment batch 9/23 -Inserted comment batch 10/23 -Inserted comment batch 11/23 -Inserted comment batch 12/23 -Inserted comment batch 13/23 -Inserted comment batch 14/23 -Inserted comment batch 15/23 -Inserted comment batch 16/23 -Inserted comment batch 17/23 -Inserted comment batch 18/23 -Inserted comment batch 19/23 -Inserted comment batch 20/23 -Inserted comment batch 21/23 -Inserted comment batch 22/23 -Inserted comment batch 23/23 - -Generation complete at 2025-03-20 12:34:00.860477 -Total facilities in database: 12025 -Total status comments in database: 13385 -Generated facilities saved to generated_facilities.csv for reference \ No newline at end of file diff --git a/Databases/generate_bulk_facilities.py b/Databases/generate_bulk_facilities.py deleted file mode 100644 index 2f6563b..0000000 --- a/Databases/generate_bulk_facilities.py +++ /dev/null @@ -1,568 +0,0 @@ -import sqlite3 -import random -import csv -import os -from datetime import datetime - -# Connect to the SQLite database -conn = sqlite3.connect('ecobuddy.sqlite') -cursor = conn.cursor() - -# Get current max facility ID -cursor.execute("SELECT MAX(id) FROM ecoFacilities") -max_facility_id = cursor.fetchone()[0] or 0 - -# Get list of user IDs for contributors -cursor.execute("SELECT id FROM ecoUser") -user_ids = [row[0] for row in cursor.fetchall()] - -# Get list of categories -cursor.execute("SELECT id, name FROM ecoCategories") -categories = {row[0]: row[1] for row in cursor.fetchall()} - -# UK Cities and Towns with their counties and approximate coordinates -uk_locations = [ - # Format: Town/City, County, Latitude, Longitude, Postcode Area - ("London", "Greater London", 51.5074, -0.1278, "EC"), - ("Birmingham", "West Midlands", 52.4862, -1.8904, "B"), - ("Manchester", "Greater Manchester", 53.4808, -2.2426, "M"), - ("Glasgow", "Glasgow", 55.8642, -4.2518, "G"), - ("Liverpool", "Merseyside", 53.4084, -2.9916, "L"), - ("Bristol", "Bristol", 51.4545, -2.5879, "BS"), - ("Edinburgh", "Edinburgh", 55.9533, -3.1883, "EH"), - ("Leeds", "West Yorkshire", 53.8008, -1.5491, "LS"), - ("Sheffield", "South Yorkshire", 53.3811, -1.4701, "S"), - ("Newcastle upon Tyne", "Tyne and Wear", 54.9783, -1.6178, "NE"), - ("Nottingham", "Nottinghamshire", 52.9548, -1.1581, "NG"), - ("Cardiff", "Cardiff", 51.4816, -3.1791, "CF"), - ("Belfast", "Belfast", 54.5973, -5.9301, "BT"), - ("Brighton", "East Sussex", 50.8225, -0.1372, "BN"), - ("Leicester", "Leicestershire", 52.6369, -1.1398, "LE"), - ("Aberdeen", "Aberdeen", 57.1497, -2.0943, "AB"), - ("Portsmouth", "Hampshire", 50.8198, -1.0880, "PO"), - ("York", "North Yorkshire", 53.9599, -1.0873, "YO"), - ("Swansea", "Swansea", 51.6214, -3.9436, "SA"), - ("Oxford", "Oxfordshire", 51.7520, -1.2577, "OX"), - ("Cambridge", "Cambridgeshire", 52.2053, 0.1218, "CB"), - ("Exeter", "Devon", 50.7184, -3.5339, "EX"), - ("Bath", "Somerset", 51.3751, -2.3617, "BA"), - ("Reading", "Berkshire", 51.4543, -0.9781, "RG"), - ("Preston", "Lancashire", 53.7632, -2.7031, "PR"), - ("Coventry", "West Midlands", 52.4068, -1.5197, "CV"), - ("Hull", "East Yorkshire", 53.7676, -0.3274, "HU"), - ("Stoke-on-Trent", "Staffordshire", 53.0027, -2.1794, "ST"), - ("Wolverhampton", "West Midlands", 52.5870, -2.1288, "WV"), - ("Plymouth", "Devon", 50.3755, -4.1427, "PL"), - ("Derby", "Derbyshire", 52.9225, -1.4746, "DE"), - ("Sunderland", "Tyne and Wear", 54.9069, -1.3830, "SR"), - ("Southampton", "Hampshire", 50.9097, -1.4044, "SO"), - ("Norwich", "Norfolk", 52.6309, 1.2974, "NR"), - ("Bournemouth", "Dorset", 50.7192, -1.8808, "BH"), - ("Middlesbrough", "North Yorkshire", 54.5742, -1.2350, "TS"), - ("Blackpool", "Lancashire", 53.8175, -3.0357, "FY"), - ("Bolton", "Greater Manchester", 53.5785, -2.4299, "BL"), - ("Ipswich", "Suffolk", 52.0567, 1.1482, "IP"), - ("Telford", "Shropshire", 52.6784, -2.4453, "TF"), - ("Dundee", "Dundee", 56.4620, -2.9707, "DD"), - ("Peterborough", "Cambridgeshire", 52.5695, -0.2405, "PE"), - ("Huddersfield", "West Yorkshire", 53.6458, -1.7850, "HD"), - ("Luton", "Bedfordshire", 51.8787, -0.4200, "LU"), - ("Warrington", "Cheshire", 53.3900, -2.5970, "WA"), - ("Southend-on-Sea", "Essex", 51.5459, 0.7077, "SS"), - ("Swindon", "Wiltshire", 51.5557, -1.7797, "SN"), - ("Slough", "Berkshire", 51.5105, -0.5950, "SL"), - ("Watford", "Hertfordshire", 51.6565, -0.3903, "WD"), - ("Carlisle", "Cumbria", 54.8952, -2.9335, "CA") -] - -# Street name components for generating realistic street names -street_prefixes = ["High", "Main", "Church", "Park", "Mill", "Station", "London", "Victoria", "Queen", "King", "North", "South", "East", "West", "New", "Old", "Castle", "Bridge", "Green", "Market", "School", "Manor", "Abbey", "Priory", "Cathedral", "University", "College", "Hospital", "Railway", "Canal", "River", "Forest", "Wood", "Hill", "Mount", "Valley", "Meadow", "Field", "Farm", "Garden", "Orchard", "Vineyard", "Grange", "Lodge", "Court", "Hall", "House", "Cottage", "Barn", "Mill", "Windmill", "Watermill", "Forge", "Quarry", "Mine", "Pit", "Well", "Spring", "Brook", "Stream", "Lake", "Pond", "Pool", "Reservoir", "Bay", "Cove", "Beach", "Cliff", "Rock", "Stone", "Granite", "Marble", "Slate", "Clay", "Sand", "Gravel", "Chalk", "Flint", "Coal", "Iron", "Steel", "Copper", "Silver", "Gold", "Tin", "Lead", "Zinc", "Brass", "Bronze", "Pewter", "Nickel", "Cobalt", "Chromium", "Titanium", "Aluminium", "Silicon", "Carbon", "Oxygen", "Hydrogen", "Nitrogen", "Helium", "Neon", "Argon", "Krypton", "Xenon", "Radon"] -street_suffixes = ["Street", "Road", "Lane", "Avenue", "Drive", "Boulevard", "Way", "Place", "Square", "Court", "Terrace", "Close", "Crescent", "Gardens", "Grove", "Mews", "Alley", "Walk", "Path", "Trail", "Hill", "Rise", "View", "Heights", "Park", "Green", "Meadow", "Field", "Common", "Heath", "Moor", "Down", "Fell", "Pike", "Tor", "Crag", "Cliff", "Ridge", "Edge", "Top", "Bottom", "Side", "End", "Corner", "Junction", "Cross", "Gate", "Bridge", "Ford", "Ferry", "Wharf", "Quay", "Dock", "Harbor", "Port", "Bay", "Cove", "Beach", "Shore", "Bank", "Strand", "Esplanade", "Parade", "Promenade", "Embankment", "Causeway", "Viaduct", "Tunnel", "Passage", "Arcade", "Gallery", "Mall", "Market", "Bazaar", "Fair", "Exchange", "Mart", "Emporium", "Center", "Circle", "Oval", "Triangle", "Pentagon", "Hexagon", "Octagon", "Circus", "Ring", "Loop", "Bend", "Curve", "Turn", "Twist", "Spiral", "Coil", "Helix", "Maze", "Labyrinth"] - -# Facility descriptions by category -category_descriptions = { - 1: [ # Recycling Bins - "Public recycling point for paper, glass, plastic, and metal", - "Community recycling station with separate bins for different materials", - "Recycling center with facilities for household waste separation", - "Public access recycling bins for common household recyclables", - "Multi-material recycling point with clear instructions for proper sorting" - ], - 2: [ # e-Scooters - "Dockless e-scooter rental station with multiple vehicles available", - "E-scooter parking and charging zone for public use", - "Designated e-scooter pickup and drop-off point", - "E-scooter sharing station with app-based rental system", - "Electric scooter hub with maintenance and charging facilities" - ], - 3: [ # Bike Share Stations - "Public bicycle sharing station with multiple bikes available", - "Bike rental hub with secure docking stations", - "Community bike share point with regular and electric bicycles", - "Cycle hire station with self-service rental system", - "Bike sharing facility with maintenance and repair services" - ], - 4: [ # Public EV Charging Stations - "Electric vehicle charging point with multiple connectors", - "Fast-charging station for electric vehicles", - "Public EV charging facility with covered waiting area", - "Multi-vehicle electric charging hub with different power options", - "EV charging station with renewable energy source" - ], - 5: [ # Battery Recycling Points - "Dedicated collection point for used batteries of all sizes", - "Battery recycling bin with separate compartments for different types", - "Safe disposal facility for household and small electronics batteries", - "Battery collection point with educational information about recycling", - "Secure battery recycling station to prevent environmental contamination" - ], - 6: [ # Community Compost Bins - "Neighborhood composting facility for food and garden waste", - "Community compost bins with educational signage", - "Public composting station with separate sections for different stages", - "Shared compost facility managed by local volunteers", - "Urban composting hub turning food waste into valuable soil" - ], - 7: [ # Solar-Powered Benches - "Solar bench with USB charging ports and WiFi connectivity", - "Public seating with integrated solar panels and device charging", - "Smart bench powered by solar energy with digital information display", - "Solar-powered rest area with phone charging capabilities", - "Eco-friendly bench with solar panels and LED lighting" - ], - 8: [ # Green Roofs - "Building with extensive green roof system visible from public areas", - "Accessible green roof garden with native plant species", - "Public building showcasing sustainable rooftop vegetation", - "Green roof installation with educational tours available", - "Biodiverse roof garden with insect habitats and rainwater collection" - ], - 9: [ # Public Water Refill Stations - "Free water refill station to reduce plastic bottle usage", - "Public drinking fountain with bottle filling capability", - "Water refill point with filtered water options", - "Accessible water station encouraging reusable bottles", - "Community water dispenser with usage counter display" - ], - 10: [ # Waste Oil Collection Points - "Cooking oil recycling point for residential use", - "Used oil collection facility with secure containers", - "Waste oil drop-off point for conversion to biodiesel", - "Community oil recycling station with spill prevention measures", - "Cooking oil collection facility with educational information" - ], - 11: [ # Book Swap Stations - "Community book exchange point with weatherproof shelving", - "Public book sharing library in repurposed phone box", - "Free book swap station encouraging reading and reuse", - "Neighborhood book exchange with rotating collection", - "Little free library with take-one-leave-one system" - ], - 12: [ # Pollinator Gardens - "Public garden designed to support bees and butterflies", - "Pollinator-friendly planting area with native flowering species", - "Community garden dedicated to supporting local insect populations", - "Bee-friendly garden with educational signage about pollinators", - "Urban wildflower meadow supporting biodiversity" - ], - 13: [ # E-Waste Collection Bins - "Secure collection point for electronic waste and small appliances", - "E-waste recycling bin for phones, computers, and small electronics", - "Electronic waste drop-off point with data security assurance", - "Community e-waste collection facility with regular collection schedule", - "Dedicated bin for responsible disposal of electronic items" - ], - 14: [ # Clothing Donation Bins - "Textile recycling point for clothes and household fabrics", - "Clothing donation bin supporting local charities", - "Secure collection point for reusable clothing and textiles", - "Community clothing recycling bin with regular collection", - "Textile donation point preventing landfill waste" - ], - 15: [ # Community Tool Libraries - "Tool lending library for community use and sharing", - "Shared equipment facility reducing need for individual ownership", - "Community resource center for borrowing tools and equipment", - "Tool sharing hub with membership system and workshops", - "Public tool library with wide range of equipment available" - ], - 16: [ # Urban Farms - "Community-run urban farm providing local produce", - "City farming project with volunteer opportunities", - "Urban agriculture site with educational programs", - "Local food growing initiative in repurposed urban space", - "Community garden with vegetable plots and fruit trees" - ], - 17: [ # Rainwater Harvesting Systems - "Public demonstration of rainwater collection for irrigation", - "Rainwater harvesting system with educational displays", - "Community rainwater collection facility for shared gardens", - "Visible rainwater storage and filtration system", - "Urban water conservation project with storage tanks" - ] -} - -# Status comments by category -status_comments = { - 1: [ # Recycling Bins - "Recently emptied and cleaned", - "Some bins are nearly full", - "All bins in good condition", - "Paper bin is currently full", - "New signage installed to improve sorting" - ], - 2: [ # e-Scooters - "All scooters fully charged", - "Three scooters currently available", - "Maintenance scheduled for next week", - "New scooters added to this location", - "High usage area, scooters frequently unavailable" - ], - 3: [ # Bike Share Stations - "All docking stations operational", - "Five bikes currently available", - "Some bikes need maintenance", - "New electric bikes added", - "Popular station with high turnover" - ], - 4: [ # Public EV Charging Stations - "All charging points operational", - "Fast charger currently under repair", - "Peak usage during business hours", - "New charging point added last month", - "Payment system recently upgraded" - ], - 5: [ # Battery Recycling Points - "Collection bin recently emptied", - "Secure container in good condition", - "New signage explaining battery types", - "High usage from local businesses", - "Additional capacity added" - ], - 6: [ # Community Compost Bins - "Compost ready for collection", - "Needs more brown material", - "Recently turned and aerated", - "New bins added to increase capacity", - "Volunteer day scheduled for maintenance" - ], - 7: [ # Solar-Powered Benches - "All charging ports working", - "Solar panels recently cleaned", - "WiFi currently unavailable", - "LED lights need replacement", - "High usage during lunch hours" - ], - 8: [ # Green Roofs - "Plants thriving after recent rain", - "Maintenance scheduled next month", - "New species added to increase biodiversity", - "Irrigation system working well", - "Open for public tours on weekends" - ], - 9: [ # Public Water Refill Stations - "Water quality tested weekly", - "Fountain cleaned daily", - "Bottle filler counter shows high usage", - "New filter installed recently", - "Popular during summer months" - ], - 10: [ # Waste Oil Collection Points - "Container recently emptied", - "Secure lid in good condition", - "New funnel system installed", - "Collection schedule posted", - "Area kept clean and tidy" - ], - 11: [ # Book Swap Stations - "Good selection currently available", - "Children's books needed", - "Recently reorganized by volunteers", - "Weatherproof cover working well", - "High turnover of popular titles" - ], - 12: [ # Pollinator Gardens - "Plants in full bloom", - "Many bees and butterflies observed", - "New native species planted", - "Volunteer day for maintenance scheduled", - "Educational tours available" - ], - 13: [ # E-Waste Collection Bins - "Bin recently emptied", - "Secure deposit system working", - "Collection schedule posted", - "New items accepted now include small appliances", - "Data destruction guaranteed" - ], - 14: [ # Clothing Donation Bins - "Bin recently emptied", - "Clean and well-maintained", - "High quality donations appreciated", - "Winter clothing especially needed", - "Please bag items before donating" - ], - 15: [ # Community Tool Libraries - "New inventory system implemented", - "Popular tools often unavailable on weekends", - "Tool maintenance workshop scheduled", - "New donations recently added to collection", - "Extended hours during summer" - ], - 16: [ # Urban Farms - "Seasonal produce currently available", - "Volunteer opportunities posted", - "Educational workshops on weekends", - "New growing area being developed", - "Composting system recently expanded" - ], - 17: [ # Rainwater Harvesting Systems - "System working efficiently after recent rainfall", - "Water quality monitoring in place", - "Educational tours available by appointment", - "System capacity recently expanded", - "Used for irrigation of nearby community garden" - ] -} - -# Generate a realistic UK postcode based on area code -def generate_postcode(area_code): - # Format: Area + District + Space + Sector + Unit - # e.g., M1 1AA or SW1A 1AA - district = random.randint(1, 99) - sector = random.randint(1, 9) - unit = ''.join(random.choices('ABCDEFGHJKLMNPQRSTUVWXYZ', k=2)) # Excluding I and O as they're not used - - if len(area_code) == 1: - return f"{area_code}{district} {sector}{unit}" - else: - return f"{area_code}{district} {sector}{unit}" - -# Generate a realistic street name -def generate_street_name(): - prefix = random.choice(street_prefixes) - suffix = random.choice(street_suffixes) - return f"{prefix} {suffix}" - -# Generate a realistic house number -def generate_house_number(): - # 80% chance of a simple number, 20% chance of a letter suffix or unit - if random.random() < 0.8: - return str(random.randint(1, 200)) - else: - options = [ - f"{random.randint(1, 200)}{random.choice('ABCDEFG')}", # e.g., 42A - f"Unit {random.randint(1, 20)}", - f"Flat {random.randint(1, 50)}", - f"Suite {random.randint(1, 10)}" - ] - return random.choice(options) - -# Add small random variation to coordinates to avoid facilities at exact same location -def vary_coordinates(lat, lng): - # Add variation of up to ~500 meters - lat_variation = random.uniform(-0.004, 0.004) - lng_variation = random.uniform(-0.006, 0.006) - return lat + lat_variation, lng + lng_variation - -# Generate facility title based on category and location -def generate_title(category_name, location_name, street_name): - templates = [ - f"{location_name} {category_name}", - f"{category_name} at {street_name}", - f"{street_name} {category_name}", - f"Community {category_name} {location_name}", - f"{location_name} Central {category_name}", - f"{location_name} {street_name} {category_name}" - ] - return random.choice(templates) - -# Create a log file to track progress -log_file = open("facility_generation_log.txt", "w") -log_file.write(f"Starting facility generation at {datetime.now()}\n") -log_file.write(f"Target: 1000 new facilities\n\n") - -# Create a CSV file to store all generated facilities for reference -csv_file = open("generated_facilities.csv", "w", newline='') -csv_writer = csv.writer(csv_file) -csv_writer.writerow(["ID", "Title", "Category", "Description", "Address", "Postcode", "Latitude", "Longitude", "Contributor"]) - -# Prepare for batch insertion to improve performance -facilities_to_insert = [] -status_comments_to_insert = [] - -# Track unique titles to avoid duplicates -existing_titles = set() -cursor.execute("SELECT title FROM ecoFacilities") -for row in cursor.fetchall(): - existing_titles.add(row[0]) - -# Generate 1000 facilities -num_facilities = 1000 -facilities_created = 0 - -log_file.write("Generating facilities...\n") - -while facilities_created < num_facilities: - # Select a random location - location = random.choice(uk_locations) - location_name, county, base_lat, base_lng, postcode_area = location - - # Generate 5-25 facilities per location to create clusters - facilities_per_location = min(random.randint(5, 25), num_facilities - facilities_created) - - for _ in range(facilities_per_location): - # Select a random category - category_id = random.choice(list(categories.keys())) - category_name = categories[category_id] - - # Generate address components - street_name = generate_street_name() - house_number = generate_house_number() - lat, lng = vary_coordinates(base_lat, base_lng) - postcode = generate_postcode(postcode_area) - - # Generate title - title_base = generate_title(category_name, location_name, street_name) - title = title_base - - # Ensure title is unique by adding a suffix if needed - suffix = 2 - while title in existing_titles: - title = f"{title_base} {suffix}" - suffix += 1 - - existing_titles.add(title) - - # Select description - description = random.choice(category_descriptions[category_id]) - - # Select contributor - contributor_id = random.choice(user_ids) - - # Add to batch for insertion - facilities_to_insert.append(( - title, - category_id, - description, - house_number, - street_name, - county, - location_name, - postcode, - lng, - lat, - contributor_id - )) - - # Log progress periodically - facilities_created += 1 - if facilities_created % 100 == 0: - log_message = f"Generated {facilities_created} facilities so far..." - print(log_message) - log_file.write(log_message + "\n") - - if facilities_created >= num_facilities: - break - -# Insert facilities in batches for better performance -log_file.write("\nInserting facilities into database...\n") -print("Inserting facilities into database...") - -batch_size = 50 -for i in range(0, len(facilities_to_insert), batch_size): - batch = facilities_to_insert[i:i+batch_size] - cursor.executemany(""" - INSERT INTO ecoFacilities - (title, category, description, houseNumber, streetName, county, town, postcode, lng, lat, contributor) - VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) - """, batch) - - # Get the IDs of the inserted facilities - cursor.execute("SELECT last_insert_rowid()") - last_id = cursor.fetchone()[0] - first_id_in_batch = last_id - len(batch) + 1 - - # Generate status comments for each facility - for j, facility in enumerate(batch): - facility_id = first_id_in_batch + j - category_id = facility[1] # Category ID is the second element - - # Write to CSV for reference - csv_writer.writerow([ - facility_id, - facility[0], # title - categories[category_id], # category name - facility[2], # description - f"{facility[3]} {facility[4]}, {facility[6]}, {facility[5]}", # address - facility[7], # postcode - facility[9], # lat - facility[8], # lng - facility[10] # contributor - ]) - - # Decide how many status comments to add (0-3) - num_comments = random.choices([0, 1, 2, 3], weights=[30, 40, 20, 10])[0] - - if num_comments > 0: - # Get relevant comments for this category - relevant_comments = status_comments.get(category_id, status_comments[1]) # Default to recycling bin comments - - # Select random comments without repetition - selected_comments = random.sample(relevant_comments, min(num_comments, len(relevant_comments))) - - # Add to batch for insertion - for comment in selected_comments: - status_comments_to_insert.append((facility_id, comment)) - - # Commit after each batch - conn.commit() - - log_message = f"Inserted batch {i//batch_size + 1}/{(len(facilities_to_insert)-1)//batch_size + 1}" - print(log_message) - log_file.write(log_message + "\n") - -# Insert status comments in batches -if status_comments_to_insert: - log_file.write("\nInserting status comments...\n") - print("Inserting status comments...") - - for i in range(0, len(status_comments_to_insert), batch_size): - batch = status_comments_to_insert[i:i+batch_size] - cursor.executemany(""" - INSERT INTO ecoFacilityStatus (facilityId, statusComment) - VALUES (?, ?) - """, batch) - conn.commit() - - log_message = f"Inserted comment batch {i//batch_size + 1}/{(len(status_comments_to_insert)-1)//batch_size + 1}" - print(log_message) - log_file.write(log_message + "\n") - -# Get final counts -cursor.execute("SELECT COUNT(*) FROM ecoFacilities") -total_facilities = cursor.fetchone()[0] - -cursor.execute("SELECT COUNT(*) FROM ecoFacilityStatus") -total_comments = cursor.fetchone()[0] - -# Log completion -completion_message = f"\nGeneration complete at {datetime.now()}" -print(completion_message) -log_file.write(completion_message + "\n") - -summary = f"Total facilities in database: {total_facilities}\n" -summary += f"Total status comments in database: {total_comments}\n" -summary += f"Generated facilities saved to generated_facilities.csv for reference" - -print(summary) -log_file.write(summary) - -# Close connections -log_file.close() -csv_file.close() -conn.commit() -conn.close() - -print("\nSuccessfully added 1000 new ecological facilities to the database.") -print("A detailed log and CSV export have been created for reference.") \ No newline at end of file diff --git a/Databases/generate_users.php b/Databases/generate_users.php deleted file mode 100644 index 4922220..0000000 --- a/Databases/generate_users.php +++ /dev/null @@ -1,79 +0,0 @@ -setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); - -// List of real first names for usernames -$firstNames = [ - 'James', 'John', 'Robert', 'Michael', 'William', 'David', 'Richard', 'Joseph', 'Thomas', 'Charles', - 'Christopher', 'Daniel', 'Matthew', 'Anthony', 'Mark', 'Donald', 'Steven', 'Paul', 'Andrew', 'Joshua', - 'Kenneth', 'Kevin', 'Brian', 'George', 'Timothy', 'Ronald', 'Edward', 'Jason', 'Jeffrey', 'Ryan', - 'Jacob', 'Gary', 'Nicholas', 'Eric', 'Jonathan', 'Stephen', 'Larry', 'Justin', 'Scott', 'Brandon', - 'Benjamin', 'Samuel', 'Gregory', 'Alexander', 'Frank', 'Patrick', 'Raymond', 'Jack', 'Dennis', 'Jerry', - 'Tyler', 'Aaron', 'Jose', 'Adam', 'Nathan', 'Henry', 'Douglas', 'Zachary', 'Peter', 'Kyle', - 'Ethan', 'Walter', 'Noah', 'Jeremy', 'Christian', 'Keith', 'Roger', 'Terry', 'Gerald', 'Harold', - 'Sean', 'Austin', 'Carl', 'Arthur', 'Lawrence', 'Dylan', 'Jesse', 'Jordan', 'Bryan', 'Billy', - 'Joe', 'Bruce', 'Gabriel', 'Logan', 'Albert', 'Willie', 'Alan', 'Juan', 'Wayne', 'Elijah', - 'Randy', 'Roy', 'Vincent', 'Ralph', 'Eugene', 'Russell', 'Bobby', 'Mason', 'Philip', 'Louis' -]; - -// List of common words for password generation -$words = [ - 'Apple', 'Banana', 'Cherry', 'Dragon', 'Eagle', 'Forest', 'Garden', 'Harbor', 'Island', 'Jungle', - 'Kingdom', 'Lemon', 'Mountain', 'Nature', 'Ocean', 'Planet', 'Queen', 'River', 'Summer', 'Tiger', - 'Universe', 'Volcano', 'Winter', 'Yellow', 'Zebra', 'Castle', 'Diamond', 'Emerald', 'Flower', 'Galaxy', - 'Horizon', 'Iceberg', 'Journey', 'Knight', 'Legend', 'Meadow', 'Nebula', 'Oasis', 'Palace', 'Quasar', - 'Rainbow', 'Sapphire', 'Thunder', 'Unicorn', 'Victory', 'Whisper', 'Xylophone', 'Yacht', 'Zephyr', 'Autumn', - 'Breeze', 'Cascade', 'Dolphin', 'Eclipse', 'Falcon', 'Glacier', 'Harmony', 'Infinity', 'Jasmine', 'Kaleidoscope', - 'Lighthouse', 'Mirage', 'Nightfall', 'Orchard', 'Phoenix', 'Quicksilver', 'Radiance', 'Serenity', 'Twilight', 'Umbrella' -]; - -// Check if we already have users with these names -$existingUsers = []; -$stmt = $db->query("SELECT username FROM ecoUser"); -while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) { - $existingUsers[] = $row['username']; -} - -// Prepare the SQL statement for inserting users -$insertStmt = $db->prepare("INSERT INTO ecoUser (username, password, userType) VALUES (?, ?, ?)"); - -// Create a file to store usernames and passwords -$file = fopen("user_credentials.txt", "w"); -fwrite($file, "Username,Password\n"); - -// Generate 50 users -$usersAdded = 0; -$usedNames = []; -shuffle($firstNames); - -foreach ($firstNames as $name) { - if ($usersAdded >= 50) break; - - // Skip if the name is already in the database - if (in_array($name, $existingUsers) || in_array($name, $usedNames)) { - continue; - } - - // Generate password in format (Word)(Word)(Word)(Digit) - $password = $words[array_rand($words)] . $words[array_rand($words)] . $words[array_rand($words)] . rand(0, 9); - - // Hash the password using SHA-256 - $hashedPassword = hash('sha256', $password); - - // Insert the user into the database (userType 2 is for standard users) - $insertStmt->execute([$name, $hashedPassword, 2]); - - // Write the credentials to the file - fwrite($file, "$name,$password\n"); - - $usedNames[] = $name; - $usersAdded++; - - echo "Added user: $name\n"; -} - -fclose($file); - -echo "\nSuccessfully added $usersAdded users to the database.\n"; -echo "Usernames and passwords have been saved to user_credentials.txt\n"; \ No newline at end of file diff --git a/Databases/generate_users.py b/Databases/generate_users.py deleted file mode 100644 index e3577cd..0000000 --- a/Databases/generate_users.py +++ /dev/null @@ -1,79 +0,0 @@ -import sqlite3 -import random -import hashlib -import os - -# Connect to the SQLite database -conn = sqlite3.connect('Databases/ecobuddy.sqlite') -cursor = conn.cursor() - -# List of real first names for usernames -first_names = [ - 'James', 'John', 'Robert', 'Michael', 'William', 'David', 'Richard', 'Joseph', 'Thomas', 'Charles', - 'Christopher', 'Daniel', 'Matthew', 'Anthony', 'Mark', 'Donald', 'Steven', 'Paul', 'Andrew', 'Joshua', - 'Kenneth', 'Kevin', 'Brian', 'George', 'Timothy', 'Ronald', 'Edward', 'Jason', 'Jeffrey', 'Ryan', - 'Jacob', 'Gary', 'Nicholas', 'Eric', 'Jonathan', 'Stephen', 'Larry', 'Justin', 'Scott', 'Brandon', - 'Benjamin', 'Samuel', 'Gregory', 'Alexander', 'Frank', 'Patrick', 'Raymond', 'Jack', 'Dennis', 'Jerry', - 'Tyler', 'Aaron', 'Jose', 'Adam', 'Nathan', 'Henry', 'Douglas', 'Zachary', 'Peter', 'Kyle', - 'Ethan', 'Walter', 'Noah', 'Jeremy', 'Christian', 'Keith', 'Roger', 'Terry', 'Gerald', 'Harold', - 'Sean', 'Austin', 'Carl', 'Arthur', 'Lawrence', 'Dylan', 'Jesse', 'Jordan', 'Bryan', 'Billy', - 'Joe', 'Bruce', 'Gabriel', 'Logan', 'Albert', 'Willie', 'Alan', 'Juan', 'Wayne', 'Elijah', - 'Randy', 'Roy', 'Vincent', 'Ralph', 'Eugene', 'Russell', 'Bobby', 'Mason', 'Philip', 'Louis' -] - -# List of common words for password generation -words = [ - 'Apple', 'Banana', 'Cherry', 'Dragon', 'Eagle', 'Forest', 'Garden', 'Harbor', 'Island', 'Jungle', - 'Kingdom', 'Lemon', 'Mountain', 'Nature', 'Ocean', 'Planet', 'Queen', 'River', 'Summer', 'Tiger', - 'Universe', 'Volcano', 'Winter', 'Yellow', 'Zebra', 'Castle', 'Diamond', 'Emerald', 'Flower', 'Galaxy', - 'Horizon', 'Iceberg', 'Journey', 'Knight', 'Legend', 'Meadow', 'Nebula', 'Oasis', 'Palace', 'Quasar', - 'Rainbow', 'Sapphire', 'Thunder', 'Unicorn', 'Victory', 'Whisper', 'Xylophone', 'Yacht', 'Zephyr', 'Autumn', - 'Breeze', 'Cascade', 'Dolphin', 'Eclipse', 'Falcon', 'Glacier', 'Harmony', 'Infinity', 'Jasmine', 'Kaleidoscope', - 'Lighthouse', 'Mirage', 'Nightfall', 'Orchard', 'Phoenix', 'Quicksilver', 'Radiance', 'Serenity', 'Twilight', 'Umbrella' -] - -# Check if we already have users with these names -cursor.execute("SELECT username FROM ecoUser") -existing_users = [row[0] for row in cursor.fetchall()] - -# Create a file to store usernames and passwords -with open("user_credentials.txt", "w") as file: - file.write("Username,Password\n") - - # Generate 50 users - users_added = 0 - used_names = [] - random.shuffle(first_names) - - for name in first_names: - if users_added >= 50: - break - - # Skip if the name is already in the database - if name in existing_users or name in used_names: - continue - - # Generate password in format (Word)(Word)(Word)(Digit) - password = random.choice(words) + random.choice(words) + random.choice(words) + str(random.randint(0, 9)) - - # Hash the password using SHA-256 - hashed_password = hashlib.sha256(password.encode()).hexdigest() - - # Insert the user into the database (userType 2 is for standard users) - cursor.execute("INSERT INTO ecoUser (username, password, userType) VALUES (?, ?, ?)", - (name, hashed_password, 2)) - - # Write the credentials to the file - file.write(f"{name},{password}\n") - - used_names.append(name) - users_added += 1 - - print(f"Added user: {name}") - -# Commit the changes and close the connection -conn.commit() -conn.close() - -print(f"\nSuccessfully added {users_added} users to the database.") -print("Usernames and passwords have been saved to user_credentials.txt") \ No newline at end of file diff --git a/Databases/generated_facilities.csv b/Databases/generated_facilities.csv deleted file mode 100644 index 2b89a8d..0000000 --- a/Databases/generated_facilities.csv +++ /dev/null @@ -1,1001 +0,0 @@ -ID,Title,Category,Description,Address,Postcode,Latitude,Longitude,Contributor -11031,Community Clothing Donation Bins Wolverhampton,Clothing Donation Bins,Textile donation point preventing landfill waste,"60 Park Ferry, Wolverhampton, West Midlands",WV31 5UE,52.58643759921048,-2.131023095702401,47 -11032,Wolverhampton Central Urban Farms 2,Urban Farms,Local food growing initiative in repurposed urban space,"173 Clay Cliff, Wolverhampton, West Midlands",WV90 3QW,52.58304596688617,-2.132077623754159,19 -11033,Community Book Swap Stations Wolverhampton 5,Book Swap Stations,Free book swap station encouraging reading and reuse,"Unit 7 Barn Road, Wolverhampton, West Midlands",WV31 5EV,52.58397269685809,-2.129196714808555,47 -11034,Wolverhampton Rock Cliff Bike Share Stations,Bike Share Stations,Bike sharing facility with maintenance and repair services,"155 Rock Cliff, Wolverhampton, West Midlands",WV4 7XH,52.58316291426905,-2.126666297595198,31 -11035,Community Green Roofs Wolverhampton 4,Green Roofs,Building with extensive green roof system visible from public areas,"17 Granite Corner, Wolverhampton, West Midlands",WV46 7RA,52.58692070971562,-2.123527997604406,15 -11036,Blackpool Central Battery Recycling Points,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"Unit 10 North Tunnel, Blackpool, Lancashire",FY51 9ZR,53.81778052401738,-3.030676886739392,45 -11037,Mine Parade Rainwater Harvesting Systems,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"119 Mine Parade, Blackpool, Lancashire",FY52 3MG,53.81989831208435,-3.0334771472217494,12 -11038,Blackpool Nickel Maze Pollinator Gardens,Pollinator Gardens,Public garden designed to support bees and butterflies,"101 Nickel Maze, Blackpool, Lancashire",FY34 3YG,53.81368937182205,-3.0350687328649717,52 -11039,Brook Terrace Public EV Charging Stations,Public EV Charging Stations,Electric vehicle charging point with multiple connectors,"183 Brook Terrace, Blackpool, Lancashire",FY19 1KA,53.81717961756269,-3.0313587302286376,53 -11040,Community Rainwater Harvesting Systems Blackpool 4,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"16 Old Bend, Blackpool, Lancashire",FY30 4DD,53.81356989560207,-3.038775953466738,45 -11041,High Parade Public Water Refill Stations,Public Water Refill Stations,Community water dispenser with usage counter display,"142 High Parade, Blackpool, Lancashire",FY93 2UV,53.81961766880329,-3.040915604465236,42 -11042,Blackpool Central Battery Recycling Points 2,Battery Recycling Points,Dedicated collection point for used batteries of all sizes,"52 Argon Bend, Blackpool, Lancashire",FY84 7VR,53.81459850231875,-3.030284955701976,18 -11043,Carlisle Central Rainwater Harvesting Systems 3,Rainwater Harvesting Systems,Community rainwater collection facility for shared gardens,"102 Slate Green, Carlisle, Cumbria",CA4 7AK,54.896312693638826,-2.9360291839340382,52 -11044,Carlisle Main Boulevard Community Tool Libraries,Community Tool Libraries,Tool sharing hub with membership system and workshops,"85 Main Boulevard, Carlisle, Cumbria",CA68 4TY,54.898277809641144,-2.929666467074554,53 -11045,Carlisle Cottage Causeway Community Tool Libraries,Community Tool Libraries,Community resource center for borrowing tools and equipment,"189 Cottage Causeway, Carlisle, Cumbria",CA88 5NQ,54.8928912802243,-2.92880137764071,43 -11046,Community Compost Bins at Bay Junction,Community Compost Bins,Neighborhood composting facility for food and garden waste,"189 Bay Junction, Carlisle, Cumbria",CA38 5ZH,54.89857187643943,-2.934423679236338,9 -11047,Community Urban Farms Carlisle 2,Urban Farms,City farming project with volunteer opportunities,"145B Green Oval, Carlisle, Cumbria",CA32 3VA,54.89542637444827,-2.9313873099578975,39 -11048,London Bridge Green Roofs,Green Roofs,Green roof installation with educational tours available,"9 London Bridge, Carlisle, Cumbria",CA89 6QJ,54.89914100881581,-2.929180195823774,16 -11049,E-Waste Collection Bins at Aluminium Lane,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","44 Aluminium Lane, Carlisle, Cumbria",CA21 1SY,54.894565145642986,-2.934579172292266,15 -11050,Carlisle Book Swap Stations 3,Book Swap Stations,Community book exchange point with weatherproof shelving,"109 Sand Close, Carlisle, Cumbria",CA99 8ME,54.89376532755715,-2.934179712112496,12 -11051,Community Recycling Bins Carlisle 2,Recycling Bins,Multi-material recycling point with clear instructions for proper sorting,"Unit 9 King Grove, Carlisle, Cumbria",CA61 7DN,54.89218084797486,-2.9381606159932354,8 -11052,Carlisle Solar-Powered Benches 3,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"80 Silicon Ring, Carlisle, Cumbria",CA4 3ZN,54.8951658627668,-2.934692580309086,37 -11053,Cove Crag Clothing Donation Bins,Clothing Donation Bins,Textile recycling point for clothes and household fabrics,"2 Cove Crag, Carlisle, Cumbria",CA85 5FR,54.896635060913326,-2.9333876754557178,9 -11054,Community Bike Share Stations Carlisle 3,Bike Share Stations,Community bike share point with regular and electric bicycles,"152 School Heath, Carlisle, Cumbria",CA75 3WE,54.89659648963642,-2.937742738017304,27 -11055,Carlisle Community Tool Libraries 3,Community Tool Libraries,Community resource center for borrowing tools and equipment,"177 Mill Emporium, Carlisle, Cumbria",CA93 5TX,54.897164906194305,-2.9284676971665644,43 -11056,Carlisle Central Bike Share Stations 4,Bike Share Stations,Bike sharing facility with maintenance and repair services,"Unit 3 Helium Path, Carlisle, Cumbria",CA32 8QB,54.895956403591036,-2.931930607311683,10 -11057,Carlisle Central E-Waste Collection Bins 5,E-Waste Collection Bins,Dedicated bin for responsible disposal of electronic items,"143 Court Exchange, Carlisle, Cumbria",CA21 1SQ,54.89141386034968,-2.9390868847098197,23 -11058,Community Pollinator Gardens Carlisle 2,Pollinator Gardens,Urban wildflower meadow supporting biodiversity,"6 Oxygen Center, Carlisle, Cumbria",CA57 2FZ,54.894469735893075,-2.9368049319616776,9 -11059,Carlisle Bike Share Stations 6,Bike Share Stations,Bike sharing facility with maintenance and repair services,"65 Cottage Parade, Carlisle, Cumbria",CA91 4DW,54.89653186594502,-2.93142801872509,51 -11060,Battery Recycling Points at Titanium Center,Battery Recycling Points,Battery recycling bin with separate compartments for different types,"163 Titanium Center, Carlisle, Cumbria",CA43 1VD,54.89616719754773,-2.9343398689719193,32 -11061,Carlisle Central Bike Share Stations 5,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"Suite 4 Radon Hexagon, Carlisle, Cumbria",CA16 4ST,54.89760837208081,-2.936060964334584,21 -11062,Cliff Emporium Waste Oil Collection Points,Waste Oil Collection Points,Waste oil drop-off point for conversion to biodiesel,"80 Cliff Emporium, Derby, Derbyshire",DE85 8DK,52.92192456765127,-1.4745598835964648,3 -11063,Green Roofs at Cobalt Tunnel,Green Roofs,Biodiverse roof garden with insect habitats and rainwater collection,"164 Cobalt Tunnel, Derby, Derbyshire",DE88 7HZ,52.91853408199697,-1.4759998361375664,11 -11064,Derby Central Rainwater Harvesting Systems 2,Rainwater Harvesting Systems,Visible rainwater storage and filtration system,"27 Pewter Tunnel, Derby, Derbyshire",DE66 6LZ,52.92347674976333,-1.4703082688798488,1 -11065,Derby Solar-Powered Benches 5,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"96 Mine Path, Derby, Derbyshire",DE14 2SE,52.92498027077738,-1.4769674617741817,9 -11066,Derby Stream Corner Urban Farms,Urban Farms,Community-run urban farm providing local produce,"200 Stream Corner, Derby, Derbyshire",DE48 2TX,52.923747990392236,-1.4742672977105504,53 -11067,Community Community Compost Bins Derby 2,Community Compost Bins,Urban composting hub turning food waste into valuable soil,"8 Quarry Oval, Derby, Derbyshire",DE67 1SC,52.91876409672755,-1.4709962137018204,17 -11068,Flint Ridge Rainwater Harvesting Systems,Rainwater Harvesting Systems,Community rainwater collection facility for shared gardens,"108 Flint Ridge, Derby, Derbyshire",DE18 8NM,52.924654390837986,-1.4705158137890202,32 -11069,Derby Forge Crag Bike Share Stations,Bike Share Stations,Community bike share point with regular and electric bicycles,"90 Forge Crag, Derby, Derbyshire",DE83 4FX,52.924271724205575,-1.4796793226205023,4 -11070,Derby Book Swap Stations,Book Swap Stations,Public book sharing library in repurposed phone box,"172 Lake Heights, Derby, Derbyshire",DE78 9TM,52.92482059529332,-1.480110686916474,32 -11071,Public Water Refill Stations at Wood Curve,Public Water Refill Stations,Accessible water station encouraging reusable bottles,"64 Wood Curve, Derby, Derbyshire",DE43 2NH,52.92351824917225,-1.4777170373666526,45 -11072,Derby Court Bend Public EV Charging Stations,Public EV Charging Stations,Fast-charging station for electric vehicles,"78G Court Bend, Derby, Derbyshire",DE86 9HV,52.92377277124789,-1.479465506496597,50 -11073,E-Waste Collection Bins at Granite Heath,E-Waste Collection Bins,Community e-waste collection facility with regular collection schedule,"114 Granite Heath, Derby, Derbyshire",DE5 6PS,52.92573022817187,-1.4783589403787891,25 -11074,Derby Zinc Lane Bike Share Stations,Bike Share Stations,Bike sharing facility with maintenance and repair services,"188 Zinc Lane, Derby, Derbyshire",DE8 2HE,52.92141651410153,-1.4781746018532431,50 -11075,Derby Hall Arcade Urban Farms,Urban Farms,Urban agriculture site with educational programs,"47 Hall Arcade, Derby, Derbyshire",DE2 5LU,52.922032650629234,-1.4733352241255013,30 -11076,Derby Urban Farms,Urban Farms,Urban agriculture site with educational programs,"1 Iron Lane, Derby, Derbyshire",DE66 7SC,52.92229596574381,-1.4704846072050408,24 -11077,Clothing Donation Bins at Victoria Place,Clothing Donation Bins,Community clothing recycling bin with regular collection,"37 Victoria Place, Derby, Derbyshire",DE91 5MW,52.925789556965604,-1.4791286400975148,37 -11078,Derby Recycling Bins 5,Recycling Bins,"Public recycling point for paper, glass, plastic, and metal","200 Gold Passage, Derby, Derbyshire",DE41 3UM,52.92354134611883,-1.477124404161854,19 -11079,Public EV Charging Stations at Farm Triangle,Public EV Charging Stations,Public EV charging facility with covered waiting area,"16 Farm Triangle, Derby, Derbyshire",DE81 2AL,52.92306544307603,-1.4724247230614111,53 -11080,Bridge Road Clothing Donation Bins,Clothing Donation Bins,Clothing donation bin supporting local charities,"157 Bridge Road, Derby, Derbyshire",DE56 6TJ,52.9194157677438,-1.4786068080198822,50 -11081,Derby Central Bike Share Stations 4,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"12 Flint Coil, Derby, Derbyshire",DE99 6RU,52.91922230010096,-1.471804078024766,4 -11082,Derby Urban Farms 2,Urban Farms,Community-run urban farm providing local produce,"135 Hill Gate, Derby, Derbyshire",DE46 7BT,52.92249032265141,-1.4705620348967616,50 -11083,Derby e-Scooters 3,e-Scooters,Dockless e-scooter rental station with multiple vehicles available,"150 Copper Drive, Derby, Derbyshire",DE69 5MR,52.92382431221442,-1.4745765408598586,52 -11084,Community Waste Oil Collection Points Derby,Waste Oil Collection Points,Cooking oil recycling point for residential use,"124 College Junction, Derby, Derbyshire",DE25 4YW,52.92174737088969,-1.4745998436774903,30 -11085,Community Rainwater Harvesting Systems Derby 3,Rainwater Harvesting Systems,Visible rainwater storage and filtration system,"83 North Strand, Derby, Derbyshire",DE6 4GK,52.92304450699563,-1.4696161178729885,36 -11086,Derby Waste Oil Collection Points 2,Waste Oil Collection Points,Cooking oil collection facility with educational information,"96 New Ring, Derby, Derbyshire",DE71 2UZ,52.92319236082608,-1.4751112196800045,22 -11087,Iron Embankment Bike Share Stations,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"44 Iron Embankment, Dundee, Dundee",DD90 6US,56.4607688765006,-2.969193580472135,11 -11088,Dundee Meadow Triangle Bike Share Stations,Bike Share Stations,Bike rental hub with secure docking stations,"178 Meadow Triangle, Dundee, Dundee",DD16 4DQ,56.46525753813757,-2.9655654394410957,47 -11089,Forge Road e-Scooters,e-Scooters,Electric scooter hub with maintenance and charging facilities,"145 Forge Road, Dundee, Dundee",DD41 3CB,56.46020659925395,-2.9700749488000184,47 -11090,Dundee Xenon Lane Book Swap Stations,Book Swap Stations,Free book swap station encouraging reading and reuse,"4 Xenon Lane, Dundee, Dundee",DD98 6XR,56.46425250804916,-2.9688257844207757,26 -11091,Community Community Tool Libraries Dundee 5,Community Tool Libraries,Public tool library with wide range of equipment available,"63 Pewter Meadow, Dundee, Dundee",DD83 5EL,56.46135052690246,-2.975598682241868,15 -11092,Dundee Central Recycling Bins 7,Recycling Bins,"Public recycling point for paper, glass, plastic, and metal","176 Cobalt Spiral, Dundee, Dundee",DD17 7JZ,56.46386381758976,-2.9704341356214545,46 -11093,Community E-Waste Collection Bins Dundee 3,E-Waste Collection Bins,Dedicated bin for responsible disposal of electronic items,"165 Cliff Cove, Dundee, Dundee",DD16 9LG,56.465586416491476,-2.9659570559575634,50 -11094,Community Solar-Powered Benches Dundee 5,Solar-Powered Benches,Solar-powered rest area with phone charging capabilities,"41 Abbey Embankment, Dundee, Dundee",DD9 4LT,56.45867126770384,-2.971670199322347,32 -11095,Dundee Public EV Charging Stations 5,Public EV Charging Stations,Multi-vehicle electric charging hub with different power options,"58 East Fell, Dundee, Dundee",DD70 8KG,56.46268737542252,-2.9751819192077082,42 -11096,Community Public Water Refill Stations Dundee 2,Public Water Refill Stations,Community water dispenser with usage counter display,"122 Steel Green, Dundee, Dundee",DD33 7KT,56.464736511418586,-2.966910797818328,47 -11097,Hospital Meadow Urban Farms,Urban Farms,City farming project with volunteer opportunities,"194 Hospital Meadow, Dundee, Dundee",DD91 7RM,56.46025145254373,-2.974870888530653,10 -11098,Dundee Community Tool Libraries 4,Community Tool Libraries,Tool lending library for community use and sharing,"144 Queen Causeway, Dundee, Dundee",DD36 9PN,56.46221835057125,-2.976564032643563,30 -11099,Quarry Walk Public Water Refill Stations,Public Water Refill Stations,Public drinking fountain with bottle filling capability,"Flat 30 Quarry Walk, Dundee, Dundee",DD70 6PR,56.459601194256166,-2.966714415120321,17 -11100,Dundee Public EV Charging Stations 6,Public EV Charging Stations,Fast-charging station for electric vehicles,"192 Lead Grove, Dundee, Dundee",DD87 3TE,56.46529172915921,-2.9649613453762944,26 -11101,Hall Mart Rainwater Harvesting Systems,Rainwater Harvesting Systems,Community rainwater collection facility for shared gardens,"97 Hall Mart, Dundee, Dundee",DD61 8RH,56.458736653167065,-2.9710732870214023,29 -11102,Dundee Battery Recycling Points 4,Battery Recycling Points,Battery collection point with educational information about recycling,"51D Helium Arcade, Dundee, Dundee",DD96 3GM,56.46433815534196,-2.9749332406671427,18 -11103,E-Waste Collection Bins at Clay Mall,E-Waste Collection Bins,Secure collection point for electronic waste and small appliances,"Suite 5 Clay Mall, Dundee, Dundee",DD84 8JL,56.4655530574358,-2.9753948753312636,32 -11104,Community Tool Libraries at Mine Triangle,Community Tool Libraries,Tool lending library for community use and sharing,"6 Mine Triangle, Dundee, Dundee",DD96 6UF,56.46118997628656,-2.968387853058777,10 -11105,Dundee Central Solar-Powered Benches 2,Solar-Powered Benches,Solar bench with USB charging ports and WiFi connectivity,"Suite 7 Farm Viaduct, Dundee, Dundee",DD36 2XV,56.465036829383095,-2.969597174053752,26 -11106,Community Tool Libraries at Castle Ring,Community Tool Libraries,Tool sharing hub with membership system and workshops,"101 Castle Ring, Dundee, Dundee",DD60 2MY,56.458595062749986,-2.9729807931556835,47 -11107,Dundee Central Waste Oil Collection Points 3,Waste Oil Collection Points,Cooking oil collection facility with educational information,"13 Church Promenade, Dundee, Dundee",DD35 2BR,56.45844820511637,-2.966339184308081,12 -11108,Recycling Bins at Abbey Circle,Recycling Bins,Recycling center with facilities for household waste separation,"146 Abbey Circle, Dundee, Dundee",DD36 1QZ,56.46353286731008,-2.964984766976457,24 -11109,Dundee Central Solar-Powered Benches 3,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"170 Forest Turn, Dundee, Dundee",DD80 2XQ,56.46233157408504,-2.9730016303788025,51 -11110,Community Urban Farms Dundee 3,Urban Farms,Community garden with vegetable plots and fruit trees,"167 Oxygen Walk, Dundee, Dundee",DD55 9NF,56.459813702376586,-2.969586796528242,52 -11111,Dundee Cobalt Crag Community Tool Libraries,Community Tool Libraries,Tool lending library for community use and sharing,"Unit 19 Cobalt Crag, Dundee, Dundee",DD47 9JW,56.463262823735946,-2.9713149386130375,11 -11112,Coventry West Cove Battery Recycling Points,Battery Recycling Points,Secure battery recycling station to prevent environmental contamination,"75F West Cove, Coventry, West Midlands",CV87 1LA,52.408867130091835,-1.5171404711800511,18 -11113,Coventry Urban Farms 3,Urban Farms,Local food growing initiative in repurposed urban space,"98 Hill Mall, Coventry, West Midlands",CV77 9DH,52.40948358171914,-1.5141715959338489,37 -11114,Coventry Cathedral Loop Rainwater Harvesting Systems,Rainwater Harvesting Systems,Community rainwater collection facility for shared gardens,"95 Cathedral Loop, Coventry, West Midlands",CV97 9ZV,52.40985342261197,-1.5142801792907497,47 -11115,Coventry Green Roofs 3,Green Roofs,Green roof installation with educational tours available,"109 Field Boulevard, Coventry, West Midlands",CV24 2GY,52.41076030613066,-1.5156435473671346,12 -11116,Coventry Reservoir Court Community Compost Bins,Community Compost Bins,Community compost bins with educational signage,"115F Reservoir Court, Coventry, West Midlands",CV19 9TW,52.404628547760524,-1.5235479146678164,23 -11117,Green Roofs at Slate Common,Green Roofs,Accessible green roof garden with native plant species,"42 Slate Common, Coventry, West Midlands",CV12 5JC,52.40386018680605,-1.5237917594733699,41 -11118,E-Waste Collection Bins at Mount Rise,E-Waste Collection Bins,Secure collection point for electronic waste and small appliances,"110 Mount Rise, Coventry, West Midlands",CV15 7TB,52.405083680308564,-1.5149653477686573,4 -11119,Community Battery Recycling Points Coventry 2,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"152 Lodge View, Coventry, West Midlands",CV39 5CH,52.40407271127422,-1.5234728956437715,7 -11120,Brass Field Public Water Refill Stations,Public Water Refill Stations,Public drinking fountain with bottle filling capability,"72 Brass Field, Coventry, West Midlands",CV88 7UV,52.403030662201886,-1.5156437674827656,11 -11121,Coventry Recycling Bins 5,Recycling Bins,Multi-material recycling point with clear instructions for proper sorting,"Unit 6 Pewter Curve, Coventry, West Midlands",CV4 1CX,52.40468481332351,-1.51540555909286,33 -11122,Urban Farms at Main Twist,Urban Farms,Community-run urban farm providing local produce,"198E Main Twist, Coventry, West Midlands",CV75 2GM,52.40938292133669,-1.5221503541052264,18 -11123,Rainwater Harvesting Systems at Grange Grove,Rainwater Harvesting Systems,Visible rainwater storage and filtration system,"141 Grange Grove, Coventry, West Midlands",CV90 7US,52.409640757437565,-1.5202235497135188,26 -11124,Community Rainwater Harvesting Systems Coventry 4,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"Flat 16 Pewter Court, Coventry, West Midlands",CV25 5PH,52.4043770408628,-1.5186841495677423,10 -11125,Community Rainwater Harvesting Systems Coventry 5,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"67 Tin Pike, Coventry, West Midlands",CV76 7PU,52.40658909575501,-1.519707610505468,47 -11126,South Ford Solar-Powered Benches,Solar-Powered Benches,Solar bench with USB charging ports and WiFi connectivity,"92 South Ford, Coventry, West Midlands",CV61 4ED,52.40686395930729,-1.5239252680907174,10 -11127,Coventry Battery Recycling Points 3,Battery Recycling Points,Dedicated collection point for used batteries of all sizes,"128 Abbey Mall, Coventry, West Midlands",CV61 5LZ,52.40755354842826,-1.519056668547182,4 -11128,Coventry Gravel Edge Solar-Powered Benches,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"67 Gravel Edge, Coventry, West Midlands",CV14 8VH,52.40949660729289,-1.5203992775885544,31 -11129,Coventry Book Swap Stations 4,Book Swap Stations,Little free library with take-one-leave-one system,"32 Church Hexagon, Coventry, West Midlands",CV40 2JT,52.4065497746336,-1.5161981670877567,48 -11130,Mill Passage e-Scooters,e-Scooters,Dockless e-scooter rental station with multiple vehicles available,"177 Mill Passage, Coventry, West Midlands",CV22 3ME,52.41009884051912,-1.5256306219311968,50 -11131,Coventry Bike Share Stations 3,Bike Share Stations,Bike sharing facility with maintenance and repair services,"175 Rock Maze, Coventry, West Midlands",CV72 5HS,52.40343389048971,-1.5145177259394984,11 -11132,E-Waste Collection Bins at East Court,E-Waste Collection Bins,Electronic waste drop-off point with data security assurance,"127 East Court, Coventry, West Midlands",CV17 1HH,52.4031989565576,-1.5251008986550039,37 -11133,College Gate Green Roofs,Green Roofs,Accessible green roof garden with native plant species,"30 College Gate, Coventry, West Midlands",CV75 7JB,52.41001439115797,-1.5183125628723997,44 -11134,Watford Stone Fell Bike Share Stations,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"139 Stone Fell, Watford, Hertfordshire",WD36 7GK,51.656423574064064,-0.38657512505063274,53 -11135,Watford Community Tool Libraries 3,Community Tool Libraries,Tool lending library for community use and sharing,"86 Windmill Emporium, Watford, Hertfordshire",WD43 7NU,51.655935916501896,-0.39561679631220714,42 -11136,Watford Pewter Labyrinth Urban Farms,Urban Farms,Community-run urban farm providing local produce,"38 Pewter Labyrinth, Watford, Hertfordshire",WD43 1YN,51.658099182325046,-0.3920279574117487,35 -11137,Watford Garden Quay Community Tool Libraries,Community Tool Libraries,Tool lending library for community use and sharing,"107D Garden Quay, Watford, Hertfordshire",WD48 2RP,51.657713727493,-0.3904966247032499,40 -11138,Watford Coal Road Battery Recycling Points,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"29 Coal Road, Watford, Hertfordshire",WD79 7QE,51.65866861699996,-0.389807537410638,3 -11139,Book Swap Stations at Green Avenue,Book Swap Stations,Community book exchange point with weatherproof shelving,"85 Green Avenue, Watford, Hertfordshire",WD9 2EW,51.65769692409341,-0.39287910424317596,17 -11140,Edinburgh Waste Oil Collection Points 3,Waste Oil Collection Points,Cooking oil recycling point for residential use,"147 Market Bridge, Edinburgh, Edinburgh",EH62 2WP,55.952991130061044,-3.188697254915784,48 -11141,Hill Green Urban Farms,Urban Farms,Local food growing initiative in repurposed urban space,"23 Hill Green, Edinburgh, Edinburgh",EH20 5FT,55.95562675032082,-3.1931401318703214,45 -11142,Community Green Roofs Edinburgh 2,Green Roofs,Biodiverse roof garden with insect habitats and rainwater collection,"Unit 18 Stone Terrace, Edinburgh, Edinburgh",EH65 6SG,55.957167792543494,-3.18471574269465,32 -11143,Edinburgh Mill Maze Solar-Powered Benches,Solar-Powered Benches,Solar-powered rest area with phone charging capabilities,"95 Mill Maze, Edinburgh, Edinburgh",EH24 2RX,55.95401718309904,-3.1920783010682525,4 -11144,Victoria Cliff Battery Recycling Points,Battery Recycling Points,Secure battery recycling station to prevent environmental contamination,"32 Victoria Cliff, Edinburgh, Edinburgh",EH65 7NP,55.956035201264385,-3.187157696845867,50 -11145,Edinburgh Central Public EV Charging Stations 4,Public EV Charging Stations,Electric vehicle charging point with multiple connectors,"30 School End, Edinburgh, Edinburgh",EH7 8AD,55.95230223006602,-3.191789342526637,13 -11146,Community E-Waste Collection Bins Edinburgh 5,E-Waste Collection Bins,Secure collection point for electronic waste and small appliances,"115 West Edge, Edinburgh, Edinburgh",EH8 6KB,55.950803368812934,-3.1847304199480666,34 -11147,Community e-Scooters Edinburgh 3,e-Scooters,E-scooter parking and charging zone for public use,"60 Xenon Hexagon, Edinburgh, Edinburgh",EH65 7PD,55.953561754216906,-3.185262432551226,41 -11148,Community Waste Oil Collection Points Oxford 2,Waste Oil Collection Points,Cooking oil recycling point for residential use,"32 Well Gate, Oxford, Oxfordshire",OX20 3MV,51.75443789919006,-1.256254542227623,47 -11149,Oxford Central Community Compost Bins 3,Community Compost Bins,Community compost bins with educational signage,"113 Silicon Passage, Oxford, Oxfordshire",OX96 5MN,51.75298904468579,-1.259353727327234,40 -11150,Oxford Clay Market Solar-Powered Benches,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"82 Clay Market, Oxford, Oxfordshire",OX78 4EQ,51.752348783260864,-1.2523754661585864,35 -11151,e-Scooters at Valley End,e-Scooters,Designated e-scooter pickup and drop-off point,"Flat 21 Valley End, Oxford, Oxfordshire",OX93 7RG,51.751875192194724,-1.263059321562021,1 -11152,Oxford Central Recycling Bins 5,Recycling Bins,Multi-material recycling point with clear instructions for proper sorting,"102 North Fair, Oxford, Oxfordshire",OX6 5SQ,51.75194729364219,-1.2595846932134185,16 -11153,Community Tool Libraries at Meadow Center,Community Tool Libraries,Community resource center for borrowing tools and equipment,"53 Meadow Center, Oxford, Oxfordshire",OX78 4SQ,51.75440686014904,-1.2541114801863136,51 -11154,Oxford Central Community Compost Bins 4,Community Compost Bins,Community compost bins with educational signage,"13 Manor Corner, Oxford, Oxfordshire",OX43 2JR,51.755215339870354,-1.2602502058063247,47 -11155,Oxford Green Roofs 5,Green Roofs,Accessible green roof garden with native plant species,"195 Cove Street, Oxford, Oxfordshire",OX4 8JX,51.75027339495688,-1.2544124471936258,46 -11156,Oxford South Mews Community Tool Libraries,Community Tool Libraries,Public tool library with wide range of equipment available,"Suite 8 South Mews, Oxford, Oxfordshire",OX66 4TC,51.74926585167433,-1.259010719855691,16 -11157,Bike Share Stations at Bridge Green,Bike Share Stations,Cycle hire station with self-service rental system,"80 Bridge Green, Oxford, Oxfordshire",OX29 1SG,51.74867398845023,-1.2518123672970947,14 -11158,Rainwater Harvesting Systems at Lead Moor,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"114 Lead Moor, Oxford, Oxfordshire",OX4 3AA,51.754296726472674,-1.2578103430997198,20 -11159,Oxford Central e-Scooters 7,e-Scooters,E-scooter sharing station with app-based rental system,"95 Forest Cliff, Oxford, Oxfordshire",OX19 9SB,51.751624819644555,-1.2616978628127664,5 -11160,Oxford Clothing Donation Bins,Clothing Donation Bins,Secure collection point for reusable clothing and textiles,"Unit 12 Market Path, Oxford, Oxfordshire",OX87 4XQ,51.75404027246052,-1.2616254621215635,3 -11161,Urban Farms at Canal Crag,Urban Farms,City farming project with volunteer opportunities,"170 Canal Crag, Oxford, Oxfordshire",OX80 8GE,51.75332681379299,-1.2617881250522809,37 -11162,Oxford Central Public Water Refill Stations 4,Public Water Refill Stations,Accessible water station encouraging reusable bottles,"42 Vineyard Dock, Oxford, Oxfordshire",OX93 5XA,51.75370863337013,-1.253886461796178,24 -11163,Vineyard Market Clothing Donation Bins,Clothing Donation Bins,Community clothing recycling bin with regular collection,"69 Vineyard Market, Bolton, Greater Manchester",BL12 3QU,53.5779507233392,-2.4272676881467583,32 -11164,Bolton Field Esplanade Solar-Powered Benches,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"82 Field Esplanade, Bolton, Greater Manchester",BL87 4EJ,53.576607514081424,-2.424835218191953,21 -11165,Bolton Urban Farms 2,Urban Farms,Local food growing initiative in repurposed urban space,"Unit 2 Cathedral Park, Bolton, Greater Manchester",BL23 6VC,53.57697142050518,-2.4246377651786504,16 -11166,Bolton Bike Share Stations 4,Bike Share Stations,Community bike share point with regular and electric bicycles,"15 Flint Ridge, Bolton, Greater Manchester",BL58 9HZ,53.577741190704856,-2.425702476510473,11 -11167,Bolton London View Waste Oil Collection Points,Waste Oil Collection Points,Cooking oil collection facility with educational information,"18 London View, Bolton, Greater Manchester",BL47 2JY,53.57795960640441,-2.4331702347742428,2 -11168,King Park Book Swap Stations,Book Swap Stations,Little free library with take-one-leave-one system,"23 King Park, Bolton, Greater Manchester",BL27 1PZ,53.57879980770548,-2.431387258557964,30 -11169,Bolton Pollinator Gardens,Pollinator Gardens,Urban wildflower meadow supporting biodiversity,"106 West Circle, Bolton, Greater Manchester",BL31 3EK,53.57966017140115,-2.424330770499115,34 -11170,Community Community Compost Bins Bolton 3,Community Compost Bins,Neighborhood composting facility for food and garden waste,"79A Cliff Emporium, Bolton, Greater Manchester",BL73 6LG,53.581559448109864,-2.4254814026549143,35 -11171,Hospital Beach Bike Share Stations,Bike Share Stations,Cycle hire station with self-service rental system,"183 Hospital Beach, Bolton, Greater Manchester",BL75 8RM,53.57735372697382,-2.4272578232432167,38 -11172,Cobalt Rise Green Roofs,Green Roofs,Public building showcasing sustainable rooftop vegetation,"42 Cobalt Rise, Bolton, Greater Manchester",BL66 9EV,53.57974492299083,-2.4347435736184933,45 -11173,Bolton Pewter Path Battery Recycling Points,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"148 Pewter Path, Bolton, Greater Manchester",BL46 4RQ,53.58026011344295,-2.4357753126439556,43 -11174,Bolton Gold Mews Pollinator Gardens,Pollinator Gardens,Urban wildflower meadow supporting biodiversity,"45 Gold Mews, Bolton, Greater Manchester",BL98 1NQ,53.57854527172865,-2.425228749970424,7 -11175,Community Bike Share Stations Bolton 6,Bike Share Stations,Community bike share point with regular and electric bicycles,"Unit 12 Carbon Quay, Bolton, Greater Manchester",BL18 5AJ,53.58163595642699,-2.4248445458057644,48 -11176,Bolton Pit Corner Battery Recycling Points,Battery Recycling Points,Battery recycling bin with separate compartments for different types,"149 Pit Corner, Bolton, Greater Manchester",BL78 1QC,53.58204392498526,-2.429113649926126,5 -11177,Community Battery Recycling Points Bolton 3,Battery Recycling Points,Battery recycling bin with separate compartments for different types,"Flat 25 Court Helix, Bolton, Greater Manchester",BL23 5GF,53.58074815117423,-2.43088107844198,25 -11178,Exeter Central Clothing Donation Bins 5,Clothing Donation Bins,Clothing donation bin supporting local charities,"169A West Helix, Exeter, Devon",EX43 5WF,50.72163374632547,-3.5319916663484423,34 -11179,Rainwater Harvesting Systems at Steel Gate,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"70 Steel Gate, Exeter, Devon",EX71 5NW,50.720948935626424,-3.5389420388920665,33 -11180,e-Scooters at Field Top,e-Scooters,Dockless e-scooter rental station with multiple vehicles available,"Flat 6 Field Top, Exeter, Devon",EX1 3AH,50.721683361601734,-3.5286419772045,46 -11181,Marble Emporium Solar-Powered Benches,Solar-Powered Benches,Solar-powered rest area with phone charging capabilities,"191 Marble Emporium, Exeter, Devon",EX5 5WZ,50.71634082541283,-3.5334744665612323,9 -11182,Exeter Urban Farms 3,Urban Farms,Community garden with vegetable plots and fruit trees,"89 Rock Gate, Exeter, Devon",EX80 4WR,50.72076634942519,-3.537237733294612,24 -11183,Community Pollinator Gardens Exeter 3,Pollinator Gardens,Bee-friendly garden with educational signage about pollinators,"13 Chalk Labyrinth, Exeter, Devon",EX4 8ZC,50.71870306050285,-3.5279887811234065,53 -11184,Exeter Railway Labyrinth Solar-Powered Benches,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"91 Railway Labyrinth, Exeter, Devon",EX90 5TL,50.71518530237653,-3.536761349427915,40 -11185,Exeter Queen Corner Public EV Charging Stations,Public EV Charging Stations,Electric vehicle charging point with multiple connectors,"143 Queen Corner, Exeter, Devon",EX36 3DD,50.72140534981427,-3.532661220672099,3 -11186,Public Water Refill Stations at Tin Alley,Public Water Refill Stations,Free water refill station to reduce plastic bottle usage,"72 Tin Alley, Exeter, Devon",EX74 5BT,50.72214411927467,-3.5370077921654994,2 -11187,E-Waste Collection Bins at Oxygen Common,E-Waste Collection Bins,Dedicated bin for responsible disposal of electronic items,"53 Oxygen Common, Exeter, Devon",EX65 8HJ,50.72062850410551,-3.5345282249812677,48 -11188,Exeter Central Clothing Donation Bins 6,Clothing Donation Bins,Clothing donation bin supporting local charities,"116 School Moor, Exeter, Devon",EX55 5MV,50.71617938510043,-3.5338354124915914,28 -11189,Exeter Book Swap Stations 5,Book Swap Stations,Public book sharing library in repurposed phone box,"68 Radon Esplanade, Exeter, Devon",EX35 2YB,50.72216074958817,-3.5321350502116187,19 -11190,Exeter Silicon Fair Community Compost Bins,Community Compost Bins,Urban composting hub turning food waste into valuable soil,"36 Silicon Fair, Exeter, Devon",EX80 7VZ,50.716703121687466,-3.530861188440784,46 -11191,Exeter Mine Pentagon Pollinator Gardens,Pollinator Gardens,Public garden designed to support bees and butterflies,"94 Mine Pentagon, Exeter, Devon",EX25 3FD,50.72196952010667,-3.535148878524087,11 -11192,Railway Bridge Pollinator Gardens,Pollinator Gardens,Bee-friendly garden with educational signage about pollinators,"72 Railway Bridge, Exeter, Devon",EX25 5SL,50.715094824224096,-3.5285257155599474,34 -11193,e-Scooters at Watermill Shore,e-Scooters,Dockless e-scooter rental station with multiple vehicles available,"35 Watermill Shore, Peterborough, Cambridgeshire",PE2 5VK,52.56991953267238,-0.2379445467588669,41 -11194,Peterborough Recycling Bins 3,Recycling Bins,Public access recycling bins for common household recyclables,"Suite 7 Canal Gallery, Peterborough, Cambridgeshire",PE73 6DK,52.57015994843199,-0.2412622171593155,3 -11195,Peterborough Cobalt Way Green Roofs,Green Roofs,Biodiverse roof garden with insect habitats and rainwater collection,"36 Cobalt Way, Peterborough, Cambridgeshire",PE58 9PX,52.57289434754896,-0.2441285559611073,5 -11196,Community Urban Farms Peterborough 2,Urban Farms,Community-run urban farm providing local produce,"97 College Center, Peterborough, Cambridgeshire",PE64 1EG,52.56852890577279,-0.2410066252739347,30 -11197,Peterborough Central Recycling Bins,Recycling Bins,Community recycling station with separate bins for different materials,"Flat 16 North Viaduct, Peterborough, Cambridgeshire",PE78 9KH,52.57010158108719,-0.24482667849819997,11 -11198,Community Green Roofs Peterborough,Green Roofs,Building with extensive green roof system visible from public areas,"175 Titanium Cove, Peterborough, Cambridgeshire",PE27 1LA,52.569241948729314,-0.2385542134925778,12 -11199,Community Public Water Refill Stations Peterborough,Public Water Refill Stations,Water refill point with filtered water options,"Flat 3 Nickel Cross, Peterborough, Cambridgeshire",PE85 9YX,52.56989036423225,-0.24629928549712046,22 -11200,Peterborough Windmill Viaduct e-Scooters,e-Scooters,E-scooter parking and charging zone for public use,"12 Windmill Viaduct, Peterborough, Cambridgeshire",PE40 1HM,52.566318361576556,-0.24353265503915633,10 -11201,Community Pollinator Gardens Peterborough 2,Pollinator Gardens,Public garden designed to support bees and butterflies,"19 Market Green, Peterborough, Cambridgeshire",PE77 3RC,52.57202166122069,-0.2419038702271765,50 -11202,Community Bike Share Stations Peterborough,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"127 Orchard Emporium, Peterborough, Cambridgeshire",PE95 5SZ,52.57101682225014,-0.2372464479376151,39 -11203,Church Loop Community Tool Libraries,Community Tool Libraries,Community resource center for borrowing tools and equipment,"34 Church Loop, Peterborough, Cambridgeshire",PE8 7GF,52.56961892149254,-0.23496230144649863,23 -11204,Recycling Bins at Cottage Top,Recycling Bins,Community recycling station with separate bins for different materials,"169 Cottage Top, Reading, Berkshire",RG49 7TU,51.4550573709547,-0.9800609867713934,28 -11205,Reading Rainwater Harvesting Systems 2,Rainwater Harvesting Systems,Community rainwater collection facility for shared gardens,"197 Chromium Bottom, Reading, Berkshire",RG17 4CV,51.45580502268898,-0.97743989008032,48 -11206,Public EV Charging Stations at Park Circus,Public EV Charging Stations,Electric vehicle charging point with multiple connectors,"131 Park Circus, Reading, Berkshire",RG48 1UM,51.45214591444903,-0.9831588693876746,46 -11207,Community Solar-Powered Benches Reading 3,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"57 Quarry Ring, Reading, Berkshire",RG31 5FN,51.4520097326423,-0.9728710642280258,47 -11208,Urban Farms at Aluminium Bend,Urban Farms,Urban agriculture site with educational programs,"66 Aluminium Bend, Reading, Berkshire",RG82 4VN,51.451018536285396,-0.9812907327766132,5 -11209,Reading Mine Field Pollinator Gardens,Pollinator Gardens,Public garden designed to support bees and butterflies,"58 Mine Field, Reading, Berkshire",RG84 5NK,51.45228076610464,-0.977096357608242,26 -11210,Reading Central E-Waste Collection Bins 3,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","77 Argon Tor, Reading, Berkshire",RG60 3YF,51.45576557966568,-0.9826163378734442,26 -11211,Reading Battery Recycling Points 2,Battery Recycling Points,Secure battery recycling station to prevent environmental contamination,"99 Church Center, Reading, Berkshire",RG19 6BH,51.454260709873296,-0.9774203157477052,40 -11212,Bike Share Stations at Main Maze,Bike Share Stations,Community bike share point with regular and electric bicycles,"192 Main Maze, Reading, Berkshire",RG26 9SK,51.45192728479815,-0.9792153381774277,36 -11213,Cobalt Ring e-Scooters,e-Scooters,Electric scooter hub with maintenance and charging facilities,"49 Cobalt Ring, Reading, Berkshire",RG75 3ZJ,51.455110220205206,-0.9830709146596659,53 -11214,Reading Pollinator Gardens 2,Pollinator Gardens,Public garden designed to support bees and butterflies,"98 River Bottom, Reading, Berkshire",RG67 9UW,51.45619339700575,-0.9781015037394529,28 -11215,Reading Central Public Water Refill Stations 2,Public Water Refill Stations,Water refill point with filtered water options,"Flat 4 Castle Terrace, Reading, Berkshire",RG13 2DW,51.451510758644915,-0.9824951620290343,13 -11216,Reading Public Water Refill Stations 5,Public Water Refill Stations,Accessible water station encouraging reusable bottles,"197 Stream Bank, Reading, Berkshire",RG40 2GP,51.451986833223856,-0.9779924493402754,48 -11217,Community Bike Share Stations Cardiff 4,Bike Share Stations,Cycle hire station with self-service rental system,"101C Garden Shore, Cardiff, Cardiff",CF34 4XL,51.48478078212999,-3.1844743201737713,32 -11218,Meadow Top Public EV Charging Stations,Public EV Charging Stations,Fast-charging station for electric vehicles,"51 Meadow Top, Cardiff, Cardiff",CF34 8JT,51.47992592901214,-3.1747597230112405,8 -11219,Cardiff Spring Parade Public Water Refill Stations,Public Water Refill Stations,Community water dispenser with usage counter display,"70 Spring Parade, Cardiff, Cardiff",CF59 9AN,51.483077260527416,-3.1804611012549406,3 -11220,Cardiff Central Public EV Charging Stations 2,Public EV Charging Stations,Multi-vehicle electric charging hub with different power options,"60 Oxygen Labyrinth, Cardiff, Cardiff",CF51 2TU,51.480236256949496,-3.1847963429380868,30 -11221,Recycling Bins at Lead Wharf,Recycling Bins,Public access recycling bins for common household recyclables,"Flat 22 Lead Wharf, Cardiff, Cardiff",CF76 2NJ,51.48272416101542,-3.1769533955610147,8 -11222,Hall Park E-Waste Collection Bins,E-Waste Collection Bins,Secure collection point for electronic waste and small appliances,"139 Hall Park, Portsmouth, Hampshire",PO51 8MD,50.81923722076075,-1.0834159703692445,22 -11223,Portsmouth Solar-Powered Benches 2,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"121 Field Ford, Portsmouth, Hampshire",PO95 8QT,50.82257756787869,-1.0891181678106847,5 -11224,Portsmouth Community Compost Bins 3,Community Compost Bins,Urban composting hub turning food waste into valuable soil,"Suite 1 Mount Triangle, Portsmouth, Hampshire",PO96 5RZ,50.815810185233474,-1.0921556559909358,28 -11225,Portsmouth Green Roofs 3,Green Roofs,Accessible green roof garden with native plant species,"Suite 3 Chalk Close, Portsmouth, Hampshire",PO16 7QT,50.8207279322999,-1.0899724755642957,34 -11226,Victoria Green Public EV Charging Stations,Public EV Charging Stations,Public EV charging facility with covered waiting area,"44 Victoria Green, Portsmouth, Hampshire",PO72 7NC,50.81633225134285,-1.0855266409998128,1 -11227,Portsmouth Central Rainwater Harvesting Systems,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"29 Church Common, Portsmouth, Hampshire",PO83 1SB,50.8214111263105,-1.0851772572691827,45 -11228,Barn Maze Public Water Refill Stations,Public Water Refill Stations,Community water dispenser with usage counter display,"84 Barn Maze, Portsmouth, Hampshire",PO62 2JE,50.82267603381837,-1.0841958970910954,37 -11229,Hospital Viaduct Battery Recycling Points,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"44 Hospital Viaduct, Portsmouth, Hampshire",PO4 7QF,50.81907553750024,-1.0859318762502796,3 -11230,Portsmouth Central Public Water Refill Stations 5,Public Water Refill Stations,Community water dispenser with usage counter display,"Unit 7 Mill Spiral, Portsmouth, Hampshire",PO15 1VY,50.822579081197404,-1.089505592289205,51 -11231,Waste Oil Collection Points at Court Bend,Waste Oil Collection Points,Used oil collection facility with secure containers,"47 Court Bend, Portsmouth, Hampshire",PO13 4RN,50.82211450324977,-1.0924268565928947,47 -11232,Hull Central Recycling Bins 3,Recycling Bins,Community recycling station with separate bins for different materials,"115 Flint Oval, Hull, East Yorkshire",HU86 1ZS,53.764695877494546,-0.3266359905447357,31 -11233,Community Community Tool Libraries Hull 3,Community Tool Libraries,Public tool library with wide range of equipment available,"96 Cobalt Heights, Hull, East Yorkshire",HU20 2LH,53.76711581630531,-0.3273472260453259,3 -11234,College Field Bike Share Stations,Bike Share Stations,Community bike share point with regular and electric bicycles,"192 College Field, Hull, East Yorkshire",HU44 3GU,53.76473754042495,-0.32449148719088583,14 -11235,Hull Clothing Donation Bins,Clothing Donation Bins,Textile donation point preventing landfill waste,"133 Lake Triangle, Hull, East Yorkshire",HU50 2SV,53.7694379790637,-0.32718000783346846,28 -11236,Coal Coil Green Roofs,Green Roofs,Biodiverse roof garden with insect habitats and rainwater collection,"82 Coal Coil, Hull, East Yorkshire",HU33 6DU,53.76694712262575,-0.3265435228241293,43 -11237,Hall Street Community Compost Bins,Community Compost Bins,Urban composting hub turning food waste into valuable soil,"164 Hall Street, Hull, East Yorkshire",HU83 7VA,53.765148347252875,-0.3327297479144649,46 -11238,Nitrogen Twist Clothing Donation Bins,Clothing Donation Bins,Textile recycling point for clothes and household fabrics,"170 Nitrogen Twist, Hull, East Yorkshire",HU69 3UA,53.76761179412477,-0.3315490876041644,44 -11239,Hull Central E-Waste Collection Bins 3,E-Waste Collection Bins,Dedicated bin for responsible disposal of electronic items,"Unit 16 Silver Court, Hull, East Yorkshire",HU66 1FF,53.76876642139433,-0.32883197738067765,41 -11240,Hull Central e-Scooters 2,e-Scooters,Electric scooter hub with maintenance and charging facilities,"20 Market Way, Hull, East Yorkshire",HU7 2MV,53.76731379959609,-0.3277883769554692,16 -11241,Hull Green Gallery Urban Farms,Urban Farms,Community-run urban farm providing local produce,"Suite 4 Green Gallery, Hull, East Yorkshire",HU93 7TF,53.76402381072293,-0.32218482761505773,30 -11242,Community Community Tool Libraries Hull 4,Community Tool Libraries,Community resource center for borrowing tools and equipment,"Flat 18 Steel Loop, Hull, East Yorkshire",HU54 8MR,53.76674310895345,-0.3260979717600281,3 -11243,Community Pollinator Gardens Hull,Pollinator Gardens,Community garden dedicated to supporting local insect populations,"88 Barn Rise, Hull, East Yorkshire",HU96 5CH,53.76775457986074,-0.32549821039468885,12 -11244,e-Scooters at Forest Bend,e-Scooters,E-scooter sharing station with app-based rental system,"180 Forest Bend, Hull, East Yorkshire",HU45 5NB,53.76764526507412,-0.3220941454079724,13 -11245,Battery Recycling Points at House Hexagon,Battery Recycling Points,Battery collection point with educational information about recycling,"83 House Hexagon, London, Greater London",EC13 1EY,51.50532780297847,-0.13085012462579626,44 -11246,Community Tool Libraries at Chromium Spiral,Community Tool Libraries,Public tool library with wide range of equipment available,"106 Chromium Spiral, London, Greater London",EC63 2ZX,51.50618389227286,-0.13227332060612906,39 -11247,Cove Strand Green Roofs,Green Roofs,Green roof installation with educational tours available,"1 Cove Strand, London, Greater London",EC44 9YP,51.50649074499348,-0.12383485448781018,16 -11248,Krypton Tor Pollinator Gardens,Pollinator Gardens,Urban wildflower meadow supporting biodiversity,"102 Krypton Tor, London, Greater London",EC44 8FL,51.50505168594709,-0.13112708142982007,28 -11249,London Castle Ferry Green Roofs,Green Roofs,Accessible green roof garden with native plant species,"133 Castle Ferry, London, Greater London",EC95 1MM,51.504945378596425,-0.12553612702010447,31 -11250,Green Beach E-Waste Collection Bins,E-Waste Collection Bins,Dedicated bin for responsible disposal of electronic items,"106 Green Beach, London, Greater London",EC92 4JD,51.50794423846881,-0.13321883706595275,17 -11251,Community Book Swap Stations London,Book Swap Stations,Little free library with take-one-leave-one system,"156 Garden Close, London, Greater London",EC9 5FS,51.50839741823566,-0.12743065395435105,12 -11252,London Book Swap Stations 4,Book Swap Stations,Community book exchange point with weatherproof shelving,"22 Xenon Embankment, London, Greater London",EC32 8MD,51.508274739903506,-0.13176262216681256,52 -11253,London College Meadow Book Swap Stations,Book Swap Stations,Public book sharing library in repurposed phone box,"Flat 2 College Meadow, London, Greater London",EC25 9DH,51.5107458254272,-0.12488416605705925,29 -11254,Church Loop Solar-Powered Benches,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"146 Church Loop, London, Greater London",EC65 4GN,51.51090787359475,-0.12423309614893216,10 -11255,London Solar-Powered Benches 2,Solar-Powered Benches,Eco-friendly bench with solar panels and LED lighting,"199C Tin Maze, London, Greater London",EC39 9QW,51.50982088603973,-0.12251780078405283,38 -11256,London Well Labyrinth Waste Oil Collection Points,Waste Oil Collection Points,Cooking oil recycling point for residential use,"198 Well Labyrinth, London, Greater London",EC76 9QB,51.50912404498761,-0.13318369263754595,11 -11257,Cardiff Central Battery Recycling Points 4,Battery Recycling Points,Dedicated collection point for used batteries of all sizes,"176 Iron Heights, Cardiff, Cardiff",CF40 4AE,51.482172067192934,-3.1799199018409143,31 -11258,Cardiff Central Community Compost Bins 5,Community Compost Bins,Urban composting hub turning food waste into valuable soil,"178 Hill Loop, Cardiff, Cardiff",CF94 6GT,51.478601560549535,-3.1810706105820246,40 -11259,Cardiff Central Community Tool Libraries 3,Community Tool Libraries,Tool sharing hub with membership system and workshops,"140 Quarry Heath, Cardiff, Cardiff",CF95 8FF,51.4778630253614,-3.1766832304244126,47 -11260,Park Moor Bike Share Stations,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"127F Park Moor, Cardiff, Cardiff",CF17 3ED,51.48218799879215,-3.1754845557052107,16 -11261,Cardiff Central Solar-Powered Benches 2,Solar-Powered Benches,Solar-powered rest area with phone charging capabilities,"189 Old Close, Cardiff, Cardiff",CF83 6FT,51.48271619578681,-3.182526919558652,7 -11262,Cardiff Pollinator Gardens 3,Pollinator Gardens,Community garden dedicated to supporting local insect populations,"111E Forest Cove, Cardiff, Cardiff",CF98 5AT,51.48211397017112,-3.1825583282258423,26 -11263,Cardiff Pewter Cove Waste Oil Collection Points,Waste Oil Collection Points,Community oil recycling station with spill prevention measures,"177 Pewter Cove, Cardiff, Cardiff",CF12 9YH,51.482734085637624,-3.1774623701335996,21 -11264,East Bend Public Water Refill Stations,Public Water Refill Stations,Community water dispenser with usage counter display,"192 East Bend, Cardiff, Cardiff",CF30 7BX,51.478184673068235,-3.175470197521745,8 -11265,Cardiff Bronze Field Book Swap Stations,Book Swap Stations,Free book swap station encouraging reading and reuse,"144 Bronze Field, Cardiff, Cardiff",CF61 7AU,51.484791203520146,-3.182643178249422,9 -11266,Cardiff Field Bottom Bike Share Stations,Bike Share Stations,Cycle hire station with self-service rental system,"166 Field Bottom, Cardiff, Cardiff",CF63 2AJ,51.48075324512041,-3.1820491359381644,46 -11267,Cardiff Community Compost Bins,Community Compost Bins,Public composting station with separate sections for different stages,"Flat 8 Mine Parade, Cardiff, Cardiff",CF83 2BC,51.4850887194978,-3.177434107841407,23 -11268,Cardiff Nickel Octagon Community Compost Bins,Community Compost Bins,Community compost bins with educational signage,"182 Nickel Octagon, Cardiff, Cardiff",CF75 2WU,51.48138834403515,-3.1836047973007253,3 -11269,Swindon Central Pollinator Gardens 2,Pollinator Gardens,Public garden designed to support bees and butterflies,"19 Beach Trail, Swindon, Wiltshire",SN40 2NS,51.553168585063204,-1.7763472718788393,17 -11270,Swindon Stone Shore Book Swap Stations,Book Swap Stations,Public book sharing library in repurposed phone box,"107 Stone Shore, Swindon, Wiltshire",SN1 1NB,51.55411902609419,-1.7742916122212355,33 -11271,Rainwater Harvesting Systems at Aluminium Rise,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"81 Aluminium Rise, Swindon, Wiltshire",SN37 6NR,51.559532248701174,-1.7772133351515373,9 -11272,Community Solar-Powered Benches Swindon 4,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"97 Stream Curve, Swindon, Wiltshire",SN44 8NX,51.55538090780719,-1.781712426354421,4 -11273,Community Clothing Donation Bins Swindon 3,Clothing Donation Bins,Community clothing recycling bin with regular collection,"19 Lead Pentagon, Swindon, Wiltshire",SN8 2ZM,51.557200611784744,-1.7846587698616327,17 -11274,Swindon Solar-Powered Benches 3,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"55E Brook Corner, Swindon, Wiltshire",SN93 6ZJ,51.55519590433639,-1.7738070132753885,1 -11275,Swindon Reservoir Promenade e-Scooters,e-Scooters,Electric scooter hub with maintenance and charging facilities,"Suite 3 Reservoir Promenade, Swindon, Wiltshire",SN47 6YS,51.55929714553801,-1.775730201995333,7 -11276,Swindon Central Battery Recycling Points 5,Battery Recycling Points,Battery collection point with educational information about recycling,"136 Hospital Maze, Swindon, Wiltshire",SN20 1XE,51.5583636358853,-1.774137940559484,22 -11277,Swindon Rainwater Harvesting Systems 3,Rainwater Harvesting Systems,Urban water conservation project with storage tanks,"104 Gravel Fell, Swindon, Wiltshire",SN97 6GG,51.55467403009822,-1.7764237993354448,20 -11278,Swindon Helium Edge Book Swap Stations,Book Swap Stations,Little free library with take-one-leave-one system,"Suite 9 Helium Edge, Swindon, Wiltshire",SN91 2DL,51.557672413693275,-1.7737444799227888,13 -11279,e-Scooters at Meadow Center,e-Scooters,E-scooter sharing station with app-based rental system,"128 Meadow Center, Swindon, Wiltshire",SN89 5JT,51.55529651821246,-1.7837721304505427,11 -11280,Court Embankment Public EV Charging Stations,Public EV Charging Stations,Fast-charging station for electric vehicles,"199 Court Embankment, Swindon, Wiltshire",SN52 8TG,51.554886187798324,-1.774192828092312,4 -11281,Swindon Central Public EV Charging Stations 2,Public EV Charging Stations,EV charging station with renewable energy source,"91 Garden Esplanade, Swindon, Wiltshire",SN97 4FM,51.55582190288716,-1.776867054977131,17 -11282,Rainwater Harvesting Systems at Stream Rise,Rainwater Harvesting Systems,Community rainwater collection facility for shared gardens,"50 Stream Rise, Swindon, Wiltshire",SN47 7ND,51.558932467492085,-1.781536900517151,20 -11283,Cambridge Pond Way Waste Oil Collection Points,Waste Oil Collection Points,Used oil collection facility with secure containers,"155 Pond Way, Cambridge, Cambridgeshire",CB65 2UK,52.201675382915646,0.11631372832304049,26 -11284,Community Battery Recycling Points Cambridge 4,Battery Recycling Points,Secure battery recycling station to prevent environmental contamination,"189 Spring Quay, Cambridge, Cambridgeshire",CB55 6SE,52.204356080917286,0.11809279494303532,6 -11285,Community Public EV Charging Stations Cambridge 4,Public EV Charging Stations,Fast-charging station for electric vehicles,"185 Clay Moor, Cambridge, Cambridgeshire",CB58 9PS,52.208638419730626,0.11889916219379003,23 -11286,Waste Oil Collection Points at Zinc Hexagon,Waste Oil Collection Points,Cooking oil collection facility with educational information,"115G Zinc Hexagon, Cambridge, Cambridgeshire",CB31 5QN,52.20318993313614,0.12405121184712732,23 -11287,Cambridge Central Solar-Powered Benches 2,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"101D Flint Cross, Cambridge, Cambridgeshire",CB81 9QU,52.20721834933547,0.11681234466785446,38 -11288,Castle Crescent Community Compost Bins,Community Compost Bins,Urban composting hub turning food waste into valuable soil,"144 Castle Crescent, Cambridge, Cambridgeshire",CB63 2KJ,52.20523761518211,0.11770866574639663,31 -11289,e-Scooters at Chromium Avenue,e-Scooters,Designated e-scooter pickup and drop-off point,"121 Chromium Avenue, Cambridge, Cambridgeshire",CB20 3DT,52.201362518430734,0.12604308074247506,50 -11290,Cambridge Book Swap Stations 3,Book Swap Stations,Little free library with take-one-leave-one system,"131E Krypton Crescent, Cambridge, Cambridgeshire",CB84 8GR,52.20338028024165,0.12042021586587937,52 -11291,Community Public EV Charging Stations Cambridge 5,Public EV Charging Stations,Multi-vehicle electric charging hub with different power options,"177 High Ridge, Cambridge, Cambridgeshire",CB45 6TX,52.20195520620928,0.12677093769956596,38 -11292,Bike Share Stations at King Hill,Bike Share Stations,Community bike share point with regular and electric bicycles,"116 King Hill, Cambridge, Cambridgeshire",CB73 9EE,52.20166846340515,0.12595723251636234,37 -11293,Community Battery Recycling Points Cambridge 5,Battery Recycling Points,Dedicated collection point for used batteries of all sizes,"123 Titanium Park, Cambridge, Cambridgeshire",CB44 3KN,52.20242491266024,0.12397778868031012,48 -11294,Cambridge Central Community Tool Libraries,Community Tool Libraries,Tool lending library for community use and sharing,"Unit 18 Mount Avenue, Cambridge, Cambridgeshire",CB88 8QG,52.20314401092764,0.11902262085386887,15 -11295,Cambridge Well Heath Public Water Refill Stations,Public Water Refill Stations,Water refill point with filtered water options,"75 Well Heath, Cambridge, Cambridgeshire",CB47 4ZA,52.202802681007725,0.12671564022731366,38 -11296,Cambridge Central Public EV Charging Stations 4,Public EV Charging Stations,Public EV charging facility with covered waiting area,"Suite 10 Hydrogen Esplanade, Cambridge, Cambridgeshire",CB28 2CW,52.20866159177362,0.12405668475273823,20 -11297,Cambridge Battery Recycling Points 4,Battery Recycling Points,Battery collection point with educational information about recycling,"115 Watermill Curve, Cambridge, Cambridgeshire",CB3 9WJ,52.203813775982724,0.11658679654431266,6 -11298,Cambridge Waste Oil Collection Points,Waste Oil Collection Points,Community oil recycling station with spill prevention measures,"120 Gravel Mews, Cambridge, Cambridgeshire",CB65 7NQ,52.20533798528524,0.12671981706548432,5 -11299,Community Community Tool Libraries Cambridge 3,Community Tool Libraries,Community resource center for borrowing tools and equipment,"113 School Square, Cambridge, Cambridgeshire",CB97 1NB,52.20809852841833,0.12481777391845976,16 -11300,Recycling Bins at Spring Drive,Recycling Bins,Recycling center with facilities for household waste separation,"197 Spring Drive, Cambridge, Cambridgeshire",CB70 2MJ,52.205811002114736,0.12753551939302837,37 -11301,Brass Square Green Roofs,Green Roofs,Biodiverse roof garden with insect habitats and rainwater collection,"27 Brass Square, Brighton, East Sussex",BN92 8MU,50.82240643257608,-0.13234076483395935,51 -11302,Brighton Central E-Waste Collection Bins,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","76 Mine Passage, Brighton, East Sussex",BN87 5MV,50.826006943067554,-0.14223965002002834,13 -11303,Community Public Water Refill Stations Brighton 2,Public Water Refill Stations,Public drinking fountain with bottle filling capability,"86 Garden Ridge, Brighton, East Sussex",BN32 8RA,50.82621031880615,-0.13473060770974196,39 -11304,Public EV Charging Stations at Granite Bay,Public EV Charging Stations,Multi-vehicle electric charging hub with different power options,"118G Granite Bay, Brighton, East Sussex",BN53 8XZ,50.82293329209448,-0.13137248154422598,16 -11305,e-Scooters at Valley Boulevard,e-Scooters,Designated e-scooter pickup and drop-off point,"28 Valley Boulevard, Brighton, East Sussex",BN97 7FT,50.819714739803324,-0.1419520508117575,41 -11306,E-Waste Collection Bins at Lake Crag,E-Waste Collection Bins,Secure collection point for electronic waste and small appliances,"12 Lake Crag, Brighton, East Sussex",BN99 4MY,50.819428401540065,-0.13372943634896953,41 -11307,Brighton e-Scooters 3,e-Scooters,E-scooter parking and charging zone for public use,"163 North Tunnel, Brighton, East Sussex",BN40 4AV,50.82636171457403,-0.14291814376749912,44 -11308,Brighton Argon Court Public Water Refill Stations,Public Water Refill Stations,Accessible water station encouraging reusable bottles,"184 Argon Court, Brighton, East Sussex",BN7 6RG,50.82293741874497,-0.13991454816866325,27 -11309,Brighton Green Roofs 5,Green Roofs,Accessible green roof garden with native plant species,"Unit 2 Mill Center, Brighton, East Sussex",BN73 4FM,50.82317185875072,-0.14295997513078892,27 -11310,Solar-Powered Benches at Silver Esplanade,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"186 Silver Esplanade, Brighton, East Sussex",BN85 9ZE,50.81934003055617,-0.1312077154896693,8 -11311,Brighton Central Green Roofs 6,Green Roofs,Public building showcasing sustainable rooftop vegetation,"29 Mill Passage, Brighton, East Sussex",BN45 1DF,50.8209798068732,-0.13122391585151583,2 -11312,Brighton Recycling Bins 3,Recycling Bins,Community recycling station with separate bins for different materials,"18 Windmill Arcade, Brighton, East Sussex",BN80 2VA,50.825765877507095,-0.135628846835296,17 -11313,Brighton Central Waste Oil Collection Points 5,Waste Oil Collection Points,Used oil collection facility with secure containers,"145 Iron Twist, Brighton, East Sussex",BN2 9AF,50.82043171625485,-0.136167197116625,27 -11314,Bay Moor Community Tool Libraries,Community Tool Libraries,Tool sharing hub with membership system and workshops,"52 Bay Moor, Swindon, Wiltshire",SN28 7DS,51.55250542590484,-1.7772861567675244,14 -11315,Swindon Community Tool Libraries 6,Community Tool Libraries,Community resource center for borrowing tools and equipment,"134 Reservoir Alley, Swindon, Wiltshire",SN23 1YQ,51.55888490621805,-1.7744745914345403,16 -11316,Swindon Lead Center Clothing Donation Bins,Clothing Donation Bins,Textile donation point preventing landfill waste,"150 Lead Center, Swindon, Wiltshire",SN83 9BT,51.55921294653819,-1.780326133864977,1 -11317,Titanium Ferry Green Roofs,Green Roofs,Biodiverse roof garden with insect habitats and rainwater collection,"23 Titanium Ferry, Swindon, Wiltshire",SN28 1MC,51.55418218820142,-1.7774157500500094,3 -11318,Orchard Circle Community Compost Bins,Community Compost Bins,Public composting station with separate sections for different stages,"197 Orchard Circle, Swindon, Wiltshire",SN83 6LE,51.5593898491746,-1.7842332384633297,31 -11319,Swindon Book Swap Stations 5,Book Swap Stations,Community book exchange point with weatherproof shelving,"197 Coal Corner, Swindon, Wiltshire",SN57 4EM,51.5591518760652,-1.7806541037951575,31 -11320,Swindon Lake Court Book Swap Stations,Book Swap Stations,Community book exchange point with weatherproof shelving,"185 Lake Court, Swindon, Wiltshire",SN3 9TE,51.55408508873904,-1.78190071906288,11 -11321,Public EV Charging Stations at Granite Crag,Public EV Charging Stations,Fast-charging station for electric vehicles,"176E Granite Crag, Swindon, Wiltshire",SN38 4VB,51.552933676687076,-1.7811360405036272,32 -11322,Swindon Central Waste Oil Collection Points 3,Waste Oil Collection Points,Used oil collection facility with secure containers,"142 Stream Pike, Swindon, Wiltshire",SN31 3XQ,51.559434123766096,-1.7761053548747348,15 -11323,Marble Dock E-Waste Collection Bins,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","131 Marble Dock, Swindon, Wiltshire",SN90 8QR,51.55846438511915,-1.7754058819633232,39 -11324,Castle Common Community Compost Bins,Community Compost Bins,Neighborhood composting facility for food and garden waste,"Suite 2 Castle Common, Swindon, Wiltshire",SN92 3AF,51.55464027432397,-1.785271214424094,39 -11325,Garden Mart Recycling Bins,Recycling Bins,Public access recycling bins for common household recyclables,"45 Garden Mart, Swindon, Wiltshire",SN13 9BJ,51.555714524629444,-1.7819171184044378,18 -11326,Community Clothing Donation Bins Swindon 4,Clothing Donation Bins,Secure collection point for reusable clothing and textiles,"133 Pond Causeway, Swindon, Wiltshire",SN13 8LH,51.55493025526488,-1.7839152775569855,15 -11327,Swindon Central Green Roofs 2,Green Roofs,Public building showcasing sustainable rooftop vegetation,"Unit 6 Iron End, Swindon, Wiltshire",SN72 8MS,51.55386813059611,-1.7838295599635914,14 -11328,Swindon Rock Hill Waste Oil Collection Points,Waste Oil Collection Points,Cooking oil recycling point for residential use,"Suite 3 Rock Hill, Swindon, Wiltshire",SN32 2DU,51.557365259309954,-1.7744133486368647,37 -11329,Swindon Bike Share Stations 5,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"57 Market Street, Swindon, Wiltshire",SN80 3WY,51.55846428891177,-1.783203464492067,48 -11330,Rainwater Harvesting Systems at Victoria Bottom,Rainwater Harvesting Systems,Urban water conservation project with storage tanks,"22 Victoria Bottom, Swindon, Wiltshire",SN67 5AZ,51.55923538258014,-1.7745542248642918,43 -11331,Swindon Battery Recycling Points 2,Battery Recycling Points,Battery collection point with educational information about recycling,"Suite 2 Carbon Meadow, Swindon, Wiltshire",SN11 9PC,51.5534205174295,-1.7748605210883817,41 -11332,Community Book Swap Stations Swindon 5,Book Swap Stations,Little free library with take-one-leave-one system,"20 Silicon Circus, Swindon, Wiltshire",SN64 7UE,51.55537170329096,-1.7740795102834346,4 -11333,Swindon Community Tool Libraries 7,Community Tool Libraries,Shared equipment facility reducing need for individual ownership,"128 Forge Bay, Swindon, Wiltshire",SN89 9EM,51.557019466341984,-1.7778085181739318,39 -11334,Swindon Solar-Powered Benches 4,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"198 King Place, Swindon, Wiltshire",SN40 1KU,51.55182211788828,-1.7829421287097962,9 -11335,Rock Helix Bike Share Stations,Bike Share Stations,Community bike share point with regular and electric bicycles,"101 Rock Helix, Warrington, Cheshire",WA61 2FV,53.39297322695884,-2.5990665371298673,20 -11336,Community Public EV Charging Stations Warrington 4,Public EV Charging Stations,Multi-vehicle electric charging hub with different power options,"125 Reservoir Pentagon, Warrington, Cheshire",WA97 3QT,53.38692385440474,-2.595570733105408,13 -11337,Warrington Sand Cross Book Swap Stations,Book Swap Stations,Public book sharing library in repurposed phone box,"50B Sand Cross, Warrington, Cheshire",WA81 3HY,53.38670157959902,-2.5949813085224473,19 -11338,High Ridge Community Tool Libraries,Community Tool Libraries,Shared equipment facility reducing need for individual ownership,"Suite 5 High Ridge, Warrington, Cheshire",WA42 7ZU,53.38922087092554,-2.5919890116685025,16 -11339,Warrington Central Bike Share Stations 3,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"34 King Circle, Warrington, Cheshire",WA10 6CY,53.39288122042181,-2.5941236941442445,53 -11340,Warrington Rainwater Harvesting Systems,Rainwater Harvesting Systems,Urban water conservation project with storage tanks,"24 Main Harbor, Warrington, Cheshire",WA5 3LP,53.39344684752735,-2.5966404879077887,45 -11341,Warrington Green Roofs 2,Green Roofs,Public building showcasing sustainable rooftop vegetation,"143 Queen Viaduct, Warrington, Cheshire",WA47 1BE,53.38974710966506,-2.6015438911561173,37 -11342,Warrington Rock Labyrinth E-Waste Collection Bins,E-Waste Collection Bins,Electronic waste drop-off point with data security assurance,"57 Rock Labyrinth, Warrington, Cheshire",WA31 1QA,53.386059874592014,-2.5987695863078626,38 -11343,Warrington Marble Promenade Public Water Refill Stations,Public Water Refill Stations,Accessible water station encouraging reusable bottles,"107 Marble Promenade, Warrington, Cheshire",WA48 5ZA,53.38696884939245,-2.5984018604035746,9 -11344,Bike Share Stations at Clay Circle,Bike Share Stations,Community bike share point with regular and electric bicycles,"28 Clay Circle, Warrington, Cheshire",WA45 2LU,53.39214805980141,-2.6007313545621016,18 -11345,Warrington Wood Port Community Compost Bins,Community Compost Bins,Neighborhood composting facility for food and garden waste,"113C Wood Port, Warrington, Cheshire",WA38 6XH,53.388059465195795,-2.5998050638854724,12 -11346,Warrington Solar-Powered Benches 3,Solar-Powered Benches,Eco-friendly bench with solar panels and LED lighting,"138 School Mart, Warrington, Cheshire",WA7 2QY,53.3871232478114,-2.5979730012570106,39 -11347,Bike Share Stations at Gold Moor,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"192 Gold Moor, Warrington, Cheshire",WA94 9XC,53.387887460743094,-2.597301945287203,37 -11348,Peterborough School Oval Community Compost Bins,Community Compost Bins,Urban composting hub turning food waste into valuable soil,"33 School Oval, Peterborough, Cambridgeshire",PE48 4RU,52.5687895383291,-0.23962195603446168,8 -11349,Community Rainwater Harvesting Systems Peterborough,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"130 Pool Ferry, Peterborough, Cambridgeshire",PE18 8UQ,52.572051695869995,-0.23963419075126122,9 -11350,Community Community Tool Libraries Peterborough,Community Tool Libraries,Public tool library with wide range of equipment available,"Flat 40 Gravel Pentagon, Peterborough, Cambridgeshire",PE51 4PG,52.571318164505094,-0.2427500215623627,19 -11351,Peterborough Green Roofs,Green Roofs,Green roof installation with educational tours available,"149 Oxygen End, Peterborough, Cambridgeshire",PE33 5RA,52.56921664677249,-0.23521946198491314,38 -11352,Peterborough Central e-Scooters 3,e-Scooters,Electric scooter hub with maintenance and charging facilities,"1 Chalk Mews, Peterborough, Cambridgeshire",PE5 4YR,52.56985410929828,-0.23756901256026305,8 -11353,Community Green Roofs Peterborough 2,Green Roofs,Green roof installation with educational tours available,"167 Forest Way, Peterborough, Cambridgeshire",PE69 8JW,52.57338952113235,-0.23645441920101232,52 -11354,Peterborough Central Public Water Refill Stations,Public Water Refill Stations,Community water dispenser with usage counter display,"159 Windmill Trail, Peterborough, Cambridgeshire",PE59 9FE,52.56587056979985,-0.2354374611888764,30 -11355,Pollinator Gardens at House Crescent,Pollinator Gardens,Bee-friendly garden with educational signage about pollinators,"45 House Crescent, Peterborough, Cambridgeshire",PE51 9XC,52.566449136726234,-0.240294413791918,35 -11356,Peterborough Central Waste Oil Collection Points,Waste Oil Collection Points,Cooking oil collection facility with educational information,"54 Castle Embankment, Peterborough, Cambridgeshire",PE41 9QE,52.566119595092566,-0.2350353159572311,50 -11357,Community Public EV Charging Stations Peterborough,Public EV Charging Stations,Fast-charging station for electric vehicles,"50 Mine Grove, Peterborough, Cambridgeshire",PE80 7MF,52.56994794102369,-0.23535561819423076,1 -11358,Marble Gallery Solar-Powered Benches,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"78 Marble Gallery, Peterborough, Cambridgeshire",PE42 8NU,52.568782704356735,-0.23667087248915772,50 -11359,Community e-Scooters Peterborough 2,e-Scooters,Designated e-scooter pickup and drop-off point,"157 Wood Wharf, Peterborough, Cambridgeshire",PE47 2YR,52.5711491173516,-0.24569845528427509,18 -11360,Peterborough Public EV Charging Stations 3,Public EV Charging Stations,Multi-vehicle electric charging hub with different power options,"74 Chalk Beach, Peterborough, Cambridgeshire",PE92 5ZH,52.56829142103277,-0.24314427114788645,46 -11361,Peterborough Recycling Bins 4,Recycling Bins,Public access recycling bins for common household recyclables,"65 Nitrogen Emporium, Peterborough, Cambridgeshire",PE53 4XZ,52.570588573579165,-0.24621613468360962,43 -11362,Peterborough Queen Esplanade Pollinator Gardens,Pollinator Gardens,Bee-friendly garden with educational signage about pollinators,"Unit 9 Queen Esplanade, Peterborough, Cambridgeshire",PE65 2AP,52.571203266458966,-0.24177371208628773,10 -11363,Ipswich Green Roofs 2,Green Roofs,Biodiverse roof garden with insect habitats and rainwater collection,"169 Forge Bridge, Ipswich, Suffolk",IP38 3WA,52.05705741407875,1.1444527488811713,8 -11364,Ipswich Central Waste Oil Collection Points 6,Waste Oil Collection Points,Cooking oil collection facility with educational information,"48 Cove Turn, Ipswich, Suffolk",IP3 5QU,52.059633981544444,1.1429782817401883,10 -11365,Ipswich Central Green Roofs 3,Green Roofs,Building with extensive green roof system visible from public areas,"144 Grange Road, Ipswich, Suffolk",IP23 6FH,52.05748089239167,1.1518290874665105,39 -11366,Ipswich Central E-Waste Collection Bins 4,E-Waste Collection Bins,Electronic waste drop-off point with data security assurance,"198 Bridge Helix, Ipswich, Suffolk",IP4 3PH,52.059421481476676,1.143871179220057,40 -11367,Carbon Corner Public Water Refill Stations,Public Water Refill Stations,Water refill point with filtered water options,"48 Carbon Corner, Ipswich, Suffolk",IP81 9UE,52.05311348569779,1.145112889405626,10 -11368,Community e-Scooters Ipswich,e-Scooters,Designated e-scooter pickup and drop-off point,"93 Mine Meadow, Ipswich, Suffolk",IP7 9AU,52.0531311682082,1.1458477691562925,51 -11369,Ipswich Public Water Refill Stations 5,Public Water Refill Stations,Accessible water station encouraging reusable bottles,"Suite 5 Nitrogen Drive, Ipswich, Suffolk",IP12 9DE,52.05447087584749,1.142209215859249,14 -11370,Cathedral Tor Clothing Donation Bins,Clothing Donation Bins,Community clothing recycling bin with regular collection,"129D Cathedral Tor, Ipswich, Suffolk",IP14 4QR,52.058914975504436,1.14381595923792,40 -11371,Ipswich Central Book Swap Stations 2,Book Swap Stations,Community book exchange point with weatherproof shelving,"163B Queen Embankment, Ipswich, Suffolk",IP17 5SB,52.05427859594102,1.1466863529122047,27 -11372,Ipswich Rainwater Harvesting Systems 2,Rainwater Harvesting Systems,Visible rainwater storage and filtration system,"102 Valley Twist, Ipswich, Suffolk",IP86 6KU,52.05988505994214,1.1465593607093016,21 -11373,Ipswich Central Battery Recycling Points,Battery Recycling Points,Battery collection point with educational information about recycling,"13 Flint Avenue, Ipswich, Suffolk",IP65 2UC,52.05339579384333,1.145045019811257,51 -11374,Ipswich Central Bike Share Stations 2,Bike Share Stations,Bike sharing facility with maintenance and repair services,"95 Queen Strand, Ipswich, Suffolk",IP19 1ZF,52.059823595127504,1.1503092919961453,10 -11375,Community Green Roofs Ipswich 2,Green Roofs,Public building showcasing sustainable rooftop vegetation,"Unit 18 Green Crag, Ipswich, Suffolk",IP38 6DP,52.0529901588528,1.1457327623069262,28 -11376,Reservoir Gate Green Roofs,Green Roofs,Green roof installation with educational tours available,"111 Reservoir Gate, Ipswich, Suffolk",IP77 6JE,52.05329334357425,1.1531358455452805,48 -11377,Solar-Powered Benches at Abbey Down,Solar-Powered Benches,Solar-powered rest area with phone charging capabilities,"161 Abbey Down, Ipswich, Suffolk",IP19 6AR,52.05510079068203,1.143184684894313,31 -11378,Ipswich e-Scooters,e-Scooters,Designated e-scooter pickup and drop-off point,"33 Old Wharf, Ipswich, Suffolk",IP30 4EN,52.058715220901384,1.146145685200971,4 -11379,Ipswich Field Bridge Green Roofs,Green Roofs,Accessible green roof garden with native plant species,"168 Field Bridge, Ipswich, Suffolk",IP79 5AT,52.05392475074457,1.1447541582934795,20 -11380,Community Battery Recycling Points Ipswich 6,Battery Recycling Points,Secure battery recycling station to prevent environmental contamination,"140 Clay Tunnel, Ipswich, Suffolk",IP4 1AV,52.054303955355216,1.1443791748104766,9 -11381,Ipswich Central Community Compost Bins 5,Community Compost Bins,Community compost bins with educational signage,"Unit 4 Tin Bridge, Ipswich, Suffolk",IP61 6FX,52.05989262016865,1.1526335198011632,16 -11382,Pewter Maze E-Waste Collection Bins,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","2 Pewter Maze, Ipswich, Suffolk",IP10 2AY,52.05576293020235,1.1525022364650508,47 -11383,Ipswich London Meadow Battery Recycling Points,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"194 London Meadow, Ipswich, Suffolk",IP1 4GG,52.058397999356416,1.1510428177019594,35 -11384,e-Scooters at Park Way,e-Scooters,Electric scooter hub with maintenance and charging facilities,"18 Park Way, Sunderland, Tyne and Wear",SR97 1AR,54.90294688126067,-1.3788363297322348,19 -11385,Sunderland Community Tool Libraries 6,Community Tool Libraries,Community resource center for borrowing tools and equipment,"Suite 5 Green Port, Sunderland, Tyne and Wear",SR88 5RK,54.90843630537145,-1.3828123192230815,21 -11386,Sunderland Central Green Roofs 2,Green Roofs,Accessible green roof garden with native plant species,"Unit 11 Lead Ring, Sunderland, Tyne and Wear",SR10 4FJ,54.909305882099495,-1.3825120935107669,23 -11387,Green Roofs at Cliff Cliff,Green Roofs,Green roof installation with educational tours available,"2 Cliff Cliff, Sunderland, Tyne and Wear",SR9 9FF,54.91072474724451,-1.3775472271073002,37 -11388,Community Battery Recycling Points Sunderland 4,Battery Recycling Points,Battery collection point with educational information about recycling,"162 Nitrogen Bend, Sunderland, Tyne and Wear",SR57 1JB,54.90535920947247,-1.383321179680232,49 -11389,Community e-Scooters Sunderland 4,e-Scooters,Designated e-scooter pickup and drop-off point,"182 Mill Crag, Sunderland, Tyne and Wear",SR67 2CL,54.90767532884655,-1.3824429013435104,49 -11390,Steel Road Pollinator Gardens,Pollinator Gardens,Urban wildflower meadow supporting biodiversity,"193 Steel Road, Sunderland, Tyne and Wear",SR57 8DH,54.90668708380451,-1.3787449278805708,28 -11391,Public Water Refill Stations at Carbon Fair,Public Water Refill Stations,Community water dispenser with usage counter display,"71 Carbon Fair, Sunderland, Tyne and Wear",SR90 8CT,54.904098444075736,-1.3862795639855532,8 -11392,School Helix e-Scooters,e-Scooters,Designated e-scooter pickup and drop-off point,"184 School Helix, Sunderland, Tyne and Wear",SR28 3FQ,54.90348595864433,-1.3882756421320637,35 -11393,Community Rainwater Harvesting Systems Sunderland 4,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"188 Field Port, Sunderland, Tyne and Wear",SR76 7TT,54.910744416511754,-1.3865041878657163,34 -11394,Solar-Powered Benches at Orchard Parade,Solar-Powered Benches,Solar bench with USB charging ports and WiFi connectivity,"184 Orchard Parade, Sunderland, Tyne and Wear",SR3 6NN,54.90863182772531,-1.3799920808830757,29 -11395,Sunderland Central Waste Oil Collection Points 2,Waste Oil Collection Points,Cooking oil collection facility with educational information,"8F Bay Lane, Sunderland, Tyne and Wear",SR88 4VY,54.91041256627058,-1.3773782976542543,29 -11396,e-Scooters at London Wharf,e-Scooters,E-scooter sharing station with app-based rental system,"63 London Wharf, Sunderland, Tyne and Wear",SR85 7ZT,54.905864306287384,-1.380993149902771,25 -11397,Sunderland Central Community Tool Libraries 3,Community Tool Libraries,Shared equipment facility reducing need for individual ownership,"5 Castle Trail, Sunderland, Tyne and Wear",SR73 1KK,54.908223735528175,-1.3877661820271585,48 -11398,Oxford Stone Market Urban Farms,Urban Farms,Community-run urban farm providing local produce,"18 Stone Market, Oxford, Oxfordshire",OX84 8PA,51.755217933105754,-1.2528101045882563,7 -11399,Valley Bay Battery Recycling Points,Battery Recycling Points,Battery recycling bin with separate compartments for different types,"56 Valley Bay, Oxford, Oxfordshire",OX70 3CW,51.753624740042525,-1.2587223087855515,3 -11400,Oxford Central Solar-Powered Benches 3,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"16 Clay Trail, Oxford, Oxfordshire",OX13 6HF,51.75266435776793,-1.2634528808326828,9 -11401,Bay Turn Waste Oil Collection Points,Waste Oil Collection Points,Cooking oil collection facility with educational information,"79 Bay Turn, Oxford, Oxfordshire",OX53 7LD,51.755515130835846,-1.2555608372154958,16 -11402,Public Water Refill Stations at Pond Labyrinth,Public Water Refill Stations,Free water refill station to reduce plastic bottle usage,"59C Pond Labyrinth, Oxford, Oxfordshire",OX90 6WA,51.752591974295406,-1.2555769445577105,42 -11403,Mill Green Clothing Donation Bins,Clothing Donation Bins,Community clothing recycling bin with regular collection,"69 Mill Green, Oxford, Oxfordshire",OX24 1CL,51.74947299690605,-1.2595707511239422,15 -11404,High Top Clothing Donation Bins,Clothing Donation Bins,Secure collection point for reusable clothing and textiles,"169 High Top, Oxford, Oxfordshire",OX88 7BP,51.74843155731143,-1.2583259193857617,17 -11405,Oxford Cove Esplanade Public Water Refill Stations,Public Water Refill Stations,Free water refill station to reduce plastic bottle usage,"90 Cove Esplanade, Oxford, Oxfordshire",OX72 6TG,51.754182474405766,-1.2627458087942285,52 -11406,Cottage Coil Battery Recycling Points,Battery Recycling Points,Secure battery recycling station to prevent environmental contamination,"80 Cottage Coil, Oxford, Oxfordshire",OX37 9UJ,51.75184534969971,-1.2609585822380687,53 -11407,Oxford Clothing Donation Bins 2,Clothing Donation Bins,Textile donation point preventing landfill waste,"165 Mount Crag, Oxford, Oxfordshire",OX38 6AN,51.75420573532418,-1.2585423654433043,47 -11408,Oxford Lodge Circle Urban Farms,Urban Farms,Community-run urban farm providing local produce,"Suite 2 Lodge Circle, Oxford, Oxfordshire",OX45 9DL,51.75357408469864,-1.2525570218203945,53 -11409,Field Twist Public EV Charging Stations,Public EV Charging Stations,EV charging station with renewable energy source,"140 Field Twist, Oxford, Oxfordshire",OX4 9VD,51.7490230255959,-1.254013180071279,25 -11410,Main Ford Pollinator Gardens,Pollinator Gardens,Pollinator-friendly planting area with native flowering species,"Unit 7 Main Ford, Oxford, Oxfordshire",OX54 6QL,51.74853084721975,-1.2517316465205868,46 -11411,Oxford Community Tool Libraries 4,Community Tool Libraries,Tool sharing hub with membership system and workshops,"35 Gravel Bridge, Oxford, Oxfordshire",OX95 8HH,51.75308785551126,-1.2547237442763164,3 -11412,Oxford Public Water Refill Stations 3,Public Water Refill Stations,Free water refill station to reduce plastic bottle usage,"137 Old Ford, Oxford, Oxfordshire",OX87 4HE,51.75429279774611,-1.2521703854316448,31 -11413,Oxford Lead Green Green Roofs,Green Roofs,Green roof installation with educational tours available,"158 Lead Green, Oxford, Oxfordshire",OX4 6XK,51.75098956798832,-1.2575686072356844,12 -11414,Community Solar-Powered Benches Oxford 2,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"156 Green Meadow, Oxford, Oxfordshire",OX40 1ZA,51.7547295971052,-1.2549539514004875,14 -11415,Oxford Public EV Charging Stations 3,Public EV Charging Stations,Fast-charging station for electric vehicles,"101 Railway Promenade, Oxford, Oxfordshire",OX46 8JL,51.74977237706947,-1.2555663760850673,50 -11416,Battery Recycling Points at Beach Twist,Battery Recycling Points,Battery collection point with educational information about recycling,"132 Beach Twist, Oxford, Oxfordshire",OX79 1TP,51.75140620764868,-1.2528686906761812,22 -11417,Oxford Pollinator Gardens 5,Pollinator Gardens,Urban wildflower meadow supporting biodiversity,"92 Pit Road, Oxford, Oxfordshire",OX30 2EF,51.748380863069826,-1.2582974878430038,1 -11418,Oxford Central Pollinator Gardens 5,Pollinator Gardens,Bee-friendly garden with educational signage about pollinators,"29 Stream Heath, Oxford, Oxfordshire",OX40 8KN,51.74846865979066,-1.2519078783466528,53 -11419,Community Clothing Donation Bins Oxford 2,Clothing Donation Bins,Clothing donation bin supporting local charities,"149 Hospital Pike, Oxford, Oxfordshire",OX99 6BJ,51.75331482823887,-1.2541992777240094,49 -11420,Oxford Public EV Charging Stations 4,Public EV Charging Stations,EV charging station with renewable energy source,"11 Castle Strand, Oxford, Oxfordshire",OX30 7HJ,51.75400166358739,-1.2630552548928564,20 -11421,Wolverhampton Central Book Swap Stations 3,Book Swap Stations,Neighborhood book exchange with rotating collection,"27 Mill Path, Wolverhampton, West Midlands",WV24 9NU,52.585680752415215,-2.1338277511947554,29 -11422,Cove Ferry Recycling Bins,Recycling Bins,Multi-material recycling point with clear instructions for proper sorting,"116 Cove Ferry, Wolverhampton, West Midlands",WV86 6MD,52.588127953856464,-2.1295910009639956,40 -11423,Wolverhampton Railway Esplanade Waste Oil Collection Points,Waste Oil Collection Points,Cooking oil recycling point for residential use,"Suite 6 Railway Esplanade, Wolverhampton, West Midlands",WV62 5DC,52.59095834442174,-2.1238972878748292,51 -11424,Wolverhampton Bike Share Stations 3,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"Suite 9 Zinc Park, Wolverhampton, West Midlands",WV52 8XH,52.586039198984224,-2.123973383916837,41 -11425,Cobalt View Battery Recycling Points,Battery Recycling Points,Secure battery recycling station to prevent environmental contamination,"15 Cobalt View, Wolverhampton, West Midlands",WV66 2GJ,52.587843980805204,-2.1260951172543874,5 -11426,Wolverhampton Central Public EV Charging Stations 2,Public EV Charging Stations,Multi-vehicle electric charging hub with different power options,"61 Mount Cross, Wolverhampton, West Midlands",WV90 9YB,52.58430821188996,-2.13038885664059,53 -11427,Wolverhampton Central Community Tool Libraries 3,Community Tool Libraries,Tool lending library for community use and sharing,"99 Rock Exchange, Wolverhampton, West Midlands",WV6 8FZ,52.58364126648384,-2.1302172193013718,53 -11428,Wolverhampton Recycling Bins 5,Recycling Bins,Public access recycling bins for common household recyclables,"154A Old Mall, Wolverhampton, West Midlands",WV50 7ZA,52.59031980443976,-2.1303348262812323,36 -11429,Community Community Compost Bins Wolverhampton 7,Community Compost Bins,Community compost bins with educational signage,"Suite 9 Cliff Circus, Wolverhampton, West Midlands",WV4 1ML,52.589219719093265,-2.1280556071815973,53 -11430,Community Community Compost Bins Wolverhampton 8,Community Compost Bins,Community compost bins with educational signage,"69 Gold Dock, Wolverhampton, West Midlands",WV53 6BB,52.58572084324287,-2.1293625665055655,9 -11431,Wolverhampton Waste Oil Collection Points 2,Waste Oil Collection Points,Community oil recycling station with spill prevention measures,"22 Tin Loop, Wolverhampton, West Midlands",WV9 9SQ,52.588789476843985,-2.125084182383021,1 -11432,e-Scooters at East Spiral,e-Scooters,Electric scooter hub with maintenance and charging facilities,"3 East Spiral, Wolverhampton, West Midlands",WV32 8AL,52.58486178869482,-2.1322940562263115,20 -11433,Wolverhampton Central Clothing Donation Bins 4,Clothing Donation Bins,Clothing donation bin supporting local charities,"106 Orchard Spiral, Wolverhampton, West Midlands",WV29 9EQ,52.588997961747616,-2.1257279162083322,29 -11434,Wood Mall Urban Farms 2,Urban Farms,Urban agriculture site with educational programs,"178 Wood Mall, Wolverhampton, West Midlands",WV93 6SL,52.58576742588756,-2.1266096960357554,6 -11435,Leeds Main Cove Community Compost Bins,Community Compost Bins,Public composting station with separate sections for different stages,"8 Main Cove, Leeds, West Yorkshire",LS94 5HC,53.804579393078306,-1.5491713235464308,30 -11436,Leeds Public EV Charging Stations 6,Public EV Charging Stations,EV charging station with renewable energy source,"18 Field View, Leeds, West Yorkshire",LS8 1MU,53.7997629686841,-1.5431664921579047,47 -11437,Leeds Central Battery Recycling Points 3,Battery Recycling Points,Battery collection point with educational information about recycling,"107 School Tor, Leeds, West Yorkshire",LS14 8XS,53.80122721700406,-1.551336647420749,33 -11438,Leeds Central e-Scooters 3,e-Scooters,Designated e-scooter pickup and drop-off point,"130 Railway Coil, Leeds, West Yorkshire",LS95 4PF,53.79896949241463,-1.5456652755996652,26 -11439,Quarry Helix Pollinator Gardens,Pollinator Gardens,Pollinator-friendly planting area with native flowering species,"162 Quarry Helix, Leeds, West Yorkshire",LS34 4CH,53.8034904987274,-1.5462128493199954,45 -11440,Community Compost Bins at Cliff Rise,Community Compost Bins,Shared compost facility managed by local volunteers,"Flat 49 Cliff Rise, Leeds, West Yorkshire",LS25 2UC,53.79750519561286,-1.5443633550257072,27 -11441,Leeds Central Community Tool Libraries 2,Community Tool Libraries,Public tool library with wide range of equipment available,"Unit 16 South Down, Leeds, West Yorkshire",LS74 3FP,53.79915644110662,-1.5501085456506267,7 -11442,Leeds Book Swap Stations 4,Book Swap Stations,Public book sharing library in repurposed phone box,"12 Stream Exchange, Leeds, West Yorkshire",LS56 8FQ,53.79903183814745,-1.5526506886662381,26 -11443,Pool Heath Book Swap Stations,Book Swap Stations,Little free library with take-one-leave-one system,"86G Pool Heath, Leeds, West Yorkshire",LS38 5ZA,53.801645260742724,-1.5432534084011786,37 -11444,Leeds Waste Oil Collection Points 4,Waste Oil Collection Points,Cooking oil recycling point for residential use,"137 Hospital Side, Leeds, West Yorkshire",LS21 1UG,53.80193997547566,-1.5490443957304176,5 -11445,Leeds Recycling Bins 2,Recycling Bins,Multi-material recycling point with clear instructions for proper sorting,"115 Farm Bottom, Leeds, West Yorkshire",LS6 8PE,53.79824837946164,-1.5548764053309376,24 -11446,Leeds Lodge Crag Rainwater Harvesting Systems,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"79 Lodge Crag, Leeds, West Yorkshire",LS40 2SE,53.797282047504815,-1.5446943625628622,1 -11447,Leeds Brook Top Book Swap Stations,Book Swap Stations,Community book exchange point with weatherproof shelving,"185 Brook Top, Leeds, West Yorkshire",LS91 3UJ,53.796949616602326,-1.5440130268526822,25 -11448,Leeds Garden Labyrinth Urban Farms,Urban Farms,Local food growing initiative in repurposed urban space,"47 Garden Labyrinth, Leeds, West Yorkshire",LS71 8VW,53.80430201749404,-1.5463848243703313,3 -11449,Community Compost Bins at Watermill Green,Community Compost Bins,Shared compost facility managed by local volunteers,"79 Watermill Green, Leeds, West Yorkshire",LS19 7TL,53.79905780042214,-1.5454433983334652,14 -11450,Leeds Rock Edge Clothing Donation Bins,Clothing Donation Bins,Clothing donation bin supporting local charities,"164D Rock Edge, Leeds, West Yorkshire",LS14 5ZG,53.80330127995227,-1.5495231395025646,39 -11451,Leeds Public EV Charging Stations 7,Public EV Charging Stations,Fast-charging station for electric vehicles,"Unit 6 Manor Drive, Leeds, West Yorkshire",LS67 9JP,53.797577529285235,-1.5499870894530903,51 -11452,Leeds Waste Oil Collection Points 5,Waste Oil Collection Points,Used oil collection facility with secure containers,"7 Station Cross, Leeds, West Yorkshire",LS1 5YJ,53.79983766488534,-1.5432464054994557,49 -11453,Leeds Book Swap Stations 5,Book Swap Stations,Free book swap station encouraging reading and reuse,"Suite 10 Neon Ford, Leeds, West Yorkshire",LS92 6XS,53.801163263989864,-1.5534474316024967,50 -11454,Leeds Green Roofs 2,Green Roofs,Biodiverse roof garden with insect habitats and rainwater collection,"198C Brook Grove, Leeds, West Yorkshire",LS27 2YH,53.79763285449664,-1.5520519986494736,30 -11455,Bronze Junction Green Roofs,Green Roofs,Building with extensive green roof system visible from public areas,"3 Bronze Junction, Leeds, West Yorkshire",LS60 9VD,53.79872436269316,-1.5480840170725298,44 -11456,Leeds King Quay Waste Oil Collection Points,Waste Oil Collection Points,Used oil collection facility with secure containers,"183 King Quay, Leeds, West Yorkshire",LS60 3EF,53.8031056494032,-1.5543512082004112,45 -11457,Leeds Recycling Bins 3,Recycling Bins,Community recycling station with separate bins for different materials,"195 Chalk Meadow, Leeds, West Yorkshire",LS87 2GA,53.799398862523425,-1.5526555194251657,38 -11458,Mill Cross Solar-Powered Benches,Solar-Powered Benches,Solar bench with USB charging ports and WiFi connectivity,"111 Mill Cross, Leeds, West Yorkshire",LS91 8QL,53.79867296655173,-1.553460234694716,24 -11459,Leeds Cobalt Crescent Bike Share Stations,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"103 Cobalt Crescent, Leeds, West Yorkshire",LS84 4WD,53.79760754067605,-1.5529581133187527,39 -11460,Leeds Argon Drive Rainwater Harvesting Systems,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"21 Argon Drive, Leeds, West Yorkshire",LS90 4XK,53.8024993675642,-1.5497160420954297,5 -11461,Leeds Recycling Bins 4,Recycling Bins,Multi-material recycling point with clear instructions for proper sorting,"81 Carbon Way, Leeds, West Yorkshire",LS8 8VL,53.79712775835666,-1.5521684299986287,49 -11462,Public EV Charging Stations at Argon Turn,Public EV Charging Stations,Fast-charging station for electric vehicles,"64 Argon Turn, Leeds, West Yorkshire",LS35 2ZC,53.8030994774461,-1.5508697633370507,28 -11463,Community Compost Bins at Mill Passage,Community Compost Bins,Neighborhood composting facility for food and garden waste,"170 Mill Passage, Leeds, West Yorkshire",LS49 2SR,53.801390868043704,-1.5439546447951829,23 -11464,Bike Share Stations at School Cliff,Bike Share Stations,Bike sharing facility with maintenance and repair services,"162 School Cliff, Leeds, West Yorkshire",LS28 4ZN,53.79932142169069,-1.5525226275302226,41 -11465,Leeds Central Recycling Bins 4,Recycling Bins,Multi-material recycling point with clear instructions for proper sorting,"Flat 41 Canal Avenue, Leeds, West Yorkshire",LS25 3FK,53.79826876654261,-1.5440298446112042,9 -11466,Urban Farms at Vineyard Bend,Urban Farms,Local food growing initiative in repurposed urban space,"162 Vineyard Bend, Leeds, West Yorkshire",LS50 5YG,53.79777783354387,-1.5497526343648573,23 -11467,Leeds Barn Dock Community Tool Libraries,Community Tool Libraries,Tool lending library for community use and sharing,"Suite 2 Barn Dock, Leeds, West Yorkshire",LS9 7QZ,53.79834772956022,-1.5530226985020052,36 -11468,Grange Viaduct e-Scooters,e-Scooters,E-scooter sharing station with app-based rental system,"Flat 1 Grange Viaduct, Leeds, West Yorkshire",LS28 1UY,53.80476093771698,-1.5543483815622436,16 -11469,Leeds Central Community Compost Bins 5,Community Compost Bins,Community compost bins with educational signage,"10 Wood Edge, Leeds, West Yorkshire",LS90 3WK,53.79833187604951,-1.5479416390960457,9 -11470,Leeds Central Pollinator Gardens,Pollinator Gardens,Community garden dedicated to supporting local insect populations,"70 Queen Meadow, Leeds, West Yorkshire",LS92 9GP,53.800426767420866,-1.548467238521229,52 -11471,Warrington Valley Street Solar-Powered Benches,Solar-Powered Benches,Solar bench with USB charging ports and WiFi connectivity,"131 Valley Street, Warrington, Cheshire",WA33 4HU,53.38753275077969,-2.5986858723018833,30 -11472,e-Scooters at Meadow Coil,e-Scooters,Dockless e-scooter rental station with multiple vehicles available,"136 Meadow Coil, Warrington, Cheshire",WA24 3EM,53.38936233629074,-2.6012449375461206,40 -11473,West Market Urban Farms,Urban Farms,Community garden with vegetable plots and fruit trees,"53 West Market, Warrington, Cheshire",WA58 6MT,53.38885623348938,-2.5969740058909165,33 -11474,Community Waste Oil Collection Points Warrington 3,Waste Oil Collection Points,Cooking oil collection facility with educational information,"Suite 5 Mount Park, Warrington, Cheshire",WA58 7WH,53.392426106686884,-2.595511671293604,39 -11475,Warrington Aluminium Loop Community Tool Libraries,Community Tool Libraries,Tool lending library for community use and sharing,"Suite 8 Aluminium Loop, Warrington, Cheshire",WA5 6EC,53.38997508322134,-2.5958606847036907,9 -11476,Iron Road Clothing Donation Bins,Clothing Donation Bins,Clothing donation bin supporting local charities,"179 Iron Road, Warrington, Cheshire",WA36 1PA,53.39137003945012,-2.5991393233143345,30 -11477,Warrington Central Clothing Donation Bins 5,Clothing Donation Bins,Textile recycling point for clothes and household fabrics,"192 Helium Rise, Warrington, Cheshire",WA40 1MW,53.39299891263933,-2.5919656899548476,41 -11478,Community Battery Recycling Points Warrington,Battery Recycling Points,Battery collection point with educational information about recycling,"88 Granite Heights, Warrington, Cheshire",WA98 4QL,53.393037602902105,-2.6001151001170775,36 -11479,Station Emporium Green Roofs,Green Roofs,Accessible green roof garden with native plant species,"159 Station Emporium, Warrington, Cheshire",WA49 6ZW,53.39340782740953,-2.6005345669624966,37 -11480,Warrington Central Urban Farms 3,Urban Farms,Urban agriculture site with educational programs,"55 School Turn, Warrington, Cheshire",WA58 7YB,53.39003048085303,-2.5968911519488755,42 -11481,Warrington Bike Share Stations 5,Bike Share Stations,Community bike share point with regular and electric bicycles,"45 Copper Walk, Warrington, Cheshire",WA12 5UN,53.39095881209532,-2.594744543422169,45 -11482,Community Community Tool Libraries Warrington 2,Community Tool Libraries,Shared equipment facility reducing need for individual ownership,"62 Valley Bend, Warrington, Cheshire",WA71 8MK,53.3867233556322,-2.591027905500886,8 -11483,Warrington Brook Alley Battery Recycling Points,Battery Recycling Points,Secure battery recycling station to prevent environmental contamination,"191 Brook Alley, Warrington, Cheshire",WA19 6ZX,53.38629364686899,-2.5942228791132425,28 -11484,Warrington Forge Park Pollinator Gardens,Pollinator Gardens,Bee-friendly garden with educational signage about pollinators,"136 Forge Park, Warrington, Cheshire",WA50 3MH,53.39376172954924,-2.597644958368468,10 -11485,Community Recycling Bins Warrington 3,Recycling Bins,Public access recycling bins for common household recyclables,"68 Garden Pike, Warrington, Cheshire",WA42 4XF,53.387289560893386,-2.5974889961304877,48 -11486,Warrington Public EV Charging Stations 3,Public EV Charging Stations,EV charging station with renewable energy source,"130 Neon Fell, Warrington, Cheshire",WA63 8JW,53.3894991821992,-2.599220043973929,2 -11487,Flint Ferry Urban Farms,Urban Farms,Community-run urban farm providing local produce,"Suite 10 Flint Ferry, Warrington, Cheshire",WA1 3FL,53.393648821760856,-2.593468855477227,43 -11488,Battery Recycling Points at Castle Quay,Battery Recycling Points,Secure battery recycling station to prevent environmental contamination,"22 Castle Quay, Warrington, Cheshire",WA98 4GU,53.392556273223754,-2.5967970058414744,36 -11489,Community Clothing Donation Bins Warrington 4,Clothing Donation Bins,Textile recycling point for clothes and household fabrics,"14 New Place, Warrington, Cheshire",WA22 5TP,53.390610443273246,-2.5968774665433507,8 -11490,Warrington Public EV Charging Stations 4,Public EV Charging Stations,Multi-vehicle electric charging hub with different power options,"112 High Maze, Warrington, Cheshire",WA22 6CT,53.38843894316013,-2.5966590881686344,24 -11491,Helium Street Solar-Powered Benches,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"153 Helium Street, Warrington, Cheshire",WA15 8MV,53.38761076047287,-2.5911220799584522,17 -11492,Community Green Roofs Warrington 4,Green Roofs,Public building showcasing sustainable rooftop vegetation,"200 Neon Walk, Warrington, Cheshire",WA36 7WM,53.3901458495095,-2.596548626138028,40 -11493,Book Swap Stations at Well Quay,Book Swap Stations,Public book sharing library in repurposed phone box,"Suite 8 Well Quay, Bristol, Bristol",BS75 2BL,51.45690880113529,-2.5908955381031826,18 -11494,Community Green Roofs Bristol 4,Green Roofs,Accessible green roof garden with native plant species,"Suite 7 Lodge Meadow, Bristol, Bristol",BS56 1MJ,51.4560789526114,-2.5849858648541924,40 -11495,Community Public EV Charging Stations Bristol,Public EV Charging Stations,Public EV charging facility with covered waiting area,"67 Cottage Helix, Bristol, Bristol",BS84 6WH,51.45396930397688,-2.5925671057982456,16 -11496,Bristol Solar-Powered Benches 8,Solar-Powered Benches,Eco-friendly bench with solar panels and LED lighting,"164 Mount Harbor, Bristol, Bristol",BS97 5YD,51.45233541713243,-2.5824887750555496,4 -11497,Bronze Mews Book Swap Stations,Book Swap Stations,Neighborhood book exchange with rotating collection,"196 Bronze Mews, Bristol, Bristol",BS44 4PV,51.450785104473916,-2.591647737660525,1 -11498,Cottage Wharf Book Swap Stations,Book Swap Stations,Free book swap station encouraging reading and reuse,"124 Cottage Wharf, Bristol, Bristol",BS24 1AG,51.45506344749549,-2.590240041734109,29 -11499,Bike Share Stations at Manor Grove,Bike Share Stations,Bike rental hub with secure docking stations,"117 Manor Grove, Bristol, Bristol",BS73 1HC,51.45395863195772,-2.582110155820822,9 -11500,Bristol Old Square E-Waste Collection Bins,E-Waste Collection Bins,Secure collection point for electronic waste and small appliances,"186 Old Square, Bristol, Bristol",BS2 5SS,51.45839946950706,-2.5837868080499304,28 -11501,Bristol Recycling Bins 3,Recycling Bins,Multi-material recycling point with clear instructions for proper sorting,"182 Helium Port, Bristol, Bristol",BS60 5LC,51.45183356886111,-2.584811062612865,44 -11502,Waste Oil Collection Points at Tin Spiral,Waste Oil Collection Points,Cooking oil recycling point for residential use,"136 Tin Spiral, Bristol, Bristol",BS32 8PY,51.45261546752713,-2.588062911958576,13 -11503,Community Pollinator Gardens Bristol 5,Pollinator Gardens,Public garden designed to support bees and butterflies,"Unit 10 Krypton Passage, Bristol, Bristol",BS26 9SU,51.45659878563254,-2.5913407902112184,43 -11504,Bristol Central Public Water Refill Stations 6,Public Water Refill Stations,Accessible water station encouraging reusable bottles,"22 North Spiral, Bristol, Bristol",BS15 9ZZ,51.45456197148275,-2.587830571409814,50 -11505,Bristol Battery Recycling Points 7,Battery Recycling Points,Secure battery recycling station to prevent environmental contamination,"Flat 20 Aluminium Park, Bristol, Bristol",BS36 6KT,51.45162303939006,-2.583305189434861,19 -11506,Bristol Public Water Refill Stations 6,Public Water Refill Stations,Water refill point with filtered water options,"58 Castle Heath, Bristol, Bristol",BS56 4MT,51.455422182064446,-2.5921175098488636,45 -11507,Clothing Donation Bins at Windmill Ford,Clothing Donation Bins,Textile donation point preventing landfill waste,"23 Windmill Ford, Bristol, Bristol",BS34 4ZW,51.452479839028335,-2.5925312021812195,13 -11508,Community Public Water Refill Stations Bristol 2,Public Water Refill Stations,Free water refill station to reduce plastic bottle usage,"113 Silicon Passage, Bristol, Bristol",BS77 1FP,51.45684893414021,-2.583250468160026,45 -11509,Bristol Rainwater Harvesting Systems 4,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"72 Green Mart, Bristol, Bristol",BS85 5PS,51.45562540768758,-2.5918174356284833,29 -11510,Bristol Tin Turn Community Compost Bins,Community Compost Bins,Shared compost facility managed by local volunteers,"85 Tin Turn, Bristol, Bristol",BS63 5JK,51.45489297812139,-2.589802475021249,24 -11511,Bristol Central Rainwater Harvesting Systems 4,Rainwater Harvesting Systems,Urban water conservation project with storage tanks,"Unit 1 Watermill Bank, Bristol, Bristol",BS17 9RL,51.451886006102235,-2.5933564541936462,24 -11512,Battery Recycling Points at Valley Common,Battery Recycling Points,Dedicated collection point for used batteries of all sizes,"45 Valley Common, Bristol, Bristol",BS44 5AQ,51.45711319323364,-2.584493116401304,18 -11513,Bristol Central e-Scooters 3,e-Scooters,E-scooter parking and charging zone for public use,"3 South Crescent, Bristol, Bristol",BS49 9AF,51.45506331289443,-2.582474226609071,9 -11514,Community Community Tool Libraries Bristol 2,Community Tool Libraries,Tool sharing hub with membership system and workshops,"5 Canal End, Bristol, Bristol",BS66 6UE,51.452214534366334,-2.59351982859819,41 -11515,Bristol New Harbor Bike Share Stations,Bike Share Stations,Community bike share point with regular and electric bicycles,"124 New Harbor, Bristol, Bristol",BS75 8RE,51.455506526306245,-2.5895285847101803,47 -11516,Public EV Charging Stations at Granite Parade,Public EV Charging Stations,Fast-charging station for electric vehicles,"62 Granite Parade, Bristol, Bristol",BS67 4DZ,51.45427297929745,-2.5898000826488867,10 -11517,Bristol Solar-Powered Benches 9,Solar-Powered Benches,Solar bench with USB charging ports and WiFi connectivity,"190 Tin Way, Bristol, Bristol",BS54 7VK,51.45063032849546,-2.583227378319611,2 -11518,Community Compost Bins at School Grove,Community Compost Bins,Neighborhood composting facility for food and garden waste,"38 School Grove, Carlisle, Cumbria",CA90 9SJ,54.89376117727527,-2.9336625731630965,13 -11519,Carlisle Central Waste Oil Collection Points 3,Waste Oil Collection Points,Used oil collection facility with secure containers,"156 King Market, Carlisle, Cumbria",CA9 3AS,54.89912415178823,-2.9313582561040907,2 -11520,Carlisle Lodge Cross Public Water Refill Stations,Public Water Refill Stations,Community water dispenser with usage counter display,"61 Lodge Cross, Carlisle, Cumbria",CA94 3RS,54.89712760471092,-2.9285875319233474,11 -11521,Carlisle Central Pollinator Gardens 3,Pollinator Gardens,Urban wildflower meadow supporting biodiversity,"60 Pewter Oval, Carlisle, Cumbria",CA48 3DB,54.89873123068357,-2.930644812768562,53 -11522,Carlisle Central Battery Recycling Points 2,Battery Recycling Points,Battery collection point with educational information about recycling,"111 Pool Lane, Carlisle, Cumbria",CA62 2KL,54.891419473356386,-2.9360332485954737,48 -11523,Carlisle Central Solar-Powered Benches 3,Solar-Powered Benches,Solar-powered rest area with phone charging capabilities,"165 Slate Ford, Carlisle, Cumbria",CA75 8GJ,54.89361169127837,-2.929633274394315,23 -11524,Carlisle Mill Ridge Bike Share Stations,Bike Share Stations,Community bike share point with regular and electric bicycles,"127 Mill Ridge, Carlisle, Cumbria",CA18 6SS,54.89660818530685,-2.929467172778979,21 -11525,Carlisle Community Tool Libraries 4,Community Tool Libraries,Tool lending library for community use and sharing,"Suite 6 Argon Viaduct, Carlisle, Cumbria",CA9 9NU,54.89661916878324,-2.938517969412534,48 -11526,Community Rainwater Harvesting Systems Carlisle 4,Rainwater Harvesting Systems,Visible rainwater storage and filtration system,"137 Cove Gardens, Carlisle, Cumbria",CA83 7BD,54.89653579703306,-2.9388067660940327,6 -11527,Carlisle e-Scooters 3,e-Scooters,E-scooter parking and charging zone for public use,"Suite 1 Reservoir Common, Carlisle, Cumbria",CA8 1PN,54.893433260556584,-2.927744875343692,51 -11528,Urban Farms at Hydrogen Close,Urban Farms,Local food growing initiative in repurposed urban space,"31 Hydrogen Close, Manchester, Greater Manchester",M25 5AJ,53.48354335790395,-2.245767236037383,30 -11529,Manchester Central Book Swap Stations 2,Book Swap Stations,Free book swap station encouraging reading and reuse,"96 Orchard Beach, Manchester, Greater Manchester",M35 2HN,53.4770413158202,-2.242639844413218,20 -11530,Manchester Rainwater Harvesting Systems 2,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"93 Copper Path, Manchester, Greater Manchester",M20 3LL,53.47961200006077,-2.2461233672537997,40 -11531,Community Community Compost Bins Manchester 3,Community Compost Bins,Urban composting hub turning food waste into valuable soil,"90 Hospital Moor, Manchester, Greater Manchester",M61 5DN,53.47798872981876,-2.2384886568117537,47 -11532,Manchester Recycling Bins 3,Recycling Bins,Multi-material recycling point with clear instructions for proper sorting,"47 Vineyard Quay, Manchester, Greater Manchester",M52 1JP,53.47990931189566,-2.2368646044656506,50 -11533,Manchester Central Community Compost Bins 4,Community Compost Bins,Urban composting hub turning food waste into valuable soil,"74 Hospital Esplanade, Manchester, Greater Manchester",M80 1WH,53.478794210625715,-2.243693783737772,30 -11534,Manchester Valley Wharf Waste Oil Collection Points,Waste Oil Collection Points,Waste oil drop-off point for conversion to biodiesel,"148 Valley Wharf, Manchester, Greater Manchester",M34 1XR,53.480808004803855,-2.246660282869939,24 -11535,Reservoir Exchange Solar-Powered Benches,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"164 Reservoir Exchange, Manchester, Greater Manchester",M86 6CM,53.48028169083217,-2.242755727171983,8 -11536,Community Community Compost Bins Manchester 4,Community Compost Bins,Shared compost facility managed by local volunteers,"109 Silicon Ridge, Manchester, Greater Manchester",M6 1VC,53.47855814413013,-2.2432845723291823,22 -11537,Recycling Bins at Brook Octagon,Recycling Bins,Public access recycling bins for common household recyclables,"107 Brook Octagon, Manchester, Greater Manchester",M88 9TL,53.478704875822984,-2.2483823894737776,35 -11538,Community Community Tool Libraries Bolton 4,Community Tool Libraries,Tool sharing hub with membership system and workshops,"Flat 43 Court Mews, Bolton, Greater Manchester",BL95 3BK,53.576856796936646,-2.433230688925956,26 -11539,Bolton Iron Gallery Rainwater Harvesting Systems,Rainwater Harvesting Systems,Community rainwater collection facility for shared gardens,"174 Iron Gallery, Bolton, Greater Manchester",BL99 8LG,53.582207649790305,-2.4260815372481837,7 -11540,Waste Oil Collection Points at Radon Circus,Waste Oil Collection Points,Used oil collection facility with secure containers,"190 Radon Circus, Bolton, Greater Manchester",BL6 5RE,53.58189280824185,-2.4301250268792565,32 -11541,Gold Boulevard Public Water Refill Stations,Public Water Refill Stations,Water refill point with filtered water options,"124 Gold Boulevard, Bolton, Greater Manchester",BL45 3ZY,53.58032257046977,-2.427876122824202,12 -11542,Pool Fair Battery Recycling Points,Battery Recycling Points,Secure battery recycling station to prevent environmental contamination,"43 Pool Fair, Bolton, Greater Manchester",BL67 1PB,53.58231927046942,-2.431231622892528,44 -11543,Community Urban Farms Bolton 4,Urban Farms,Urban agriculture site with educational programs,"149 Silver Meadow, Bolton, Greater Manchester",BL65 5GG,53.57642073962686,-2.4347615537794396,18 -11544,Community Rainwater Harvesting Systems Bolton 4,Rainwater Harvesting Systems,Urban water conservation project with storage tanks,"108 Priory Embankment, Bolton, Greater Manchester",BL36 7ER,53.58141497912627,-2.4306107572518805,34 -11545,Watermill Quay Bike Share Stations,Bike Share Stations,Bike rental hub with secure docking stations,"160 Watermill Quay, Bolton, Greater Manchester",BL22 5KY,53.57750125127147,-2.4342140572996587,4 -11546,Granite Boulevard Waste Oil Collection Points,Waste Oil Collection Points,Used oil collection facility with secure containers,"96 Granite Boulevard, Bolton, Greater Manchester",BL87 8HG,53.58204098512751,-2.4244202432683166,12 -11547,Bolton Slate Loop Green Roofs,Green Roofs,Green roof installation with educational tours available,"153 Slate Loop, Bolton, Greater Manchester",BL57 7QM,53.579110485283245,-2.4276923159456345,25 -11548,University Wharf Public EV Charging Stations,Public EV Charging Stations,Multi-vehicle electric charging hub with different power options,"91 University Wharf, Bolton, Greater Manchester",BL73 2LJ,53.575906615784724,-2.431868725934121,9 -11549,Bolton Pollinator Gardens 2,Pollinator Gardens,Public garden designed to support bees and butterflies,"10 Neon Path, Bolton, Greater Manchester",BL67 2MB,53.58171986959247,-2.4333381503964366,47 -11550,Community Battery Recycling Points Bolton 4,Battery Recycling Points,Dedicated collection point for used batteries of all sizes,"101D Chalk Embankment, Bolton, Greater Manchester",BL81 6ZH,53.575795080761154,-2.424198511372843,31 -11551,E-Waste Collection Bins at Xenon Coil,E-Waste Collection Bins,Electronic waste drop-off point with data security assurance,"48 Xenon Coil, Bolton, Greater Manchester",BL39 3CF,53.57504958289215,-2.4298777666216957,19 -11552,Community Waste Oil Collection Points Bolton 5,Waste Oil Collection Points,Cooking oil recycling point for residential use,"123 Church Heath, Bolton, Greater Manchester",BL11 6AY,53.579615483638015,-2.4332918445085494,33 -11553,Bolton Central Battery Recycling Points 2,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"19 Lead Corner, Bolton, Greater Manchester",BL69 9JQ,53.58078188932202,-2.4273395004316325,49 -11554,Waste Oil Collection Points at Forge Harbor,Waste Oil Collection Points,Waste oil drop-off point for conversion to biodiesel,"Suite 4 Forge Harbor, Bolton, Greater Manchester",BL84 6KP,53.578067776706746,-2.4294921361394457,36 -11555,Bolton Central Pollinator Gardens 2,Pollinator Gardens,Public garden designed to support bees and butterflies,"Suite 2 Xenon Square, Bolton, Greater Manchester",BL54 9SS,53.580147650497075,-2.4278030588403174,50 -11556,Community Recycling Bins Bolton 4,Recycling Bins,Multi-material recycling point with clear instructions for proper sorting,"8 Canal Curve, Bolton, Greater Manchester",BL28 4KZ,53.582486117771815,-2.4312120498425145,8 -11557,Urban Farms at Priory Boulevard,Urban Farms,Community-run urban farm providing local produce,"131 Priory Boulevard, Bolton, Greater Manchester",BL59 2DE,53.579323797690265,-2.4274079375013273,9 -11558,Leeds Battery Recycling Points 3,Battery Recycling Points,Battery recycling bin with separate compartments for different types,"132 Hospital Park, Leeds, West Yorkshire",LS64 8GJ,53.79777299874505,-1.552972084832773,10 -11559,Leeds Central Book Swap Stations 3,Book Swap Stations,Little free library with take-one-leave-one system,"Suite 1 Xenon Trail, Leeds, West Yorkshire",LS70 1RT,53.804785192136684,-1.5508087473772671,41 -11560,Leeds Beach Way Community Tool Libraries,Community Tool Libraries,Tool sharing hub with membership system and workshops,"195G Beach Way, Leeds, West Yorkshire",LS56 9WG,53.80419697588195,-1.5446215095631162,45 -11561,Leeds Central Public Water Refill Stations 5,Public Water Refill Stations,Accessible water station encouraging reusable bottles,"Unit 12 Mill Street, Leeds, West Yorkshire",LS95 8UH,53.796906826313304,-1.5443252124441667,8 -11562,E-Waste Collection Bins at Meadow Beach,E-Waste Collection Bins,Community e-waste collection facility with regular collection schedule,"Unit 12 Meadow Beach, Leeds, West Yorkshire",LS20 1TJ,53.799942637397315,-1.5550080465929699,49 -11563,Newcastle upon Tyne Rainwater Harvesting Systems,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"177 Stream Arcade, Newcastle upon Tyne, Tyne and Wear",NE53 4XW,54.977163428953396,-1.6144614210849166,21 -11564,Newcastle upon Tyne Central Bike Share Stations 3,Bike Share Stations,Cycle hire station with self-service rental system,"51 Victoria Triangle, Newcastle upon Tyne, Tyne and Wear",NE27 7CA,54.97752994863666,-1.616986224825095,23 -11565,Newcastle upon Tyne Central Recycling Bins 2,Recycling Bins,Multi-material recycling point with clear instructions for proper sorting,"95 Lodge Trail, Newcastle upon Tyne, Tyne and Wear",NE69 5MR,54.98077112311387,-1.6154196244004544,34 -11566,Solar-Powered Benches at Old Esplanade,Solar-Powered Benches,Eco-friendly bench with solar panels and LED lighting,"Suite 1 Old Esplanade, Newcastle upon Tyne, Tyne and Wear",NE70 1DF,54.982005238715836,-1.6213287676132024,4 -11567,Newcastle upon Tyne Central Rainwater Harvesting Systems 3,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"Suite 3 Hall Bank, Newcastle upon Tyne, Tyne and Wear",NE18 8AQ,54.97797919312335,-1.6178182583926697,19 -11568,Community Bike Share Stations Newcastle upon Tyne,Bike Share Stations,Community bike share point with regular and electric bicycles,"Flat 4 Valley View, Newcastle upon Tyne, Tyne and Wear",NE10 5XU,54.98012080304401,-1.6184604366732014,9 -11569,King Moor Bike Share Stations,Bike Share Stations,Bike rental hub with secure docking stations,"108 King Moor, Newcastle upon Tyne, Tyne and Wear",NE33 5BT,54.97682218056777,-1.613243459947292,51 -11570,Newcastle upon Tyne Central Clothing Donation Bins 4,Clothing Donation Bins,Textile recycling point for clothes and household fabrics,"115 Radon Bend, Newcastle upon Tyne, Tyne and Wear",NE17 8FK,54.97884565522914,-1.6131542558650174,1 -11571,Newcastle upon Tyne Central Bike Share Stations 4,Bike Share Stations,Community bike share point with regular and electric bicycles,"65E Well Heights, Newcastle upon Tyne, Tyne and Wear",NE61 9QR,54.97835525915525,-1.6135924418690537,7 -11572,Newcastle upon Tyne Waste Oil Collection Points 3,Waste Oil Collection Points,Community oil recycling station with spill prevention measures,"8 College Bay, Newcastle upon Tyne, Tyne and Wear",NE44 5BZ,54.97448415469273,-1.6122129873455604,53 -11573,Newcastle upon Tyne Forge Heath Clothing Donation Bins,Clothing Donation Bins,Community clothing recycling bin with regular collection,"191 Forge Heath, Newcastle upon Tyne, Tyne and Wear",NE40 7JP,54.97515027388297,-1.6211900181818388,21 -11574,Railway Parade Public Water Refill Stations,Public Water Refill Stations,Community water dispenser with usage counter display,"94 Railway Parade, London, Greater London",EC84 1RJ,51.50489864897884,-0.12464789455598035,40 -11575,Railway Ferry E-Waste Collection Bins,E-Waste Collection Bins,Community e-waste collection facility with regular collection schedule,"Unit 20 Railway Ferry, London, Greater London",EC88 2FW,51.505124128617304,-0.12893739940586785,47 -11576,Community Book Swap Stations London 2,Book Swap Stations,Free book swap station encouraging reading and reuse,"69 University Hill, London, Greater London",EC76 2AU,51.50752471215709,-0.1258197319492468,42 -11577,Battery Recycling Points at Cliff Embankment,Battery Recycling Points,Secure battery recycling station to prevent environmental contamination,"137 Cliff Embankment, London, Greater London",EC39 3YT,51.51079754723999,-0.1226226214252114,45 -11578,Cobalt Rise Clothing Donation Bins,Clothing Donation Bins,Community clothing recycling bin with regular collection,"66 Cobalt Rise, London, Greater London",EC45 9CD,51.50386507578553,-0.13347874801371207,40 -11579,Battery Recycling Points at Pewter View,Battery Recycling Points,Battery recycling bin with separate compartments for different types,"171 Pewter View, London, Greater London",EC90 1ME,51.504396716098285,-0.12772393176169933,36 -11580,Forge Path e-Scooters,e-Scooters,Electric scooter hub with maintenance and charging facilities,"116 Forge Path, London, Greater London",EC57 9ZW,51.503577273028604,-0.12465729338801752,41 -11581,Bike Share Stations at Station Tor,Bike Share Stations,Cycle hire station with self-service rental system,"146 Station Tor, London, Greater London",EC94 5TZ,51.50480913933354,-0.12585153681279607,44 -11582,Community Clothing Donation Bins London 2,Clothing Donation Bins,Community clothing recycling bin with regular collection,"31 Meadow Octagon, London, Greater London",EC13 3BT,51.50832197916637,-0.1262128950390489,32 -11583,Nickel Viaduct Book Swap Stations,Book Swap Stations,Free book swap station encouraging reading and reuse,"122 Nickel Viaduct, London, Greater London",EC3 2VC,51.508846639066554,-0.12565659185980216,6 -11584,London Central Battery Recycling Points 3,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"188A Queen Emporium, London, Greater London",EC65 6XX,51.508416684046004,-0.12852567681741053,7 -11585,London Waste Oil Collection Points 5,Waste Oil Collection Points,Used oil collection facility with secure containers,"111B Steel Junction, London, Greater London",EC43 9TW,51.505477984161,-0.1327589409280146,1 -11586,Rainwater Harvesting Systems at Bay Viaduct,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"189 Bay Viaduct, London, Greater London",EC13 4FW,51.506874889341496,-0.1322270896258422,20 -11587,Mount Field Solar-Powered Benches,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"Unit 3 Mount Field, London, Greater London",EC8 1NW,51.50993748121869,-0.1276697755862235,12 -11588,London Marble Cross Clothing Donation Bins,Clothing Donation Bins,Clothing donation bin supporting local charities,"38 Marble Cross, London, Greater London",EC73 5SA,51.50833404010501,-0.12738088644198436,43 -11589,London Central Rainwater Harvesting Systems 2,Rainwater Harvesting Systems,Community rainwater collection facility for shared gardens,"33 Oxygen Grove, London, Greater London",EC80 8QV,51.51040342021787,-0.13283942529918705,15 -11590,Bristol London Emporium Solar-Powered Benches,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"134 London Emporium, Bristol, Bristol",BS87 8VJ,51.45811443649592,-2.5863458249114935,50 -11591,Pit Hill Green Roofs,Green Roofs,Accessible green roof garden with native plant species,"32 Pit Hill, Bristol, Bristol",BS61 3WG,51.45510842213819,-2.589870752960776,46 -11592,Quarry Gate Community Compost Bins,Community Compost Bins,Shared compost facility managed by local volunteers,"138 Quarry Gate, Bristol, Bristol",BS36 3CL,51.45536982037861,-2.591448803804044,31 -11593,Community Recycling Bins Bristol 3,Recycling Bins,Public access recycling bins for common household recyclables,"157 Nitrogen Viaduct, Bristol, Bristol",BS81 6MN,51.452911906414116,-2.5879356805232314,48 -11594,Waste Oil Collection Points at Valley Bridge,Waste Oil Collection Points,Waste oil drop-off point for conversion to biodiesel,"Flat 26 Valley Bridge, Bristol, Bristol",BS56 9WX,51.45674261234548,-2.5921792010191393,4 -11595,Bristol House Road Recycling Bins,Recycling Bins,"Public recycling point for paper, glass, plastic, and metal","69 House Road, Bristol, Bristol",BS34 1RZ,51.45652726995461,-2.5921055567442486,23 -11596,Bristol Central Solar-Powered Benches 6,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"77 Cobalt Coil, Bristol, Bristol",BS5 5BJ,51.453235209076226,-2.5860207959677166,10 -11597,Bristol Wood Meadow E-Waste Collection Bins,E-Waste Collection Bins,Community e-waste collection facility with regular collection schedule,"198 Wood Meadow, Bristol, Bristol",BS16 9XQ,51.45606624905605,-2.5914987001085454,49 -11598,Mount Mall E-Waste Collection Bins,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","Unit 18 Mount Mall, Bristol, Bristol",BS92 3DE,51.45236914505636,-2.5833403103201458,35 -11599,Mount Labyrinth Waste Oil Collection Points,Waste Oil Collection Points,Used oil collection facility with secure containers,"29 Mount Labyrinth, Belfast, Belfast",BT1 4SP,54.60096662652889,-5.935572535902248,13 -11600,Belfast E-Waste Collection Bins 2,E-Waste Collection Bins,Secure collection point for electronic waste and small appliances,"3 Windmill Bay, Belfast, Belfast",BT57 9KM,54.59553649490459,-5.928109200277458,44 -11601,Silver Maze Clothing Donation Bins,Clothing Donation Bins,Secure collection point for reusable clothing and textiles,"70 Silver Maze, Belfast, Belfast",BT44 1AS,54.60112133326869,-5.924439271989729,41 -11602,Community Public EV Charging Stations Belfast 2,Public EV Charging Stations,Fast-charging station for electric vehicles,"Unit 6 Church Pike, Belfast, Belfast",BT56 4GL,54.59334314598299,-5.924223545962846,39 -11603,Belfast Central Urban Farms 7,Urban Farms,Community-run urban farm providing local produce,"151 Stone Boulevard, Belfast, Belfast",BT52 2UJ,54.59777749928734,-5.931749018536658,21 -11604,Belfast Central Community Tool Libraries,Community Tool Libraries,Shared equipment facility reducing need for individual ownership,"Suite 3 Krypton Ford, Belfast, Belfast",BT8 4UP,54.59627281901048,-5.929701687101643,42 -11605,Public Water Refill Stations at Mount Fell,Public Water Refill Stations,Public drinking fountain with bottle filling capability,"Flat 36 Mount Fell, Belfast, Belfast",BT4 4HM,54.59621921549218,-5.933884490289854,2 -11606,Community Green Roofs Belfast,Green Roofs,Building with extensive green roof system visible from public areas,"66 Bay Grove, Belfast, Belfast",BT46 2EB,54.59402126853448,-5.925775276833946,36 -11607,Belfast Central Public EV Charging Stations 3,Public EV Charging Stations,Fast-charging station for electric vehicles,"128 Bridge Mews, Belfast, Belfast",BT9 2PE,54.59934193624266,-5.92536736305535,18 -11608,Urban Farms at Queen Gate,Urban Farms,City farming project with volunteer opportunities,"182 Queen Gate, Belfast, Belfast",BT35 7TE,54.597450480086906,-5.928484088666427,6 -11609,Belfast Hall Square Solar-Powered Benches,Solar-Powered Benches,Solar bench with USB charging ports and WiFi connectivity,"1 Hall Square, Belfast, Belfast",BT40 3LS,54.59942186968136,-5.934465405798982,42 -11610,Public Water Refill Stations at College Fell,Public Water Refill Stations,Public drinking fountain with bottle filling capability,"Unit 13 College Fell, Belfast, Belfast",BT61 8GN,54.599116543053974,-5.933760458353568,37 -11611,Belfast King Loop Community Compost Bins,Community Compost Bins,Neighborhood composting facility for food and garden waste,"142 King Loop, Belfast, Belfast",BT23 1FU,54.59395968559895,-5.932885481284152,36 -11612,Bike Share Stations at High Park,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"184 High Park, Belfast, Belfast",BT52 2TP,54.597986013593996,-5.933615107062887,49 -11613,Waste Oil Collection Points at Helium Junction,Waste Oil Collection Points,Used oil collection facility with secure containers,"36 Helium Junction, Belfast, Belfast",BT97 8GH,54.601058408131955,-5.926592267919173,50 -11614,London Oval Bike Share Stations,Bike Share Stations,Cycle hire station with self-service rental system,"154 London Oval, Belfast, Belfast",BT85 8MR,54.59574628042643,-5.927398256234985,36 -11615,Belfast Pollinator Gardens 5,Pollinator Gardens,Pollinator-friendly planting area with native flowering species,"91 Canal Pike, Belfast, Belfast",BT49 4FL,54.59523081961159,-5.926392962652226,30 -11616,Community Community Compost Bins Belfast 3,Community Compost Bins,Neighborhood composting facility for food and garden waste,"32 Hospital Place, Belfast, Belfast",BT8 7NW,54.60021654434758,-5.930904686974716,7 -11617,Community Community Compost Bins Belfast 4,Community Compost Bins,Urban composting hub turning food waste into valuable soil,"4 Vineyard Loop, Belfast, Belfast",BT98 8EF,54.597153409798246,-5.9266508276531304,39 -11618,Iron Ferry Clothing Donation Bins,Clothing Donation Bins,Textile donation point preventing landfill waste,"198 Iron Ferry, Belfast, Belfast",BT35 6GU,54.59781019119066,-5.931332655200183,22 -11619,College Lane Community Compost Bins,Community Compost Bins,Community compost bins with educational signage,"184 College Lane, Belfast, Belfast",BT99 5UX,54.601211263737,-5.931379942947822,27 -11620,Belfast Central Public EV Charging Stations 4,Public EV Charging Stations,Public EV charging facility with covered waiting area,"146 Coal Market, Belfast, Belfast",BT13 6RP,54.5943220090943,-5.933488076343888,52 -11621,Community Community Compost Bins Belfast 5,Community Compost Bins,Public composting station with separate sections for different stages,"99 Watermill Esplanade, Belfast, Belfast",BT88 9ZH,54.59535506385304,-5.926278179470765,8 -11622,Belfast Central Public Water Refill Stations 3,Public Water Refill Stations,Accessible water station encouraging reusable bottles,"60 Castle Triangle, Belfast, Belfast",BT82 5CC,54.593770921215956,-5.931444817060253,20 -11623,Belfast Urban Farms 2,Urban Farms,Community-run urban farm providing local produce,"42 Valley Bend, Belfast, Belfast",BT18 1MX,54.5994868794423,-5.930049448451726,20 -11624,Brook Edge Battery Recycling Points,Battery Recycling Points,Battery recycling bin with separate compartments for different types,"188 Brook Edge, Liverpool, Merseyside",L22 5RU,53.41230848486606,-2.9892678994875177,36 -11625,Rainwater Harvesting Systems at Abbey Side,Rainwater Harvesting Systems,Visible rainwater storage and filtration system,"102 Abbey Side, Liverpool, Merseyside",L55 7TM,53.41196537725586,-2.9863275752972327,35 -11626,Liverpool Nitrogen Green Public EV Charging Stations,Public EV Charging Stations,Multi-vehicle electric charging hub with different power options,"173 Nitrogen Green, Liverpool, Merseyside",L82 3DZ,53.40967066041581,-2.996337383235406,34 -11627,Liverpool Pollinator Gardens 3,Pollinator Gardens,Public garden designed to support bees and butterflies,"144 London Wharf, Liverpool, Merseyside",L77 7XN,53.40814421802956,-2.9913813233734468,41 -11628,Bike Share Stations at Church Edge,Bike Share Stations,Bike sharing facility with maintenance and repair services,"199 Church Edge, Liverpool, Merseyside",L34 7HD,53.40781435810858,-2.9864831390547213,26 -11629,Argon View Solar-Powered Benches,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"157 Argon View, Liverpool, Merseyside",L45 3LS,53.408344091763894,-2.993463169021042,1 -11630,Liverpool Central Solar-Powered Benches 6,Solar-Powered Benches,Solar bench with USB charging ports and WiFi connectivity,"Flat 43 Mine Bend, Liverpool, Merseyside",L46 2RD,53.40659045416635,-2.9917008719495817,16 -11631,Bike Share Stations at Iron Street,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"70 Iron Street, Liverpool, Merseyside",L56 9VH,53.40943321918194,-2.991694127893512,4 -11632,Market Shore Book Swap Stations,Book Swap Stations,Public book sharing library in repurposed phone box,"17 Market Shore, Liverpool, Merseyside",L16 6NH,53.4116769631554,-2.995518135849749,46 -11633,Liverpool Vineyard Twist Battery Recycling Points,Battery Recycling Points,Battery recycling bin with separate compartments for different types,"103 Vineyard Twist, Liverpool, Merseyside",L9 2GK,53.40768935983745,-2.9905915297648256,18 -11634,Clothing Donation Bins at Xenon Hill,Clothing Donation Bins,Clothing donation bin supporting local charities,"165 Xenon Hill, Liverpool, Merseyside",L29 7JL,53.41212384428026,-2.988884793743407,41 -11635,Cove Bottom Green Roofs,Green Roofs,Accessible green roof garden with native plant species,"134 Cove Bottom, Liverpool, Merseyside",L32 8NB,53.40803089898358,-2.986425785359015,35 -11636,Liverpool Vineyard Maze Urban Farms,Urban Farms,City farming project with volunteer opportunities,"167 Vineyard Maze, Liverpool, Merseyside",L96 7FL,53.41174644692575,-2.996311133724537,33 -11637,Liverpool Central e-Scooters 3,e-Scooters,Designated e-scooter pickup and drop-off point,"82 Stream Down, Liverpool, Merseyside",L91 5EW,53.40712419492303,-2.988138402094417,28 -11638,Liverpool Wood Cove Battery Recycling Points,Battery Recycling Points,Dedicated collection point for used batteries of all sizes,"27 Wood Cove, Liverpool, Merseyside",L74 4AK,53.41195519253127,-2.9971768659823503,52 -11639,Community Rainwater Harvesting Systems Liverpool 4,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"55 Bridge Ferry, Liverpool, Merseyside",L19 6XU,53.41228461476157,-2.9858723725198244,26 -11640,Community Rainwater Harvesting Systems Liverpool 5,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"123 Church Edge, Liverpool, Merseyside",L27 4VZ,53.412149431328196,-2.992633316137817,39 -11641,Liverpool Central Community Tool Libraries 3,Community Tool Libraries,Community resource center for borrowing tools and equipment,"187B Bronze Mart, Liverpool, Merseyside",L50 2UB,53.41096551630956,-2.9912060413462083,51 -11642,Liverpool Green Roofs 6,Green Roofs,Building with extensive green roof system visible from public areas,"105 Lead Ferry, Liverpool, Merseyside",L1 1WB,53.41169874594147,-2.9903194713255012,17 -11643,Liverpool Battery Recycling Points 5,Battery Recycling Points,Dedicated collection point for used batteries of all sizes,"127 London Gate, Liverpool, Merseyside",L93 2FM,53.406389231347504,-2.9938087584127517,25 -11644,Solar-Powered Benches at Krypton Boulevard,Solar-Powered Benches,Solar-powered rest area with phone charging capabilities,"107 Krypton Boulevard, Liverpool, Merseyside",L76 3VU,53.407910920952816,-2.989312475546597,26 -11645,Pollinator Gardens at Bay Ferry,Pollinator Gardens,Community garden dedicated to supporting local insect populations,"72G Bay Ferry, Liverpool, Merseyside",L31 9CM,53.412261608106604,-2.9918509957902675,36 -11646,Liverpool Chromium Embankment Recycling Bins,Recycling Bins,"Public recycling point for paper, glass, plastic, and metal","66 Chromium Embankment, Liverpool, Merseyside",L16 9SX,53.410943274146575,-2.9908640985675046,36 -11647,Liverpool Central Green Roofs 3,Green Roofs,Accessible green roof garden with native plant species,"103 Forge Labyrinth, Liverpool, Merseyside",L65 2YE,53.40966133790761,-2.989060512781972,2 -11648,Derby Waste Oil Collection Points 3,Waste Oil Collection Points,Community oil recycling station with spill prevention measures,"Unit 13 Main Walk, Derby, Derbyshire",DE78 3JQ,52.926044789518805,-1.4732864546385285,23 -11649,Derby Central Solar-Powered Benches,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"19 Iron Bay, Derby, Derbyshire",DE48 2BR,52.92446791584492,-1.4720536747454995,5 -11650,Public Water Refill Stations at Chalk Court,Public Water Refill Stations,Community water dispenser with usage counter display,"21 Chalk Court, Derby, Derbyshire",DE93 2TV,52.92536269878458,-1.477451986684446,38 -11651,Community Compost Bins at Argon Promenade,Community Compost Bins,Neighborhood composting facility for food and garden waste,"61 Argon Promenade, Derby, Derbyshire",DE72 6LN,52.92040266448694,-1.4778608016531019,26 -11652,Derby Central Community Compost Bins 4,Community Compost Bins,Neighborhood composting facility for food and garden waste,"Flat 12 Main Street, Derby, Derbyshire",DE74 6CU,52.926497285850914,-1.4755405806039255,31 -11653,Recycling Bins at Cobalt Oval,Recycling Bins,Public access recycling bins for common household recyclables,"61 Cobalt Oval, Derby, Derbyshire",DE34 6ER,52.92219155548465,-1.4752192555563242,28 -11654,Canal Gallery Solar-Powered Benches,Solar-Powered Benches,Solar-powered rest area with phone charging capabilities,"64 Canal Gallery, Derby, Derbyshire",DE32 7QR,52.920528281788016,-1.4700214066597226,41 -11655,Derby Community Compost Bins 2,Community Compost Bins,Urban composting hub turning food waste into valuable soil,"169 Mill Bottom, Derby, Derbyshire",DE42 4PJ,52.920252900343414,-1.479126423958551,35 -11656,Derby School Wharf Rainwater Harvesting Systems,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"Suite 5 School Wharf, Derby, Derbyshire",DE35 6CQ,52.91981893708105,-1.4736589912237699,28 -11657,Derby Central E-Waste Collection Bins 7,E-Waste Collection Bins,Dedicated bin for responsible disposal of electronic items,"166 Krypton Helix, Derby, Derbyshire",DE7 4WV,52.91911060104157,-1.4790852643868977,37 -11658,Forest Parade Rainwater Harvesting Systems,Rainwater Harvesting Systems,Community rainwater collection facility for shared gardens,"127 Forest Parade, Derby, Derbyshire",DE53 2PM,52.92224301505883,-1.4781949024600605,45 -11659,Community E-Waste Collection Bins Derby 4,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","154 Abbey Park, Derby, Derbyshire",DE63 3RZ,52.9238263399209,-1.4706407828291261,44 -11660,Derby Silver Green Battery Recycling Points,Battery Recycling Points,Dedicated collection point for used batteries of all sizes,"146 Silver Green, Derby, Derbyshire",DE78 8XP,52.924571880248024,-1.4720764786596585,11 -11661,Book Swap Stations at Chromium Down,Book Swap Stations,Free book swap station encouraging reading and reuse,"2 Chromium Down, Derby, Derbyshire",DE29 6MT,52.92229646407604,-1.4767326366128393,26 -11662,Castle Port Community Compost Bins,Community Compost Bins,Community compost bins with educational signage,"37 Castle Port, Derby, Derbyshire",DE4 8YC,52.92333353647985,-1.4787176908020432,27 -11663,Community e-Scooters Derby 4,e-Scooters,Designated e-scooter pickup and drop-off point,"Flat 13 Mill Gardens, Derby, Derbyshire",DE71 3WS,52.925015634412624,-1.4709595506238715,42 -11664,Slate Exchange Book Swap Stations,Book Swap Stations,Community book exchange point with weatherproof shelving,"26 Slate Exchange, Derby, Derbyshire",DE51 5KV,52.919617709618656,-1.4763923647890222,49 -11665,Recycling Bins at School Junction,Recycling Bins,Recycling center with facilities for household waste separation,"124 School Junction, Derby, Derbyshire",DE87 5UB,52.92281482170971,-1.4709020648427582,25 -11666,Derby Nickel Esplanade Urban Farms,Urban Farms,Local food growing initiative in repurposed urban space,"Unit 3 Nickel Esplanade, Derby, Derbyshire",DE44 1QZ,52.92341181377047,-1.479323350487212,11 -11667,Derby Krypton Green Green Roofs,Green Roofs,Building with extensive green roof system visible from public areas,"144 Krypton Green, Derby, Derbyshire",DE70 3KN,52.92643768568381,-1.4757532396881576,17 -11668,Community Public EV Charging Stations Derby,Public EV Charging Stations,Public EV charging facility with covered waiting area,"178 Silicon Turn, Derby, Derbyshire",DE70 2YW,52.92562030855663,-1.476498877851561,44 -11669,Recycling Bins at Meadow Mart,Recycling Bins,Recycling center with facilities for household waste separation,"27 Meadow Mart, Slough, Berkshire",SL1 9VT,51.51059364079616,-0.5944839240895189,19 -11670,Queen Curve Community Tool Libraries,Community Tool Libraries,Public tool library with wide range of equipment available,"150 Queen Curve, Slough, Berkshire",SL10 5MP,51.51428694499925,-0.5936636706301391,10 -11671,Public EV Charging Stations at Bridge Common,Public EV Charging Stations,Multi-vehicle electric charging hub with different power options,"93 Bridge Common, Slough, Berkshire",SL49 4BY,51.50745724769572,-0.5907138350109322,23 -11672,Community Recycling Bins Slough 3,Recycling Bins,Multi-material recycling point with clear instructions for proper sorting,"74A Krypton Fell, Slough, Berkshire",SL29 6GR,51.5100015886953,-0.5909405482702106,48 -11673,Windmill Parade Green Roofs,Green Roofs,Building with extensive green roof system visible from public areas,"11 Windmill Parade, Slough, Berkshire",SL50 1TP,51.51249759704941,-0.6009616455837155,46 -11674,Slough Central Bike Share Stations 2,Bike Share Stations,Cycle hire station with self-service rental system,"170 Lead Tunnel, Slough, Berkshire",SL96 9DV,51.512273421672894,-0.5931442458767227,53 -11675,Slough e-Scooters,e-Scooters,Designated e-scooter pickup and drop-off point,"114 North Circus, Slough, Berkshire",SL22 1PF,51.512294685541235,-0.5943663866325646,25 -11676,Green Roofs at Court Passage,Green Roofs,Biodiverse roof garden with insect habitats and rainwater collection,"45A Court Passage, Slough, Berkshire",SL6 3VD,51.50664717788233,-0.5961622690879291,32 -11677,Slough Clothing Donation Bins 2,Clothing Donation Bins,Textile recycling point for clothes and household fabrics,"77 Bridge Coil, Slough, Berkshire",SL13 3LC,51.507155037557105,-0.5987237537466378,32 -11678,Slough Main Fair Green Roofs,Green Roofs,Green roof installation with educational tours available,"155 Main Fair, Slough, Berkshire",SL87 8SE,51.512277525164656,-0.5905531491897281,18 -11679,Slough Central Urban Farms 3,Urban Farms,Community garden with vegetable plots and fruit trees,"90 Garden Walk, Slough, Berkshire",SL10 2QH,51.51234996622555,-0.5997273066376202,26 -11680,Clothing Donation Bins at North Rise,Clothing Donation Bins,Textile donation point preventing landfill waste,"Suite 6 North Rise, Slough, Berkshire",SL35 9QX,51.51319233323426,-0.5911690602642653,12 -11681,Hospital Ferry Solar-Powered Benches,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"2 Hospital Ferry, Slough, Berkshire",SL91 2BY,51.51325563771119,-0.5902643009114145,51 -11682,Book Swap Stations at Cobalt Passage,Book Swap Stations,Neighborhood book exchange with rotating collection,"Suite 5 Cobalt Passage, Slough, Berkshire",SL13 7WE,51.512123769872076,-0.5912788977634929,13 -11683,Hill Octagon Battery Recycling Points,Battery Recycling Points,Battery collection point with educational information about recycling,"77 Hill Octagon, Slough, Berkshire",SL24 3ZM,51.50879903712482,-0.5987442775248807,27 -11684,Slough Central Green Roofs 3,Green Roofs,Building with extensive green roof system visible from public areas,"156 Radon End, Slough, Berkshire",SL12 7CZ,51.51049776943363,-0.5900124403254227,49 -11685,Slough Central Waste Oil Collection Points,Waste Oil Collection Points,Community oil recycling station with spill prevention measures,"189 Pewter Tunnel, Slough, Berkshire",SL5 6ZN,51.50993261129596,-0.5983911256100847,52 -11686,Rainwater Harvesting Systems at Hall Tunnel,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"Flat 16 Hall Tunnel, Slough, Berkshire",SL83 1RQ,51.506859477233704,-0.591702524864416,52 -11687,Pond Tunnel Clothing Donation Bins,Clothing Donation Bins,Clothing donation bin supporting local charities,"200 Pond Tunnel, Slough, Berkshire",SL59 6JD,51.508352323893824,-0.5896908987827171,4 -11688,Swansea Central Battery Recycling Points,Battery Recycling Points,Secure battery recycling station to prevent environmental contamination,"109 River Viaduct, Swansea, Swansea",SA72 9DZ,51.62080981923026,-3.9491402727976213,49 -11689,Community Rainwater Harvesting Systems Swansea 4,Rainwater Harvesting Systems,Visible rainwater storage and filtration system,"56B Cliff Parade, Swansea, Swansea",SA19 3AQ,51.6251849005188,-3.9445961112291954,29 -11690,Waste Oil Collection Points at School Meadow,Waste Oil Collection Points,Cooking oil collection facility with educational information,"135 School Meadow, Swansea, Swansea",SA3 8BJ,51.61973224943032,-3.9393624240485208,32 -11691,Swansea Central Public EV Charging Stations 5,Public EV Charging Stations,Fast-charging station for electric vehicles,"189 Queen Maze, Swansea, Swansea",SA7 8CK,51.61805663275006,-3.9394177263210297,26 -11692,Swansea Green Roofs 3,Green Roofs,Public building showcasing sustainable rooftop vegetation,"103 Hall Dock, Swansea, Swansea",SA64 2ZB,51.621572265255224,-3.942026120210572,12 -11693,Swansea Central Bike Share Stations 5,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"143 Silicon Parade, Swansea, Swansea",SA66 2GW,51.61948777430965,-3.9393249969945576,24 -11694,Swansea Solar-Powered Benches 4,Solar-Powered Benches,Eco-friendly bench with solar panels and LED lighting,"102 Field Gallery, Swansea, Swansea",SA47 3SY,51.62010636819676,-3.9438138340716518,32 -11695,Swansea Recycling Bins 5,Recycling Bins,Community recycling station with separate bins for different materials,"134 University Trail, Swansea, Swansea",SA36 1ZN,51.625186671972514,-3.947063484456705,53 -11696,Community Solar-Powered Benches Swansea 2,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"61 High Turn, Swansea, Swansea",SA20 9XP,51.62319399601367,-3.9416418879594466,5 -11697,Swansea Pollinator Gardens,Pollinator Gardens,Pollinator-friendly planting area with native flowering species,"27 Station Exchange, Swansea, Swansea",SA88 6KG,51.624929284767845,-3.9456776412045724,41 -11698,Community Clothing Donation Bins Swansea 2,Clothing Donation Bins,Textile donation point preventing landfill waste,"74F University Harbor, Swansea, Swansea",SA25 8BN,51.6233009224017,-3.9481168480579245,11 -11699,Solar-Powered Benches at Zinc Viaduct,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"136 Zinc Viaduct, Swansea, Swansea",SA95 3NL,51.621139056305616,-3.9468335461426447,1 -11700,Field Exchange Pollinator Gardens,Pollinator Gardens,Urban wildflower meadow supporting biodiversity,"57 Field Exchange, Swansea, Swansea",SA75 4CC,51.62466537529824,-3.9449659097539906,7 -11701,Community Waste Oil Collection Points Bolton 6,Waste Oil Collection Points,Cooking oil recycling point for residential use,"187 Mine Hexagon, Bolton, Greater Manchester",BL34 1TA,53.57456052542686,-2.4258237603021846,39 -11702,Bolton Central Bike Share Stations 3,Bike Share Stations,Bike sharing facility with maintenance and repair services,"3 Gold Close, Bolton, Greater Manchester",BL54 6DZ,53.57880840348831,-2.43579367252524,52 -11703,Bolton Central E-Waste Collection Bins 6,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","132 Field Junction, Bolton, Greater Manchester",BL4 8LV,53.58167344079148,-2.4333909541202545,7 -11704,West Junction e-Scooters,e-Scooters,Designated e-scooter pickup and drop-off point,"107 West Junction, Bolton, Greater Manchester",BL64 5YB,53.577595764019016,-2.4278383123352993,5 -11705,Battery Recycling Points at Orchard Pike,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"183 Orchard Pike, Bolton, Greater Manchester",BL24 1ZX,53.582372787293366,-2.427731394235308,19 -11706,Bolton Central Battery Recycling Points 3,Battery Recycling Points,Dedicated collection point for used batteries of all sizes,"72 Market Rise, Bolton, Greater Manchester",BL29 5ZH,53.57771127266306,-2.431181764461129,45 -11707,Community Community Tool Libraries Bolton 5,Community Tool Libraries,Public tool library with wide range of equipment available,"26 Garden Bank, Bolton, Greater Manchester",BL30 3ZK,53.5781364322379,-2.4285444276752406,30 -11708,Bolton E-Waste Collection Bins 7,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","45 King Gallery, Bolton, Greater Manchester",BL63 4LM,53.575043431097164,-2.426007849688811,48 -11709,Bolton Waste Oil Collection Points 3,Waste Oil Collection Points,Community oil recycling station with spill prevention measures,"20 Marble Beach, Bolton, Greater Manchester",BL13 1NN,53.580161135803046,-2.4324098929207825,26 -11710,Bolton E-Waste Collection Bins 8,E-Waste Collection Bins,Electronic waste drop-off point with data security assurance,"42 River Ridge, Bolton, Greater Manchester",BL28 6ZA,53.57818689609927,-2.4284539499571873,13 -11711,Rainwater Harvesting Systems at Farm Shore,Rainwater Harvesting Systems,Community rainwater collection facility for shared gardens,"164 Farm Shore, Bolton, Greater Manchester",BL34 9ZG,53.575593632810964,-2.430911206008972,30 -11712,Bolton Central Community Compost Bins 2,Community Compost Bins,Urban composting hub turning food waste into valuable soil,"32 Gravel Parade, Bolton, Greater Manchester",BL12 6KM,53.57818829015931,-2.4267650404797756,15 -11713,Bolton Solar-Powered Benches 6,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"78D Oxygen Embankment, Bolton, Greater Manchester",BL21 8CR,53.5765759262272,-2.430033402964364,2 -11714,Bolton Public Water Refill Stations 5,Public Water Refill Stations,Community water dispenser with usage counter display,"117 Farm Mall, Bolton, Greater Manchester",BL16 2AU,53.57699989547069,-2.4279051687155184,29 -11715,Community Book Swap Stations Bolton 3,Book Swap Stations,Neighborhood book exchange with rotating collection,"88 Field Esplanade, Bolton, Greater Manchester",BL38 1MR,53.57680962316423,-2.4246963031086595,12 -11716,Church Bay Public EV Charging Stations,Public EV Charging Stations,Electric vehicle charging point with multiple connectors,"146 Church Bay, Bolton, Greater Manchester",BL79 1BJ,53.57880965167232,-2.4331729235470663,15 -11717,Bolton Central Public EV Charging Stations 2,Public EV Charging Stations,EV charging station with renewable energy source,"Suite 6 Farm Pentagon, Bolton, Greater Manchester",BL7 6XV,53.581696750446895,-2.4315194423096353,9 -11718,Hydrogen Path Rainwater Harvesting Systems,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"101 Hydrogen Path, Bolton, Greater Manchester",BL20 9LN,53.577570387044666,-2.4358670582087094,26 -11719,Book Swap Stations at London Beach,Book Swap Stations,Public book sharing library in repurposed phone box,"88 London Beach, Bolton, Greater Manchester",BL77 4RC,53.57618375900409,-2.429096587261968,38 -11720,Bolton Central Public Water Refill Stations,Public Water Refill Stations,Accessible water station encouraging reusable bottles,"Suite 7 Bay Mart, Bolton, Greater Manchester",BL60 3ZD,53.57811019173052,-2.433802879264272,48 -11721,Public EV Charging Stations at Mill Embankment,Public EV Charging Stations,Fast-charging station for electric vehicles,"Unit 4 Mill Embankment, Bolton, Greater Manchester",BL74 1HG,53.58110259596654,-2.426901480089506,31 -11722,Public EV Charging Stations at Chalk Fell,Public EV Charging Stations,Electric vehicle charging point with multiple connectors,"87 Chalk Fell, Bolton, Greater Manchester",BL49 2LQ,53.577796852510545,-2.4320773769921775,20 -11723,Community Clothing Donation Bins Newcastle upon Tyne 3,Clothing Donation Bins,Textile recycling point for clothes and household fabrics,"112 Lodge View, Newcastle upon Tyne, Tyne and Wear",NE84 3KQ,54.97606536295418,-1.6227682264108407,26 -11724,Steel Causeway Green Roofs,Green Roofs,Building with extensive green roof system visible from public areas,"136 Steel Causeway, Newcastle upon Tyne, Tyne and Wear",NE35 6GX,54.97651405551658,-1.6232116845829818,39 -11725,Newcastle upon Tyne Cobalt Maze Bike Share Stations,Bike Share Stations,Bike sharing facility with maintenance and repair services,"185 Cobalt Maze, Newcastle upon Tyne, Tyne and Wear",NE6 2BQ,54.978281178865245,-1.6191012674149887,48 -11726,Public EV Charging Stations at Lead Close,Public EV Charging Stations,Public EV charging facility with covered waiting area,"137 Lead Close, Newcastle upon Tyne, Tyne and Wear",NE39 3TZ,54.97661354912831,-1.6152909061471048,28 -11727,Newcastle upon Tyne King Gate E-Waste Collection Bins,E-Waste Collection Bins,Secure collection point for electronic waste and small appliances,"167 King Gate, Newcastle upon Tyne, Tyne and Wear",NE76 2FU,54.98078862360653,-1.6164946350420832,38 -11728,Community Public EV Charging Stations Newcastle upon Tyne 4,Public EV Charging Stations,Fast-charging station for electric vehicles,"Suite 3 Court Edge, Newcastle upon Tyne, Tyne and Wear",NE36 7JE,54.975831622746156,-1.617392071909467,48 -11729,Newcastle upon Tyne Clothing Donation Bins 4,Clothing Donation Bins,Textile donation point preventing landfill waste,"134 Brass Hexagon, Newcastle upon Tyne, Tyne and Wear",NE29 7DR,54.97635044400825,-1.6165198877444245,47 -11730,Pollinator Gardens at Castle Cove,Pollinator Gardens,Pollinator-friendly planting area with native flowering species,"109 Castle Cove, Preston, Lancashire",PR18 2US,53.7651398080641,-2.7007565259819573,22 -11731,Public Water Refill Stations at Vineyard Circle,Public Water Refill Stations,Water refill point with filtered water options,"176 Vineyard Circle, Preston, Lancashire",PR10 2RF,53.764259295583145,-2.701631844672576,11 -11732,Community Clothing Donation Bins Preston 3,Clothing Donation Bins,Clothing donation bin supporting local charities,"Unit 1 Oxygen Bridge, Preston, Lancashire",PR81 9DR,53.75944679317993,-2.700643229777887,51 -11733,Solar-Powered Benches at Cobalt Bridge,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"Flat 23 Cobalt Bridge, Preston, Lancashire",PR34 2AN,53.76075782435965,-2.7010707574119883,16 -11734,Waste Oil Collection Points at Pond Gardens,Waste Oil Collection Points,Cooking oil collection facility with educational information,"134A Pond Gardens, Preston, Lancashire",PR59 6JL,53.75975863354387,-2.70793196971506,35 -11735,Preston Bike Share Stations 6,Bike Share Stations,Cycle hire station with self-service rental system,"Flat 22 Canal Tor, Preston, Lancashire",PR51 2QQ,53.76016535187626,-2.7036258898442167,44 -11736,Wolverhampton Battery Recycling Points 6,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"83 Barn Drive, Wolverhampton, West Midlands",WV90 4JM,52.58927606592009,-2.130495897221202,30 -11737,Public EV Charging Stations at Nickel Emporium,Public EV Charging Stations,Fast-charging station for electric vehicles,"Flat 5 Nickel Emporium, Wolverhampton, West Midlands",WV55 8TB,52.58710265545206,-2.1260471621115924,34 -11738,Green Roofs at University Market,Green Roofs,Green roof installation with educational tours available,"6 University Market, Wolverhampton, West Midlands",WV27 7QN,52.58816994264244,-2.1330523265375336,49 -11739,Community Recycling Bins Wolverhampton 5,Recycling Bins,Public access recycling bins for common household recyclables,"118 Tin Gallery, Wolverhampton, West Midlands",WV77 7GX,52.59054261728466,-2.129937600628515,19 -11740,Wolverhampton College Ford Community Compost Bins,Community Compost Bins,Community compost bins with educational signage,"12 College Ford, Wolverhampton, West Midlands",WV55 6GL,52.59007726344135,-2.1263905095857405,31 -11741,Wolverhampton Solar-Powered Benches 3,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"Suite 8 Manor Ford, Wolverhampton, West Midlands",WV75 3NR,52.58482839146029,-2.132611480672806,1 -11742,Hill Spiral Community Compost Bins,Community Compost Bins,Community compost bins with educational signage,"125 Hill Spiral, Wolverhampton, West Midlands",WV59 1KC,52.58978241075458,-2.1287933712103624,35 -11743,Community Urban Farms Peterborough 3,Urban Farms,Local food growing initiative in repurposed urban space,"155 West Road, Peterborough, Cambridgeshire",PE78 1ZW,52.57285464489773,-0.23608732709605915,18 -11744,Peterborough Central Solar-Powered Benches 4,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"29 River Spiral, Peterborough, Cambridgeshire",PE6 1LR,52.56663050448199,-0.244279064718528,16 -11745,Community Urban Farms Peterborough 4,Urban Farms,Community-run urban farm providing local produce,"Unit 8 Gold Park, Peterborough, Cambridgeshire",PE93 1AD,52.57010233132222,-0.23944271504390635,51 -11746,Public Water Refill Stations at Lead Bank,Public Water Refill Stations,Accessible water station encouraging reusable bottles,"3 Lead Bank, Peterborough, Cambridgeshire",PE36 1CH,52.56665080973069,-0.24005589797988824,8 -11747,Peterborough Central Book Swap Stations,Book Swap Stations,Community book exchange point with weatherproof shelving,"Unit 7 Gravel Cove, Peterborough, Cambridgeshire",PE84 6EW,52.57264606556247,-0.23856386345484054,9 -11748,Community Community Tool Libraries Peterborough 2,Community Tool Libraries,Public tool library with wide range of equipment available,"146 Bridge Square, Peterborough, Cambridgeshire",PE67 8VS,52.567227873472326,-0.23990641647452154,27 -11749,Peterborough Central Book Swap Stations 2,Book Swap Stations,Free book swap station encouraging reading and reuse,"57 Victoria Loop, Peterborough, Cambridgeshire",PE94 6VV,52.57326874907944,-0.246114735842121,37 -11750,Rainwater Harvesting Systems at Titanium Ring,Rainwater Harvesting Systems,Visible rainwater storage and filtration system,"175 Titanium Ring, Peterborough, Cambridgeshire",PE99 8MB,52.566233473798604,-0.23543971540901687,17 -11751,Peterborough Solar-Powered Benches 2,Solar-Powered Benches,Solar-powered rest area with phone charging capabilities,"178 Grange Wharf, Peterborough, Cambridgeshire",PE96 2KG,52.56935669396226,-0.24552843612959724,45 -11752,Peterborough Central Public Water Refill Stations 2,Public Water Refill Stations,Free water refill station to reduce plastic bottle usage,"Suite 2 Iron Down, Peterborough, Cambridgeshire",PE90 5QE,52.56834214300148,-0.24433732132211555,31 -11753,Peterborough Central E-Waste Collection Bins,E-Waste Collection Bins,Electronic waste drop-off point with data security assurance,"84 Quarry Boulevard, Peterborough, Cambridgeshire",PE18 1XG,52.56954579081386,-0.24028702728394358,40 -11754,Peterborough Central Book Swap Stations 3,Book Swap Stations,Neighborhood book exchange with rotating collection,"7 Helium Beach, Peterborough, Cambridgeshire",PE43 7UG,52.573250744722955,-0.2386776921736307,10 -11755,Peterborough Krypton End Public EV Charging Stations,Public EV Charging Stations,Public EV charging facility with covered waiting area,"Flat 37 Krypton End, Peterborough, Cambridgeshire",PE38 6LE,52.56806536672925,-0.23988955485904054,10 -11756,Public EV Charging Stations at Lake Emporium,Public EV Charging Stations,Electric vehicle charging point with multiple connectors,"84 Lake Emporium, Peterborough, Cambridgeshire",PE45 5UF,52.57084621584256,-0.2347425651165321,10 -11757,Community Compost Bins at Steel Crescent,Community Compost Bins,Shared compost facility managed by local volunteers,"Unit 4 Steel Crescent, Peterborough, Cambridgeshire",PE46 9YY,52.56590877183401,-0.23896999153862647,3 -11758,Community Public Water Refill Stations Peterborough 2,Public Water Refill Stations,Community water dispenser with usage counter display,"101 Gravel Emporium, Peterborough, Cambridgeshire",PE61 7XA,52.57242509105918,-0.24374433495141448,24 -11759,Lake Cove Urban Farms,Urban Farms,Community-run urban farm providing local produce,"33 Lake Cove, Peterborough, Cambridgeshire",PE48 7WG,52.57079885073704,-0.2386416672960382,35 -11760,King Common Public Water Refill Stations,Public Water Refill Stations,Public drinking fountain with bottle filling capability,"143 King Common, Bristol, Bristol",BS90 3YD,51.451755739419546,-2.5824412884052554,18 -11761,Solar-Powered Benches at Garden Edge,Solar-Powered Benches,Solar bench with USB charging ports and WiFi connectivity,"Flat 27 Garden Edge, Bristol, Bristol",BS14 5PC,51.45362261608812,-2.589798405864068,32 -11762,Community Public Water Refill Stations Bristol 3,Public Water Refill Stations,Water refill point with filtered water options,"191 Windmill View, Bristol, Bristol",BS94 2XM,51.456619913401916,-2.5881195144219062,29 -11763,Bristol Public Water Refill Stations 7,Public Water Refill Stations,Community water dispenser with usage counter display,"16 South Coil, Bristol, Bristol",BS66 3ZB,51.4550717977587,-2.590052057802781,33 -11764,Rainwater Harvesting Systems at Steel Labyrinth,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"51 Steel Labyrinth, Bristol, Bristol",BS11 5QL,51.45213689383695,-2.593212783396567,45 -11765,Community Bike Share Stations Bristol 2,Bike Share Stations,Cycle hire station with self-service rental system,"Unit 7 Valley End, Bristol, Bristol",BS93 8MQ,51.45434538458933,-2.5841517257569504,53 -11766,Bristol Central Clothing Donation Bins 4,Clothing Donation Bins,Secure collection point for reusable clothing and textiles,"147 Stream Bend, Bristol, Bristol",BS43 8ES,51.45390787771406,-2.5871880211207867,24 -11767,Bristol Rainwater Harvesting Systems 5,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"Unit 3 Coal Place, Bristol, Bristol",BS99 1NJ,51.457870077813396,-2.5885908744058033,46 -11768,Bristol Central e-Scooters 4,e-Scooters,Dockless e-scooter rental station with multiple vehicles available,"7 Cathedral Edge, Bristol, Bristol",BS15 4TR,51.457245806385416,-2.5831247973853007,28 -11769,Bristol Central Community Compost Bins 4,Community Compost Bins,Community compost bins with educational signage,"160 Brass Coil, Bristol, Bristol",BS21 5PF,51.45058271035278,-2.584653243096316,45 -11770,Community Urban Farms Bath 5,Urban Farms,Local food growing initiative in repurposed urban space,"126 Valley Square, Bath, Somerset",BA88 9VU,51.37341445017945,-2.3664767264939495,11 -11771,Bath Central Clothing Donation Bins 2,Clothing Donation Bins,Secure collection point for reusable clothing and textiles,"55F Watermill Harbor, Bath, Somerset",BA68 6SB,51.373368071467425,-2.356285763245917,36 -11772,Bath Public EV Charging Stations 2,Public EV Charging Stations,Electric vehicle charging point with multiple connectors,"100 Steel Top, Bath, Somerset",BA6 3JU,51.3729019863733,-2.356722188053446,27 -11773,Book Swap Stations at Queen Green,Book Swap Stations,Little free library with take-one-leave-one system,"133 Queen Green, Bath, Somerset",BA38 2GK,51.3782342677979,-2.3633892301632313,16 -11774,Bath Bike Share Stations,Bike Share Stations,Cycle hire station with self-service rental system,"18 Farm Way, Bath, Somerset",BA31 3XD,51.374837647345345,-2.362860232648037,1 -11775,Community Clothing Donation Bins Bath 2,Clothing Donation Bins,Community clothing recycling bin with regular collection,"Unit 10 Coal Passage, Bath, Somerset",BA63 8JW,51.37472342178791,-2.358533428719574,6 -11776,House Exchange Community Compost Bins,Community Compost Bins,Neighborhood composting facility for food and garden waste,"140 House Exchange, Bath, Somerset",BA27 1UH,51.37710965911475,-2.361609135510413,7 -11777,Bath E-Waste Collection Bins 3,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","Flat 11 New Tor, Bath, Somerset",BA31 8VU,51.37370783414655,-2.3576429978375466,35 -11778,Community Battery Recycling Points Bath 4,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"66 Railway Quay, Bath, Somerset",BA28 5LB,51.37416410237085,-2.35724590364111,31 -11779,Community Urban Farms Bath 6,Urban Farms,Local food growing initiative in repurposed urban space,"26 Forest Esplanade, Bath, Somerset",BA34 1LQ,51.3732678033967,-2.3577117767151448,46 -11780,Bath Solar-Powered Benches,Solar-Powered Benches,Solar bench with USB charging ports and WiFi connectivity,"171 Canal Helix, Bath, Somerset",BA69 2SZ,51.37329612494057,-2.3653094853341097,38 -11781,Bath Central Community Tool Libraries 3,Community Tool Libraries,Tool lending library for community use and sharing,"157 Marble Strand, Bath, Somerset",BA40 2UR,51.374901884209876,-2.359824986936828,20 -11782,Bath Solar-Powered Benches 2,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"Flat 28 Watermill Park, Bath, Somerset",BA16 2RF,51.372893476831614,-2.3618705044192407,30 -11783,Bath Bronze Ring Battery Recycling Points,Battery Recycling Points,Battery collection point with educational information about recycling,"147 Bronze Ring, Bath, Somerset",BA24 5NW,51.379014282782755,-2.3636668899952307,12 -11784,Community E-Waste Collection Bins Bath,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","Unit 5 Stream Edge, Bath, Somerset",BA12 1ZV,51.37185609527007,-2.3576508653527544,30 -11785,Bath Central Public Water Refill Stations 2,Public Water Refill Stations,Accessible water station encouraging reusable bottles,"147 Grange Gardens, Bath, Somerset",BA24 6FU,51.37443032269684,-2.367212623856991,8 -11786,Rainwater Harvesting Systems at University Dock,Rainwater Harvesting Systems,Urban water conservation project with storage tanks,"105 University Dock, Bath, Somerset",BA71 3KT,51.378860050972875,-2.3633288235950256,1 -11787,Bath Reservoir Alley Battery Recycling Points,Battery Recycling Points,Dedicated collection point for used batteries of all sizes,"32 Reservoir Alley, Bath, Somerset",BA94 2UB,51.37647203687526,-2.361343428527373,38 -11788,Railway Court Waste Oil Collection Points,Waste Oil Collection Points,Waste oil drop-off point for conversion to biodiesel,"108 Railway Court, Bath, Somerset",BA92 6KY,51.37852586124331,-2.3622499788376947,35 -11789,Community Rainwater Harvesting Systems Bath 3,Rainwater Harvesting Systems,Visible rainwater storage and filtration system,"122 Clay Top, Bath, Somerset",BA24 1FR,51.37433297047505,-2.3627542833184556,26 -11790,Old Road Green Roofs,Green Roofs,Building with extensive green roof system visible from public areas,"148 Old Road, Bath, Somerset",BA83 2KS,51.37217526374239,-2.3641004853604293,34 -11791,Portsmouth Central Community Compost Bins 2,Community Compost Bins,Urban composting hub turning food waste into valuable soil,"142 Lake Harbor, Portsmouth, Hampshire",PO75 7LA,50.81740894251577,-1.0853376400490284,44 -11792,Community Bike Share Stations Portsmouth 2,Bike Share Stations,Bike sharing facility with maintenance and repair services,"86 Hospital Pike, Portsmouth, Hampshire",PO42 2VR,50.81899340682515,-1.0902662476104872,4 -11793,Portsmouth Urban Farms,Urban Farms,Community-run urban farm providing local produce,"168 Farm Beach, Portsmouth, Hampshire",PO70 3LF,50.82339147416971,-1.0824576152733727,19 -11794,Book Swap Stations at Silver Terrace,Book Swap Stations,Little free library with take-one-leave-one system,"55E Silver Terrace, Portsmouth, Hampshire",PO76 6EM,50.82149754502683,-1.0918160074038055,7 -11795,Portsmouth Recycling Bins 2,Recycling Bins,Public access recycling bins for common household recyclables,"169 Pewter Circle, Portsmouth, Hampshire",PO4 2YS,50.8202504031405,-1.0829026095676288,32 -11796,Castle Oval Battery Recycling Points,Battery Recycling Points,Battery collection point with educational information about recycling,"24 Castle Oval, Portsmouth, Hampshire",PO25 4XQ,50.82041971687521,-1.0908121997551612,41 -11797,Portsmouth Cobalt Heights E-Waste Collection Bins,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","53 Cobalt Heights, Portsmouth, Hampshire",PO94 4HA,50.82241607472078,-1.0897809891706258,17 -11798,Portsmouth Urban Farms 2,Urban Farms,City farming project with volunteer opportunities,"93 College Ford, Portsmouth, Hampshire",PO40 4DZ,50.81977935607145,-1.0896405996452447,4 -11799,Community Compost Bins at Pond Bay,Community Compost Bins,Community compost bins with educational signage,"117 Pond Bay, Portsmouth, Hampshire",PO69 6TV,50.82143132505471,-1.0827572889384554,13 -11800,Portsmouth Battery Recycling Points 2,Battery Recycling Points,Secure battery recycling station to prevent environmental contamination,"167 House Moor, Portsmouth, Hampshire",PO91 8LP,50.81892632024846,-1.084137544472173,50 -11801,Abbey Bazaar Battery Recycling Points,Battery Recycling Points,Dedicated collection point for used batteries of all sizes,"111 Abbey Bazaar, Portsmouth, Hampshire",PO58 1VX,50.81756738023051,-1.083005949280265,29 -11802,House Harbor Rainwater Harvesting Systems,Rainwater Harvesting Systems,Community rainwater collection facility for shared gardens,"Suite 9 House Harbor, Portsmouth, Hampshire",PO77 8DU,50.81695530978179,-1.0826109126676808,3 -11803,Portsmouth Central Waste Oil Collection Points 4,Waste Oil Collection Points,Used oil collection facility with secure containers,"142 Beach Road, Portsmouth, Hampshire",PO92 6JW,50.82320847697172,-1.0935026299496853,53 -11804,Portsmouth Abbey Shore Book Swap Stations,Book Swap Stations,Community book exchange point with weatherproof shelving,"186 Abbey Shore, Portsmouth, Hampshire",PO79 6ST,50.81585641710358,-1.0931865467520285,33 -11805,Portsmouth Hydrogen Loop Community Compost Bins,Community Compost Bins,Community compost bins with educational signage,"Unit 17 Hydrogen Loop, Portsmouth, Hampshire",PO56 2AE,50.82116051475176,-1.0857157428219484,5 -11806,Huddersfield West Green Solar-Powered Benches,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"153 West Green, Huddersfield, West Yorkshire",HD22 1YZ,53.643723083752725,-1.786681164151591,28 -11807,Huddersfield College Terrace Solar-Powered Benches,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"182 College Terrace, Huddersfield, West Yorkshire",HD89 9FZ,53.646740739546665,-1.7852661937052345,4 -11808,Huddersfield Central Rainwater Harvesting Systems,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"132 Marble Pentagon, Huddersfield, West Yorkshire",HD80 1CA,53.648556362782564,-1.7906357256881944,41 -11809,Huddersfield Central Recycling Bins,Recycling Bins,"Public recycling point for paper, glass, plastic, and metal","73 Castle Embankment, Huddersfield, West Yorkshire",HD59 4RG,53.64209101033935,-1.7879016369660736,14 -11810,Urban Farms at Aluminium Circus,Urban Farms,Community garden with vegetable plots and fruit trees,"58 Aluminium Circus, Huddersfield, West Yorkshire",HD12 4JR,53.644903006398415,-1.7852310896102377,51 -11811,Radon Ring Public EV Charging Stations,Public EV Charging Stations,Electric vehicle charging point with multiple connectors,"70 Radon Ring, Huddersfield, West Yorkshire",HD21 8EQ,53.645222435954054,-1.7808348753215775,8 -11812,Sand Gate Bike Share Stations,Bike Share Stations,Cycle hire station with self-service rental system,"178 Sand Gate, Huddersfield, West Yorkshire",HD19 8EK,53.64870929119115,-1.782749657693366,2 -11813,Public Water Refill Stations at House Bottom,Public Water Refill Stations,Public drinking fountain with bottle filling capability,"15 House Bottom, Huddersfield, West Yorkshire",HD6 1XY,53.6434628194536,-1.7810381693053445,8 -11814,Bike Share Stations at Hill Emporium,Bike Share Stations,Community bike share point with regular and electric bicycles,"171 Hill Emporium, Huddersfield, West Yorkshire",HD3 6VT,53.64745107729043,-1.7808894620323192,24 -11815,Huddersfield Pollinator Gardens 2,Pollinator Gardens,Community garden dedicated to supporting local insect populations,"75 Chalk Park, Huddersfield, West Yorkshire",HD29 7HD,53.64390176751236,-1.789185591560544,32 -11816,Community Urban Farms Huddersfield 2,Urban Farms,Local food growing initiative in repurposed urban space,"38 Gravel Causeway, Huddersfield, West Yorkshire",HD61 3KS,53.64283919460395,-1.7882587825383958,20 -11817,Community Rainwater Harvesting Systems Huddersfield 6,Rainwater Harvesting Systems,Visible rainwater storage and filtration system,"Flat 45 North Crescent, Huddersfield, West Yorkshire",HD88 4FT,53.649445587116595,-1.7903291693237147,25 -11818,Huddersfield Flint Fair Community Compost Bins,Community Compost Bins,Public composting station with separate sections for different stages,"18 Flint Fair, Huddersfield, West Yorkshire",HD79 9ES,53.64799361726052,-1.7834020328556457,36 -11819,Huddersfield Argon Circle Recycling Bins,Recycling Bins,Public access recycling bins for common household recyclables,"78 Argon Circle, Huddersfield, West Yorkshire",HD23 1BN,53.6447907232151,-1.7809352066227961,13 -11820,Huddersfield e-Scooters,e-Scooters,Dockless e-scooter rental station with multiple vehicles available,"168 Argon Causeway, Huddersfield, West Yorkshire",HD40 7GY,53.64859335262888,-1.7848252428189701,53 -11821,Mount Maze Rainwater Harvesting Systems,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"Flat 18 Mount Maze, Huddersfield, West Yorkshire",HD36 1ZT,53.64305536169766,-1.7796068532111384,42 -11822,Pond Shore Solar-Powered Benches,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"102 Pond Shore, Huddersfield, West Yorkshire",HD92 4LL,53.64547612183463,-1.7791755082251572,48 -11823,Huddersfield Market Oval e-Scooters,e-Scooters,E-scooter parking and charging zone for public use,"62 Market Oval, Huddersfield, West Yorkshire",HD29 1KD,53.64224058742354,-1.7841091193094956,45 -11824,Huddersfield Lodge Square Battery Recycling Points,Battery Recycling Points,Battery recycling bin with separate compartments for different types,"149 Lodge Square, Huddersfield, West Yorkshire",HD77 7SX,53.649222133882304,-1.784306565583741,15 -11825,Community Compost Bins at High Edge,Community Compost Bins,Shared compost facility managed by local volunteers,"5 High Edge, Huddersfield, West Yorkshire",HD55 9LD,53.64536069150757,-1.785850771892248,45 -11826,Pollinator Gardens at Vineyard Square,Pollinator Gardens,Urban wildflower meadow supporting biodiversity,"Flat 22 Vineyard Square, Huddersfield, West Yorkshire",HD33 2GT,53.6483126004251,-1.7874607603931774,3 -11827,Huddersfield Pollinator Gardens 3,Pollinator Gardens,Urban wildflower meadow supporting biodiversity,"93 Silicon Drive, Huddersfield, West Yorkshire",HD60 4ZS,53.64818029804597,-1.7876514489196849,21 -11828,Huddersfield Urban Farms 2,Urban Farms,Community-run urban farm providing local produce,"44 London Market, Huddersfield, West Yorkshire",HD22 2BK,53.648768997874434,-1.7847914712905733,5 -11829,New Ring Waste Oil Collection Points,Waste Oil Collection Points,Cooking oil recycling point for residential use,"94 New Ring, Sunderland, Tyne and Wear",SR33 8XZ,54.90681063286418,-1.384391165752668,50 -11830,Sunderland Clothing Donation Bins,Clothing Donation Bins,Textile recycling point for clothes and household fabrics,"138 Cliff Top, Sunderland, Tyne and Wear",SR44 9JX,54.90661366005977,-1.3873923284230245,33 -11831,Sunderland Vineyard Mews Solar-Powered Benches,Solar-Powered Benches,Solar-powered rest area with phone charging capabilities,"Suite 5 Vineyard Mews, Sunderland, Tyne and Wear",SR27 4CD,54.904935802603006,-1.3799936147834462,46 -11832,Sunderland Central Bike Share Stations 4,Bike Share Stations,Bike rental hub with secure docking stations,"44 Flint Walk, Sunderland, Tyne and Wear",SR95 1VX,54.9096112765715,-1.380610792699157,4 -11833,Sunderland Field Bay Bike Share Stations,Bike Share Stations,Community bike share point with regular and electric bicycles,"Flat 25 Field Bay, Sunderland, Tyne and Wear",SR50 1RE,54.9037356845507,-1.3861541857448576,25 -11834,Community Community Tool Libraries Sunderland 5,Community Tool Libraries,Public tool library with wide range of equipment available,"76 Mill Court, Sunderland, Tyne and Wear",SR65 5LW,54.90895671665321,-1.3791941110375932,42 -11835,Sunderland Beach Causeway Green Roofs,Green Roofs,Building with extensive green roof system visible from public areas,"93 Beach Causeway, Sunderland, Tyne and Wear",SR29 3LF,54.90866498914643,-1.383901790482345,8 -11836,Community E-Waste Collection Bins Sunderland 4,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","113 Coal Top, Sunderland, Tyne and Wear",SR24 7EJ,54.90607201022281,-1.3784800539717492,22 -11837,Sunderland Public EV Charging Stations 2,Public EV Charging Stations,Fast-charging station for electric vehicles,"73 Windmill Strand, Sunderland, Tyne and Wear",SR12 2XR,54.904796894548184,-1.3868447129851256,22 -11838,Iron Viaduct Public EV Charging Stations,Public EV Charging Stations,Public EV charging facility with covered waiting area,"85 Iron Viaduct, Sunderland, Tyne and Wear",SR57 8GB,54.90850577543032,-1.3770459922354488,49 -11839,Sunderland Rainwater Harvesting Systems 2,Rainwater Harvesting Systems,Urban water conservation project with storage tanks,"108 Hospital Strand, Sunderland, Tyne and Wear",SR53 7XR,54.903111732521566,-1.3845154908303636,15 -11840,Hall Drive Solar-Powered Benches,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"Flat 4 Hall Drive, Sunderland, Tyne and Wear",SR85 2AP,54.90483168422567,-1.3874719088135363,2 -11841,Sunderland Central Bike Share Stations 5,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"178 Grange Viaduct, Sunderland, Tyne and Wear",SR6 8UQ,54.90601995337867,-1.3811572663708416,6 -11842,Bike Share Stations at Marble Exchange,Bike Share Stations,Cycle hire station with self-service rental system,"52 Marble Exchange, Sunderland, Tyne and Wear",SR70 9LS,54.90706767384783,-1.3803342555435258,19 -11843,Sunderland e-Scooters,e-Scooters,E-scooter sharing station with app-based rental system,"120 Market Ring, Sunderland, Tyne and Wear",SR40 2KX,54.90986529401879,-1.3779640141185394,24 -11844,Quarry Embankment E-Waste Collection Bins,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","Unit 17 Quarry Embankment, Sunderland, Tyne and Wear",SR59 7KP,54.90929838359523,-1.3791460672585927,8 -11845,Sunderland Public Water Refill Stations 3,Public Water Refill Stations,Community water dispenser with usage counter display,"159 Pond Place, Sunderland, Tyne and Wear",SR68 1SV,54.907628482841815,-1.3869411204000868,36 -11846,Spring Shore Battery Recycling Points,Battery Recycling Points,Battery recycling bin with separate compartments for different types,"77 Spring Shore, Newcastle upon Tyne, Tyne and Wear",NE3 2ZY,54.98041563777516,-1.6165253836301696,21 -11847,Newcastle upon Tyne Public EV Charging Stations 4,Public EV Charging Stations,Fast-charging station for electric vehicles,"142 Watermill Spiral, Newcastle upon Tyne, Tyne and Wear",NE90 1GM,54.98040479434235,-1.6181741344412395,1 -11848,Newcastle upon Tyne Public EV Charging Stations 5,Public EV Charging Stations,Multi-vehicle electric charging hub with different power options,"179 Iron Ford, Newcastle upon Tyne, Tyne and Wear",NE11 6YG,54.97622131831144,-1.6178675641820486,11 -11849,Battery Recycling Points at Reservoir Cliff,Battery Recycling Points,Battery recycling bin with separate compartments for different types,"160 Reservoir Cliff, Newcastle upon Tyne, Tyne and Wear",NE22 6UP,54.97925806713448,-1.6197646769497842,31 -11850,Waste Oil Collection Points at King Ford,Waste Oil Collection Points,Cooking oil recycling point for residential use,"Flat 50 King Ford, Newcastle upon Tyne, Tyne and Wear",NE11 4AR,54.980595291685646,-1.6230670158908767,43 -11851,Community Rainwater Harvesting Systems Newcastle upon Tyne 6,Rainwater Harvesting Systems,Urban water conservation project with storage tanks,"97 Pool Common, Newcastle upon Tyne, Tyne and Wear",NE11 3EN,54.981261014401255,-1.6150388029199139,28 -11852,Newcastle upon Tyne Farm Heath Public EV Charging Stations,Public EV Charging Stations,EV charging station with renewable energy source,"90D Farm Heath, Newcastle upon Tyne, Tyne and Wear",NE37 3AT,54.982053073379944,-1.6182357940864893,8 -11853,Aberdeen Central E-Waste Collection Bins 4,E-Waste Collection Bins,Secure collection point for electronic waste and small appliances,"105D Farm Place, Aberdeen, Aberdeen",AB1 4TE,57.15023259347791,-2.0899297123013114,36 -11854,Aberdeen Central Urban Farms 3,Urban Farms,Community-run urban farm providing local produce,"Suite 6 Mine Triangle, Aberdeen, Aberdeen",AB40 8ZK,57.15261056628536,-2.096102521324609,18 -11855,Aberdeen Urban Farms,Urban Farms,Community-run urban farm providing local produce,"143 Aluminium Road, Aberdeen, Aberdeen",AB3 4YB,57.149072884192236,-2.0938618962557736,6 -11856,Aberdeen Mill Hill Solar-Powered Benches,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"32 Mill Hill, Aberdeen, Aberdeen",AB37 3WJ,57.15076717785691,-2.0981778042870682,9 -11857,E-Waste Collection Bins at University Trail,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","130 University Trail, Aberdeen, Aberdeen",AB8 3XQ,57.153579747942906,-2.0982239629742945,6 -11858,Aberdeen Central Book Swap Stations 3,Book Swap Stations,Free book swap station encouraging reading and reuse,"68 Chalk Tunnel, Aberdeen, Aberdeen",AB69 4QX,57.14823232745664,-2.0970151365341203,20 -11859,Victoria Moor Bike Share Stations,Bike Share Stations,Bike sharing facility with maintenance and repair services,"57 Victoria Moor, Aberdeen, Aberdeen",AB38 6DC,57.15244168956109,-2.0927086379468802,45 -11860,Railway Gate Bike Share Stations,Bike Share Stations,Community bike share point with regular and electric bicycles,"141 Railway Gate, Aberdeen, Aberdeen",AB2 4UR,57.14693396757817,-2.0979785116497065,37 -11861,Titanium Oval Book Swap Stations,Book Swap Stations,Community book exchange point with weatherproof shelving,"174 Titanium Oval, Aberdeen, Aberdeen",AB58 3QD,57.15040994779394,-2.093549177804424,28 -11862,Aberdeen Central Solar-Powered Benches,Solar-Powered Benches,Solar-powered rest area with phone charging capabilities,"46 Church Terrace, Aberdeen, Aberdeen",AB64 4JN,57.150386612560695,-2.093891537666013,18 -11863,Aberdeen Central E-Waste Collection Bins 5,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","108 West Pike, Aberdeen, Aberdeen",AB13 4MS,57.14776438760613,-2.0892978541048843,26 -11864,Aberdeen Argon Hexagon Bike Share Stations,Bike Share Stations,Bike sharing facility with maintenance and repair services,"Unit 9 Argon Hexagon, Aberdeen, Aberdeen",AB62 5PK,57.147290609432716,-2.0966807771388463,16 -11865,Bike Share Stations at Market Coil,Bike Share Stations,Cycle hire station with self-service rental system,"Suite 7 Market Coil, Aberdeen, Aberdeen",AB79 3WZ,57.15060321419237,-2.097659594732394,10 -11866,Aberdeen Green Roofs 2,Green Roofs,Public building showcasing sustainable rooftop vegetation,"143 Field Gate, Aberdeen, Aberdeen",AB12 9TY,57.15270778701464,-2.0989248829967706,16 -11867,Aberdeen Central Community Tool Libraries 7,Community Tool Libraries,Tool lending library for community use and sharing,"169 Cliff Shore, Aberdeen, Aberdeen",AB9 4RD,57.15195416313553,-2.090000713489095,36 -11868,Public EV Charging Stations at Gold Junction,Public EV Charging Stations,EV charging station with renewable energy source,"Flat 32 Gold Junction, Aberdeen, Aberdeen",AB70 9DN,57.14924729442098,-2.092910584923691,7 -11869,Aberdeen Public EV Charging Stations 4,Public EV Charging Stations,Multi-vehicle electric charging hub with different power options,"Suite 4 Grange Esplanade, Aberdeen, Aberdeen",AB21 3JH,57.14942015235843,-2.0899393267104065,51 -11870,Aberdeen Central Rainwater Harvesting Systems 2,Rainwater Harvesting Systems,Visible rainwater storage and filtration system,"143 Zinc Twist, Aberdeen, Aberdeen",AB80 8LK,57.14698189007134,-2.097129504009603,44 -11871,Aberdeen College Cliff E-Waste Collection Bins,E-Waste Collection Bins,Community e-waste collection facility with regular collection schedule,"10 College Cliff, Aberdeen, Aberdeen",AB25 2UC,57.15333789790368,-2.0887139669065373,46 -11872,Aberdeen Lodge Heights e-Scooters,e-Scooters,Designated e-scooter pickup and drop-off point,"145 Lodge Heights, Aberdeen, Aberdeen",AB82 9KV,57.15060201547989,-2.093311213906963,29 -11873,Community Solar-Powered Benches Aberdeen 6,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"97 Cliff Cliff, Aberdeen, Aberdeen",AB97 4PX,57.15340208909125,-2.095810985011653,8 -11874,Aberdeen Queen Embankment Green Roofs,Green Roofs,Green roof installation with educational tours available,"25 Queen Embankment, Aberdeen, Aberdeen",AB21 5LT,57.15174321112464,-2.099414353721338,5 -11875,Public Water Refill Stations at Green Twist 2,Public Water Refill Stations,Public drinking fountain with bottle filling capability,"126 Green Twist, Aberdeen, Aberdeen",AB59 3UM,57.15217098481262,-2.0942701240727937,11 -11876,Community Green Roofs Aberdeen 3,Green Roofs,Public building showcasing sustainable rooftop vegetation,"Flat 48 Aluminium Parade, Aberdeen, Aberdeen",AB50 9JA,57.146127565081855,-2.0987212567545344,31 -11877,Nottingham Bike Share Stations 4,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"52 Watermill Causeway, Nottingham, Nottinghamshire",NG48 5FF,52.95779627334914,-1.1534205492629335,31 -11878,Nottingham Clothing Donation Bins 2,Clothing Donation Bins,Clothing donation bin supporting local charities,"Flat 35 School Bottom, Nottingham, Nottinghamshire",NG24 6JA,52.95384931753717,-1.1536430907540167,27 -11879,Nottingham New Green e-Scooters,e-Scooters,Dockless e-scooter rental station with multiple vehicles available,"186 New Green, Nottingham, Nottinghamshire",NG40 2GK,52.953173607147235,-1.1606861723237951,50 -11880,Nottingham Central E-Waste Collection Bins 2,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","32 Garden Labyrinth, Nottingham, Nottinghamshire",NG75 7ZH,52.95692850627204,-1.156871799490774,4 -11881,Community Battery Recycling Points Nottingham 2,Battery Recycling Points,Battery collection point with educational information about recycling,"61 Farm Street, Nottingham, Nottinghamshire",NG14 2PU,52.957434778405634,-1.1557101352029837,22 -11882,Nottingham Central Green Roofs 4,Green Roofs,Public building showcasing sustainable rooftop vegetation,"48 Victoria Shore, Nottingham, Nottinghamshire",NG75 3TL,52.95786521487521,-1.1553489958921583,21 -11883,Chromium Cliff Rainwater Harvesting Systems,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"121 Chromium Cliff, Nottingham, Nottinghamshire",NG57 5LL,52.951357105223046,-1.162086413566733,23 -11884,Nottingham Waste Oil Collection Points 6,Waste Oil Collection Points,Cooking oil recycling point for residential use,"26 Pit Bridge, Nottingham, Nottinghamshire",NG36 9VZ,52.95282001573884,-1.158026467498569,52 -11885,Nottingham Waste Oil Collection Points 7,Waste Oil Collection Points,Cooking oil collection facility with educational information,"Flat 41 Garden Bend, Nottingham, Nottinghamshire",NG86 3YE,52.95549136082426,-1.1562852901853269,40 -11886,Community Bike Share Stations Nottingham 3,Bike Share Stations,Bike rental hub with secure docking stations,"198 Helium Bend, Nottingham, Nottinghamshire",NG60 1MR,52.95549895915246,-1.1615517187766504,8 -11887,Battery Recycling Points at College Circus,Battery Recycling Points,Dedicated collection point for used batteries of all sizes,"66 College Circus, Nottingham, Nottinghamshire",NG99 9MJ,52.9566535618699,-1.1606160609025313,22 -11888,Battery Recycling Points at Abbey Fair,Battery Recycling Points,Battery collection point with educational information about recycling,"93 Abbey Fair, Nottingham, Nottinghamshire",NG41 9HS,52.95584832814176,-1.1623142207976738,15 -11889,Community E-Waste Collection Bins Nottingham 5,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","110 Copper Curve, Nottingham, Nottinghamshire",NG66 4ZB,52.952307909857936,-1.1554034522460288,50 -11890,Nottingham Tin Cross Rainwater Harvesting Systems,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"110 Tin Cross, Nottingham, Nottinghamshire",NG4 5NG,52.957909882236564,-1.160686581180213,1 -11891,Community Rainwater Harvesting Systems Nottingham 2,Rainwater Harvesting Systems,Visible rainwater storage and filtration system,"85 Zinc Hill, Nottingham, Nottinghamshire",NG21 2JR,52.95351226828544,-1.1590239074071866,41 -11892,Rainwater Harvesting Systems at Cliff Exchange,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"91 Cliff Exchange, Nottingham, Nottinghamshire",NG59 3TV,52.958461068988875,-1.1552147005815094,52 -11893,Community Battery Recycling Points Nottingham 3,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"39 Station Junction, Nottingham, Nottinghamshire",NG46 1BR,52.951414944210825,-1.1640081107253426,27 -11894,E-Waste Collection Bins at Granite Street,E-Waste Collection Bins,Community e-waste collection facility with regular collection schedule,"143D Granite Street, Nottingham, Nottinghamshire",NG52 4HN,52.95365722881765,-1.1617360565673205,3 -11895,Community Rainwater Harvesting Systems Nottingham 3,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"15A Green Center, Nottingham, Nottinghamshire",NG19 9FH,52.956536186846314,-1.1562436000772087,13 -11896,E-Waste Collection Bins at Reservoir Twist,E-Waste Collection Bins,Electronic waste drop-off point with data security assurance,"9 Reservoir Twist, Nottingham, Nottinghamshire",NG40 3HN,52.95183022700377,-1.156738208808919,53 -11897,Community Rainwater Harvesting Systems Swansea 5,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"Unit 19 College Helix, Swansea, Swansea",SA77 5HS,51.6222910938957,-3.945400177309864,50 -11898,Railway Causeway Clothing Donation Bins,Clothing Donation Bins,Community clothing recycling bin with regular collection,"172 Railway Causeway, Swansea, Swansea",SA88 3QD,51.62418007253534,-3.9436032281892364,31 -11899,Community Solar-Powered Benches Swansea 3,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"Unit 18 Cottage Common, Swansea, Swansea",SA7 5CG,51.61952536675164,-3.946941925507116,27 -11900,Valley Avenue Bike Share Stations,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"169 Valley Avenue, Swansea, Swansea",SA57 7MB,51.621666371205585,-3.9427320324172754,34 -11901,Swansea Central e-Scooters 3,e-Scooters,Designated e-scooter pickup and drop-off point,"200 Wood Walk, Swansea, Swansea",SA56 3PT,51.62390880841256,-3.944826456072741,33 -11902,Swansea E-Waste Collection Bins 5,E-Waste Collection Bins,Dedicated bin for responsible disposal of electronic items,"78 Stone Pike, Swansea, Swansea",SA32 3VS,51.6193417509204,-3.9428628810247006,2 -11903,Swansea Central Urban Farms 4,Urban Farms,Urban agriculture site with educational programs,"97 Victoria End, Swansea, Swansea",SA22 5JP,51.62192400449316,-3.9377342397188992,3 -11904,Swansea Central Pollinator Gardens 3,Pollinator Gardens,Public garden designed to support bees and butterflies,"80 Pit Down, Swansea, Swansea",SA26 8TD,51.621233960678666,-3.9481492015055775,24 -11905,Battery Recycling Points at Aluminium Mart,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"153 Aluminium Mart, Swansea, Swansea",SA57 6SW,51.617718294972605,-3.941158210724614,19 -11906,Community Battery Recycling Points Swansea 2,Battery Recycling Points,Battery collection point with educational information about recycling,"21 Stream Park, Swansea, Swansea",SA95 2MR,51.62041076203152,-3.944343157706756,24 -11907,Swansea Central Recycling Bins,Recycling Bins,"Public recycling point for paper, glass, plastic, and metal","72 New Fell, Swansea, Swansea",SA66 5RL,51.62101559629096,-3.9460880469048907,44 -11908,Edinburgh Granite Quay Rainwater Harvesting Systems,Rainwater Harvesting Systems,Urban water conservation project with storage tanks,"137 Granite Quay, Edinburgh, Edinburgh",EH16 3RV,55.95033943562889,-3.190193024799376,4 -11909,Edinburgh Cobalt Square Green Roofs,Green Roofs,Public building showcasing sustainable rooftop vegetation,"120 Cobalt Square, Edinburgh, Edinburgh",EH44 1RW,55.95325502153351,-3.188148221361981,20 -11910,Battery Recycling Points at Silver Hill,Battery Recycling Points,Battery collection point with educational information about recycling,"195 Silver Hill, Edinburgh, Edinburgh",EH61 4JK,55.95111817469807,-3.192162727526003,5 -11911,Edinburgh Central Clothing Donation Bins 2,Clothing Donation Bins,Textile recycling point for clothes and household fabrics,"133 Hall Coil, Edinburgh, Edinburgh",EH89 7ZX,55.9495743299352,-3.1840755350942525,6 -11912,Edinburgh Central Community Compost Bins 5,Community Compost Bins,Neighborhood composting facility for food and garden waste,"76 Argon Street, Edinburgh, Edinburgh",EH53 4KN,55.95396841221357,-3.191075734412546,4 -11913,Clothing Donation Bins at Nitrogen Ford,Clothing Donation Bins,Secure collection point for reusable clothing and textiles,"150F Nitrogen Ford, Edinburgh, Edinburgh",EH19 2SB,55.955570516014994,-3.1942077390277497,34 -11914,Edinburgh Central E-Waste Collection Bins 3,E-Waste Collection Bins,Community e-waste collection facility with regular collection schedule,"146 Titanium Passage, Edinburgh, Edinburgh",EH71 2FN,55.94972893327724,-3.187317085694364,21 -11915,Edinburgh River Tor Pollinator Gardens,Pollinator Gardens,Bee-friendly garden with educational signage about pollinators,"158 River Tor, Edinburgh, Edinburgh",EH70 5UZ,55.950721822405605,-3.186470408305657,11 -11916,Edinburgh Rainwater Harvesting Systems 8,Rainwater Harvesting Systems,Urban water conservation project with storage tanks,"136A Old Ridge, Edinburgh, Edinburgh",EH8 4QH,55.955364246427315,-3.1850870369023077,40 -11917,E-Waste Collection Bins at Nitrogen Drive,E-Waste Collection Bins,Dedicated bin for responsible disposal of electronic items,"77 Nitrogen Drive, Edinburgh, Edinburgh",EH98 6PR,55.955610507687965,-3.187198596884041,44 -11918,Telford Park Boulevard Book Swap Stations,Book Swap Stations,Community book exchange point with weatherproof shelving,"198 Park Boulevard, Telford, Shropshire",TF44 6LQ,52.6805685743872,-2.4497085798699647,33 -11919,Telford Central Public EV Charging Stations 3,Public EV Charging Stations,Multi-vehicle electric charging hub with different power options,"56C Canal Emporium, Telford, Shropshire",TF66 5XV,52.67809990815019,-2.4472822812484276,2 -11920,Solar-Powered Benches at Well Harbor,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"193 Well Harbor, Telford, Shropshire",TF27 6QD,52.68174433033055,-2.4413807007420365,1 -11921,Telford Central E-Waste Collection Bins 3,E-Waste Collection Bins,Secure collection point for electronic waste and small appliances,"27 University Bend, Telford, Shropshire",TF68 6ZS,52.680936410007064,-2.4404682772937663,6 -11922,Community Green Roofs Telford 4,Green Roofs,Biodiverse roof garden with insect habitats and rainwater collection,"131 Canal Wharf, Telford, Shropshire",TF26 3GN,52.678653502333944,-2.440179912137713,11 -11923,Telford Recycling Bins,Recycling Bins,Multi-material recycling point with clear instructions for proper sorting,"109 Sand Lane, Telford, Shropshire",TF74 3KS,52.67675680360802,-2.45041986877349,50 -11924,Community Urban Farms Telford 5,Urban Farms,Community garden with vegetable plots and fruit trees,"Unit 20 West Close, Telford, Shropshire",TF65 8JP,52.67628153514664,-2.4496723519393684,30 -11925,Community Tool Libraries at Hydrogen Hexagon,Community Tool Libraries,Community resource center for borrowing tools and equipment,"125 Hydrogen Hexagon, Telford, Shropshire",TF41 7HE,52.67752672573321,-2.4488191604545873,30 -11926,Pond Rise Community Compost Bins,Community Compost Bins,Community compost bins with educational signage,"20 Pond Rise, Telford, Shropshire",TF33 3XZ,52.67930871652469,-2.449432847228124,21 -11927,Green Roofs at Hill Bazaar,Green Roofs,Accessible green roof garden with native plant species,"129 Hill Bazaar, Telford, Shropshire",TF40 7MG,52.67631270452527,-2.4480501145727613,38 -11928,Telford Aluminium Bazaar Community Compost Bins,Community Compost Bins,Community compost bins with educational signage,"55A Aluminium Bazaar, Telford, Shropshire",TF41 1AF,52.67691370013605,-2.4433214580564724,22 -11929,Telford Central e-Scooters,e-Scooters,E-scooter parking and charging zone for public use,"85 River End, Telford, Shropshire",TF42 3YP,52.67944202298814,-2.4397339355964998,27 -11930,Brass Circus Recycling Bins,Recycling Bins,Multi-material recycling point with clear instructions for proper sorting,"189 Brass Circus, Telford, Shropshire",TF1 1PZ,52.679064030406046,-2.4435373549828094,13 -11931,Telford Central Urban Farms 3,Urban Farms,Community-run urban farm providing local produce,"106 Bridge Port, Telford, Shropshire",TF45 6ML,52.68154977609008,-2.4420848114134666,32 -11932,Brass Corner e-Scooters,e-Scooters,E-scooter sharing station with app-based rental system,"194 Brass Corner, Telford, Shropshire",TF25 8EZ,52.6756359870682,-2.440080074076592,48 -11933,Telford Central e-Scooters 2,e-Scooters,E-scooter parking and charging zone for public use,"198 Clay Bridge, Telford, Shropshire",TF49 8FJ,52.67769810155418,-2.443961133004402,1 -11934,Telford Battery Recycling Points,Battery Recycling Points,Dedicated collection point for used batteries of all sizes,"83 Bronze Embankment, Telford, Shropshire",TF35 9EM,52.67601919429562,-2.4454648261225462,17 -11935,Rainwater Harvesting Systems at Railway Close,Rainwater Harvesting Systems,Community rainwater collection facility for shared gardens,"Suite 6 Railway Close, Telford, Shropshire",TF95 1EE,52.67797820978085,-2.448021123376825,4 -11936,Gold Pike Bike Share Stations,Bike Share Stations,Bike sharing facility with maintenance and repair services,"Unit 8 Gold Pike, Telford, Shropshire",TF25 6EJ,52.680873315274916,-2.4452154833805557,14 -11937,Battery Recycling Points at Argon Close,Battery Recycling Points,Secure battery recycling station to prevent environmental contamination,"84 Argon Close, Telford, Shropshire",TF16 2AK,52.67779606754857,-2.443282429028629,34 -11938,Telford Book Swap Stations 2,Book Swap Stations,Free book swap station encouraging reading and reuse,"57 North Strand, Telford, Shropshire",TF99 4XK,52.67664502159941,-2.4496832911647837,38 -11939,Telford Oxygen Loop Waste Oil Collection Points,Waste Oil Collection Points,Used oil collection facility with secure containers,"58 Oxygen Loop, Telford, Shropshire",TF43 7NA,52.6814578317419,-2.4393463141632963,32 -11940,Solar-Powered Benches at West Cove,Solar-Powered Benches,Eco-friendly bench with solar panels and LED lighting,"33 West Cove, Telford, Shropshire",TF94 9GJ,52.679412510945426,-2.4445258685566547,9 -11941,Community Rainwater Harvesting Systems Telford,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"38 New Fair, Telford, Shropshire",TF9 3ZX,52.678054818135436,-2.449010516776768,42 -11942,Oxygen Crescent E-Waste Collection Bins,E-Waste Collection Bins,Community e-waste collection facility with regular collection schedule,"142 Oxygen Crescent, Plymouth, Devon",PL57 2QZ,50.37525648503289,-4.137416849810374,7 -11943,Nickel Corner Community Compost Bins,Community Compost Bins,Community compost bins with educational signage,"83D Nickel Corner, Plymouth, Devon",PL84 3TU,50.37456830556127,-4.141014292256162,12 -11944,Plymouth Central Community Tool Libraries 4,Community Tool Libraries,Tool sharing hub with membership system and workshops,"24 Stream Drive, Plymouth, Devon",PL78 7TS,50.37733585994638,-4.146679304917045,19 -11945,Bronze Emporium Battery Recycling Points,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"20 Bronze Emporium, Plymouth, Devon",PL47 9ZU,50.37560359535006,-4.145530594828039,30 -11946,Plymouth Solar-Powered Benches 4,Solar-Powered Benches,Solar-powered rest area with phone charging capabilities,"23 Sand Parade, Plymouth, Devon",PL98 3XA,50.372711429971915,-4.143709337596095,18 -11947,Community Compost Bins at Mount Center,Community Compost Bins,Urban composting hub turning food waste into valuable soil,"Suite 3 Mount Center, Plymouth, Devon",PL39 4UW,50.37933607046693,-4.1416456738576235,11 -11948,Cove Coil Battery Recycling Points,Battery Recycling Points,Secure battery recycling station to prevent environmental contamination,"52 Cove Coil, Plymouth, Devon",PL70 5VP,50.37922025689602,-4.143270554287862,12 -11949,Brass Walk Battery Recycling Points,Battery Recycling Points,Battery collection point with educational information about recycling,"60F Brass Walk, Plymouth, Devon",PL9 3JL,50.37660821708603,-4.142460499493026,28 -11950,Community Battery Recycling Points Plymouth 5,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"51 Tin Ring, Plymouth, Devon",PL57 2QX,50.37365856365528,-4.147519264008274,18 -11951,Plymouth Clothing Donation Bins 4,Clothing Donation Bins,Community clothing recycling bin with regular collection,"52 Meadow Promenade, Plymouth, Devon",PL40 1PU,50.37918761194725,-4.1469982696909415,1 -11952,Community Waste Oil Collection Points Plymouth 4,Waste Oil Collection Points,Cooking oil collection facility with educational information,"Flat 17 Abbey Pentagon, Plymouth, Devon",PL89 3ZQ,50.37827933284913,-4.147373184061472,2 -11953,Plymouth Central Solar-Powered Benches 3,Solar-Powered Benches,Eco-friendly bench with solar panels and LED lighting,"69 North Court, Plymouth, Devon",PL53 7RH,50.37690341053287,-4.1410893171918435,23 -11954,Plymouth Urban Farms 4,Urban Farms,Urban agriculture site with educational programs,"189 Stone Down, Plymouth, Devon",PL48 1BZ,50.379050227405436,-4.140443977471493,12 -11955,Huddersfield South Place e-Scooters,e-Scooters,Electric scooter hub with maintenance and charging facilities,"75 South Place, Huddersfield, West Yorkshire",HD8 3ZT,53.64592987242188,-1.7875168337589116,17 -11956,Huddersfield Central Solar-Powered Benches 4,Solar-Powered Benches,Public seating with integrated solar panels and device charging,"10 Brass Turn, Huddersfield, West Yorkshire",HD30 7HM,53.642303812879206,-1.7814902227155955,51 -11957,Barn Oval Green Roofs,Green Roofs,Public building showcasing sustainable rooftop vegetation,"194 Barn Oval, Huddersfield, West Yorkshire",HD84 8QQ,53.648787601917924,-1.7894983138242173,31 -11958,Book Swap Stations at Hospital Close,Book Swap Stations,Free book swap station encouraging reading and reuse,"59 Hospital Close, Huddersfield, West Yorkshire",HD73 8CQ,53.64944021210715,-1.7842780094441424,18 -11959,Huddersfield Urban Farms 3,Urban Farms,Local food growing initiative in repurposed urban space,"108 Xenon Mall, Huddersfield, West Yorkshire",HD39 4QH,53.64795652359747,-1.7901748447314094,23 -11960,Community Public EV Charging Stations Huddersfield 2,Public EV Charging Stations,EV charging station with renewable energy source,"187 Mill Causeway, Huddersfield, West Yorkshire",HD86 5HM,53.644212633688284,-1.7899131250044706,39 -11961,Helium Common E-Waste Collection Bins,E-Waste Collection Bins,Electronic waste drop-off point with data security assurance,"Flat 3 Helium Common, Huddersfield, West Yorkshire",HD79 5VZ,53.64897985650544,-1.7870736945843178,19 -11962,Huddersfield Rock Heights Public Water Refill Stations,Public Water Refill Stations,Public drinking fountain with bottle filling capability,"119 Rock Heights, Huddersfield, West Yorkshire",HD12 6VL,53.6482537170187,-1.7886861136396708,32 -11963,Argon Mart Community Tool Libraries,Community Tool Libraries,Tool lending library for community use and sharing,"108 Argon Mart, Huddersfield, West Yorkshire",HD34 7FB,53.64446851212143,-1.788397234882762,5 -11964,Huddersfield Central Recycling Bins 2,Recycling Bins,Community recycling station with separate bins for different materials,"95 Lake Fair, Huddersfield, West Yorkshire",HD90 3BF,53.64961249534655,-1.7829109958928337,9 -11965,Community Book Swap Stations Huddersfield 4,Book Swap Stations,Public book sharing library in repurposed phone box,"182 Steel Place, Huddersfield, West Yorkshire",HD9 2YY,53.64899197893842,-1.788659553797133,26 -11966,Huddersfield Battery Recycling Points,Battery Recycling Points,Battery recycling bin with separate compartments for different types,"1 Quarry Pentagon, Huddersfield, West Yorkshire",HD21 6ZR,53.649450145936406,-1.7896296464066757,6 -11967,Stone Gardens Pollinator Gardens,Pollinator Gardens,Community garden dedicated to supporting local insect populations,"33 Stone Gardens, Huddersfield, West Yorkshire",HD42 7YA,53.64284836977755,-1.7876492903785997,33 -11968,Hospital Rise Bike Share Stations,Bike Share Stations,Public bicycle sharing station with multiple bikes available,"187 Hospital Rise, Huddersfield, West Yorkshire",HD5 8GC,53.64913844827497,-1.7870567449265455,17 -11969,Community Battery Recycling Points Huddersfield,Battery Recycling Points,Dedicated collection point for used batteries of all sizes,"35 Flint Common, Huddersfield, West Yorkshire",HD16 5EH,53.64780301939905,-1.7902166655274117,42 -11970,Recycling Bins at Old Ring,Recycling Bins,"Public recycling point for paper, glass, plastic, and metal","179 Old Ring, Huddersfield, West Yorkshire",HD84 4NF,53.64888571349872,-1.7836388177656985,8 -11971,Huddersfield Central Public EV Charging Stations 3,Public EV Charging Stations,EV charging station with renewable energy source,"86 Coal Pike, Huddersfield, West Yorkshire",HD51 8SE,53.64661172371205,-1.7870115992001445,1 -11972,Community Waste Oil Collection Points Huddersfield 2,Waste Oil Collection Points,Waste oil drop-off point for conversion to biodiesel,"38 Old End, Huddersfield, West Yorkshire",HD61 3UK,53.64784992085452,-1.7845308910486097,23 -11973,Huddersfield Public EV Charging Stations,Public EV Charging Stations,Fast-charging station for electric vehicles,"134 Grange Field, Huddersfield, West Yorkshire",HD62 8WE,53.641832238782094,-1.7839789353659605,40 -11974,Community Waste Oil Collection Points Huddersfield 3,Waste Oil Collection Points,Cooking oil collection facility with educational information,"64 South Field, Huddersfield, West Yorkshire",HD59 9ZQ,53.6444080489494,-1.784857294081027,45 -11975,Community Tool Libraries at Hydrogen Center,Community Tool Libraries,Community resource center for borrowing tools and equipment,"150 Hydrogen Center, Huddersfield, West Yorkshire",HD60 1VL,53.64670008947104,-1.7831637312521347,5 -11976,Community Rainwater Harvesting Systems Huddersfield 7,Rainwater Harvesting Systems,Community rainwater collection facility for shared gardens,"Suite 2 Clay Square, Huddersfield, West Yorkshire",HD18 6YY,53.64685292149771,-1.7803741744594932,14 -11977,Huddersfield Manor Coil Battery Recycling Points,Battery Recycling Points,Battery recycling bin with separate compartments for different types,"179 Manor Coil, Huddersfield, West Yorkshire",HD85 2ZZ,53.644680363587455,-1.7873963117083302,35 -11978,Helium Shore Community Compost Bins,Community Compost Bins,Shared compost facility managed by local volunteers,"26 Helium Shore, Huddersfield, West Yorkshire",HD15 5TC,53.64318920149864,-1.7874090785043604,10 -11979,Huddersfield Central Clothing Donation Bins,Clothing Donation Bins,Community clothing recycling bin with regular collection,"63 Mount Side, Huddersfield, West Yorkshire",HD89 6PS,53.64764935372901,-1.78976212367924,17 -11980,Huddersfield Central Recycling Bins 3,Recycling Bins,Multi-material recycling point with clear instructions for proper sorting,"Flat 6 Gold Mart, Huddersfield, West Yorkshire",HD47 8CR,53.646128583226634,-1.7807029419661775,9 -11981,Huddersfield Book Swap Stations 2,Book Swap Stations,Little free library with take-one-leave-one system,"151 Stream Emporium, Huddersfield, West Yorkshire",HD1 5CA,53.64504643472066,-1.7907423246470437,32 -11982,Huddersfield Central Community Compost Bins 2,Community Compost Bins,Shared compost facility managed by local volunteers,"163 Wood Avenue, Huddersfield, West Yorkshire",HD7 6MZ,53.646744398544115,-1.7840690936096042,26 -11983,Huddersfield Community Tool Libraries,Community Tool Libraries,Tool lending library for community use and sharing,"170 House Corner, Huddersfield, West Yorkshire",HD78 8UE,53.64571691431639,-1.786998171250508,22 -11984,E-Waste Collection Bins at Mine Alley,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","92 Mine Alley, Huddersfield, West Yorkshire",HD31 9VS,53.64691483618303,-1.7855747394641261,47 -11985,Community Community Tool Libraries Huddersfield 2,Community Tool Libraries,Tool sharing hub with membership system and workshops,"101 Chromium Bottom, Huddersfield, West Yorkshire",HD10 2PE,53.64898404085585,-1.7805238205196479,53 -11986,Clay Cliff Book Swap Stations,Book Swap Stations,Public book sharing library in repurposed phone box,"14 Clay Cliff, Huddersfield, West Yorkshire",HD92 6HC,53.64366216277206,-1.7833105554420212,33 -11987,Huddersfield Spring Exchange Book Swap Stations,Book Swap Stations,Free book swap station encouraging reading and reuse,"105D Spring Exchange, Huddersfield, West Yorkshire",HD63 8QA,53.64759780725822,-1.7843373714874808,35 -11988,Huddersfield Central E-Waste Collection Bins 3,E-Waste Collection Bins,Electronic waste drop-off point with data security assurance,"124 Quarry Triangle, Huddersfield, West Yorkshire",HD93 9TQ,53.642130179963445,-1.784162617245444,36 -11989,Huddersfield Central Recycling Bins 4,Recycling Bins,Public access recycling bins for common household recyclables,"23G Bronze Side, Huddersfield, West Yorkshire",HD78 3BJ,53.646238901973064,-1.785768974562543,53 -11990,Community Waste Oil Collection Points Huddersfield 4,Waste Oil Collection Points,Used oil collection facility with secure containers,"Suite 8 Xenon Oval, Huddersfield, West Yorkshire",HD51 1VY,53.64518606535369,-1.7792305603360579,31 -11991,Community Urban Farms Huddersfield 3,Urban Farms,Local food growing initiative in repurposed urban space,"126 West Gallery, Huddersfield, West Yorkshire",HD23 8DM,53.64369437604333,-1.7875230591264195,12 -11992,E-Waste Collection Bins at Lake Down,E-Waste Collection Bins,Electronic waste drop-off point with data security assurance,"Suite 2 Lake Down, Huddersfield, West Yorkshire",HD84 3XB,53.6468854295834,-1.7806893471181162,29 -11993,Public EV Charging Stations at London Arcade,Public EV Charging Stations,Public EV charging facility with covered waiting area,"Suite 4 London Arcade, Huddersfield, West Yorkshire",HD59 7VH,53.64798359381369,-1.7834868620181896,15 -11994,Rainwater Harvesting Systems at Green Down,Rainwater Harvesting Systems,Public demonstration of rainwater collection for irrigation,"93 Green Down, Huddersfield, West Yorkshire",HD90 8SB,53.64491414923838,-1.7850407080166548,53 -11995,Huddersfield Public EV Charging Stations 2,Public EV Charging Stations,Multi-vehicle electric charging hub with different power options,"114 Slate Bank, Huddersfield, West Yorkshire",HD59 5KN,53.6476057535895,-1.7856963988413348,5 -11996,Rainwater Harvesting Systems at Forge Junction,Rainwater Harvesting Systems,Community rainwater collection facility for shared gardens,"34 Forge Junction, Huddersfield, West Yorkshire",HD1 1HZ,53.64549197854987,-1.781441164366487,5 -11997,Community e-Scooters Huddersfield 2,e-Scooters,Designated e-scooter pickup and drop-off point,"Suite 10 Mill Close, Huddersfield, West Yorkshire",HD72 3QT,53.64769345930596,-1.779368673650642,8 -11998,Huddersfield Community Tool Libraries 2,Community Tool Libraries,Community resource center for borrowing tools and equipment,"117 Mill Moor, Huddersfield, West Yorkshire",HD61 6ER,53.64896338195823,-1.7897116249433282,7 -11999,Community Community Compost Bins Huddersfield 3,Community Compost Bins,Shared compost facility managed by local volunteers,"60 East Viaduct, Huddersfield, West Yorkshire",HD60 3QP,53.644869839749404,-1.787865807353962,31 -12000,Huddersfield Pit Alley Bike Share Stations,Bike Share Stations,Cycle hire station with self-service rental system,"47 Pit Alley, Huddersfield, West Yorkshire",HD2 9QU,53.64284107893642,-1.7802693684920734,24 -12001,Pewter Causeway Urban Farms,Urban Farms,City farming project with volunteer opportunities,"64 Pewter Causeway, Exeter, Devon",EX4 8DG,50.718136145021205,-3.5290730024120163,13 -12002,Exeter Meadow Square Pollinator Gardens,Pollinator Gardens,Urban wildflower meadow supporting biodiversity,"69 Meadow Square, Exeter, Devon",EX76 3FH,50.71502431179206,-3.5317717295088715,19 -12003,Community Book Swap Stations Exeter 2,Book Swap Stations,Public book sharing library in repurposed phone box,"116 Slate Spiral, Exeter, Devon",EX15 8JM,50.718335923247786,-3.5390622041438506,53 -12004,Exeter Central Public EV Charging Stations 3,Public EV Charging Stations,EV charging station with renewable energy source,"143 Slate Bend, Exeter, Devon",EX57 4MF,50.7216384668024,-3.5310573687965525,53 -12005,Clothing Donation Bins at Pewter Cliff,Clothing Donation Bins,Community clothing recycling bin with regular collection,"31 Pewter Cliff, Exeter, Devon",EX85 9WM,50.7173280568284,-3.5285908089892626,34 -12006,Exeter Well Court Book Swap Stations,Book Swap Stations,Free book swap station encouraging reading and reuse,"160 Well Court, Exeter, Devon",EX47 4QV,50.72198503473734,-3.5315269735443056,41 -12007,Community Urban Farms Exeter 2,Urban Farms,Community garden with vegetable plots and fruit trees,"150 Castle Coil, Exeter, Devon",EX98 9SC,50.71645772647041,-3.536797196072294,21 -12008,Mill Viaduct Battery Recycling Points,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"Flat 10 Mill Viaduct, Exeter, Devon",EX57 3AJ,50.71718083577466,-3.52856607356751,1 -12009,Community Urban Farms Exeter 3,Urban Farms,Community garden with vegetable plots and fruit trees,"183 Market Circus, Exeter, Devon",EX5 9SV,50.719195708428494,-3.5323690573271906,6 -12010,Hydrogen Square Rainwater Harvesting Systems,Rainwater Harvesting Systems,Urban water conservation project with storage tanks,"145 Hydrogen Square, Exeter, Devon",EX72 1PN,50.71923503804795,-3.534307565476917,16 -12011,E-Waste Collection Bins at Cove Side,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","114 Cove Side, Exeter, Devon",EX6 5FX,50.720233943946894,-3.534599544551783,12 -12012,Community Solar-Powered Benches Exeter 2,Solar-Powered Benches,Smart bench powered by solar energy with digital information display,"133 Rock Arcade, Exeter, Devon",EX3 4VT,50.7173778980585,-3.532210666345099,48 -12013,Exeter Steel Causeway Battery Recycling Points,Battery Recycling Points,Dedicated collection point for used batteries of all sizes,"187 Steel Causeway, Exeter, Devon",EX23 2XY,50.71966418518596,-3.528497758033443,46 -12014,Green Roofs at Cathedral Gallery,Green Roofs,Green roof installation with educational tours available,"54 Cathedral Gallery, Hull, East Yorkshire",HU39 1AK,53.76687548689114,-0.32761964008191835,24 -12015,Hull Central Green Roofs 4,Green Roofs,Building with extensive green roof system visible from public areas,"11 Lead Boulevard, Hull, East Yorkshire",HU69 2WG,53.76532342127491,-0.32165643687647044,48 -12016,Hull Central Public EV Charging Stations 4,Public EV Charging Stations,EV charging station with renewable energy source,"22 West Drive, Hull, East Yorkshire",HU6 3KW,53.76998598472258,-0.3314664525878675,30 -12017,Community Clothing Donation Bins Hull 2,Clothing Donation Bins,Textile donation point preventing landfill waste,"154 Victoria Crag, Hull, East Yorkshire",HU80 8WV,53.7637414595471,-0.32960558589205285,27 -12018,Public Water Refill Stations at Stone Green,Public Water Refill Stations,Free water refill station to reduce plastic bottle usage,"15 Stone Green, Hull, East Yorkshire",HU93 2UZ,53.76835813408403,-0.32390647632102026,35 -12019,Hull Central Battery Recycling Points 3,Battery Recycling Points,Battery recycling bin with separate compartments for different types,"23 Park Place, Hull, East Yorkshire",HU35 2YL,53.769416420581464,-0.32464552083443293,10 -12020,Hull Book Swap Stations 2,Book Swap Stations,Free book swap station encouraging reading and reuse,"Flat 36 Well Maze, Hull, East Yorkshire",HU26 2GA,53.764592641425,-0.3251332257917188,50 -12021,Urban Farms at Nitrogen Promenade,Urban Farms,Urban agriculture site with educational programs,"1 Nitrogen Promenade, Hull, East Yorkshire",HU13 8SB,53.770796559454574,-0.32445349446912236,49 -12022,Public Water Refill Stations at Court Shore,Public Water Refill Stations,Water refill point with filtered water options,"108 Court Shore, Hull, East Yorkshire",HU71 6SN,53.7674773832041,-0.3288563271565245,35 -12023,Community Solar-Powered Benches Hull 4,Solar-Powered Benches,Eco-friendly bench with solar panels and LED lighting,"143 Hospital Triangle, Hull, East Yorkshire",HU94 5FR,53.76441072734874,-0.3288526240561277,36 -12024,E-Waste Collection Bins at Neon Causeway,E-Waste Collection Bins,Community e-waste collection facility with regular collection schedule,"53 Neon Causeway, Hull, East Yorkshire",HU18 3TC,53.76706434899879,-0.32736646454721735,35 -12025,Hull Central E-Waste Collection Bins 4,E-Waste Collection Bins,Community e-waste collection facility with regular collection schedule,"113 Railway Ford, Hull, East Yorkshire",HU53 9FD,53.76477778239124,-0.32862719720654215,36 -12026,Hull Barn Circle E-Waste Collection Bins,E-Waste Collection Bins,"E-waste recycling bin for phones, computers, and small electronics","167 Barn Circle, Hull, East Yorkshire",HU45 2AW,53.77056909417579,-0.33134346174976903,36 -12027,Lodge Place Battery Recycling Points,Battery Recycling Points,Safe disposal facility for household and small electronics batteries,"110 Lodge Place, Hull, East Yorkshire",HU68 7TL,53.7637582067313,-0.330461866349336,22 -12028,Hull Main Coil Rainwater Harvesting Systems,Rainwater Harvesting Systems,Rainwater harvesting system with educational displays,"196F Main Coil, Hull, East Yorkshire",HU38 1ZT,53.76806171925884,-0.32916235228530266,3 -12029,Watermill Corner Recycling Bins,Recycling Bins,Community recycling station with separate bins for different materials,"Unit 12 Watermill Corner, Hull, East Yorkshire",HU76 7WF,53.768735677855226,-0.330813442276396,46 -12030,Hull Railway Boulevard Clothing Donation Bins,Clothing Donation Bins,Textile recycling point for clothes and household fabrics,"Flat 37 Railway Boulevard, Hull, East Yorkshire",HU91 5FU,53.76628438824553,-0.3246943653712315,51 diff --git a/Models/AuthService.php b/Models/AuthService.php index 0764e33..fb48b40 100644 --- a/Models/AuthService.php +++ b/Models/AuthService.php @@ -2,7 +2,9 @@ require_once('UserDataSet.php'); /** - * Authentication service for handling JWT-based authentication + * Backend Authentication service for handling JWT authentication + * https://jwt.io/introduction + * This cost me blood, sweat and tears, mostly tears. */ class AuthService { private string $secretKey; @@ -14,7 +16,7 @@ class AuthService { * @throws Exception if OpenSSL extension is not loaded */ public function __construct() { - // Load environment variables from .env file + // Load environment variables from .env file (:D more configuration needs to be added to .env, but scope creep already huge) $envFile = __DIR__ . '/../.env'; if (file_exists($envFile)) { $lines = file($envFile, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); @@ -37,14 +39,14 @@ class AuthService { $this->secretKey = getenv('JWT_SECRET_KEY') ?: 'your-256-bit-secret'; $this->tokenExpiry = (int)(getenv('JWT_TOKEN_EXPIRY') ?: 3600); - // Verify OpenSSL extension is available + // Verify OpenSSL extension is available. This should be on by default regardless, but just in case. if (!extension_loaded('openssl')) { throw new Exception('OpenSSL extension is required for JWT'); } } /** - * Generates a JWT token for a user + * Generates a JWT token * @param array $userData User information to include in token * @return string The generated JWT token */ @@ -52,6 +54,7 @@ class AuthService { $issuedAt = time(); $expire = $issuedAt + $this->tokenExpiry; + // Create payload with user data $payload = [ 'iat' => $issuedAt, 'exp' => $expire, @@ -101,7 +104,7 @@ class AuthService { $signature = hash_hmac('sha256', "$header.$payload", $this->secretKey, true); $signature = $this->base64UrlEncode($signature); - return "$header.$payload.$signature"; + return "$header.$payload.$signature"; //Wooooooo!!! JWT is a thing! } /** diff --git a/Models/FacilityData.php b/Models/FacilityData.php index 0968389..35d1420 100755 --- a/Models/FacilityData.php +++ b/Models/FacilityData.php @@ -1,15 +1,11 @@ _rowLimit = $rowLimit; - $this->_totalPages = $this->calculateTotalPages($dataset['count']); - $this->_rowCount = $dataset['count']; - $this->_pages = $dataset['dataset']; - $this->_pageMatrix = $this->Paginate(); - } - public function getTotalPages() { - return $this->_totalPages; - } - private function calculateTotalPages(int $count): int { - return $count > 0 ? ceil($count / $this->_rowLimit) : 0; - } - - public function Paginate(): array { - $pageMatrix = []; - for ($i = 0; $i < $this->_totalPages; $i++) { - $page = []; - $start = $i * $this->_rowLimit; - $end = min($start + $this->_rowLimit, $this->_rowCount); // Ensure within bounds - - for ($j = $start; $j < $end; $j++) { - $page[] = $this->_pages[$j]; - } - - $pageMatrix[$i] = $page; - } - return $pageMatrix; - } - - public function getPageFromUri(): int { - // Retrieve 'page' parameter and default to 0 if missing or invalid - return filter_input(INPUT_GET, 'page', FILTER_VALIDATE_INT, [ - 'options' => ['default' => 0, 'min_range' => 0] // Default to 1 if invalid or missing - ]); - } - - public function getPage(int $pageNumber): array { - - if ($pageNumber < 0 || $pageNumber >= $this->_totalPages) { - return []; // Return an empty array if the page number is invalid - } - return $this->_pageMatrix[$pageNumber]; - } - - public function countPageResults(int $pageNumber): int { - if ($pageNumber < 0 || $pageNumber >= $this->_totalPages) { - return 0; // Return 0 if the page number is invalid - } - return count($this->_pageMatrix[$pageNumber]); - } -} \ No newline at end of file diff --git a/Models/User.php b/Models/User.php index 1c66ff3..b6b6163 100755 --- a/Models/User.php +++ b/Models/User.php @@ -70,16 +70,6 @@ class User { } } - /** - * Sets the user's access level - * - * @param int $level The access level to set (admin = 1, regular user = 2) - * @return void - */ - private function setAccessLevel($level) { - $this->_accessLevel = $level; - } - /** * Gets the user's access level * @@ -128,33 +118,6 @@ class User { return false; } } - - /** - * Logs the user out - * - * Resets all user properties to their default values. - * Note: This doesn't invalidate the JWT token - handled client-side - * by removing the token from storage. - * - * @return void - */ - public function logout() { - // Reset user properties - $this->_loggedIn = false; - $this->_username = "None"; - $this->_userId = "0"; - $this->_accessLevel = null; - } - - /** - * Checks if the user is currently logged in - * - * @return bool True if the user is logged in, false otherwise - */ - public function isLoggedIn(): bool - { - return $this->_loggedIn; - } /** * Static method to check if a request is authenticated diff --git a/Views/map.phtml b/Views/map.phtml index b1198c7..8f0ff02 100644 --- a/Views/map.phtml +++ b/Views/map.phtml @@ -112,7 +112,7 @@ @@ -151,7 +151,8 @@

Enter a Postcode

-

Please enter a postcode to view facilities on the map

+

Please enter a postcode to view facilities on the map

+

or use the search button to find facilities near you

diff --git a/Views/template/header.phtml b/Views/template/header.phtml index 32dae32..6703db6 100755 --- a/Views/template/header.phtml +++ b/Views/template/header.phtml @@ -159,11 +159,6 @@ Map - diff --git a/add_facilities.py b/add_facilities.py deleted file mode 100644 index 16ab102..0000000 --- a/add_facilities.py +++ /dev/null @@ -1,225 +0,0 @@ -import sqlite3 -import random - -# Connect to the SQLite database -conn = sqlite3.connect('Databases/ecobuddy.sqlite') -cursor = conn.cursor() - -# Check if we need to add any new categories -cursor.execute("SELECT id FROM ecoCategories") -existing_categories = [row[0] for row in cursor.fetchall()] - -# Add two new categories -new_categories = [ - (16, "Urban Farms"), - (17, "Rainwater Harvesting Systems") -] - -for category in new_categories: - if category[0] not in existing_categories: - cursor.execute("INSERT INTO ecoCategories (id, name) VALUES (?, ?)", category) - print(f"Added new category: {category[1]}") - -# Get list of user IDs for contributors -cursor.execute("SELECT id FROM ecoUser") -user_ids = [row[0] for row in cursor.fetchall()] - -# Define 10 new ecological facilities in the UK with accurate location data -new_facilities = [ - { - "title": "Community Garden Hackney", - "category": 12, # Pollinator Gardens - "description": "Urban garden with native plants to support local pollinators", - "houseNumber": "45", - "streetName": "Dalston Lane", - "county": "Greater London", - "town": "London", - "postcode": "E8 3AH", - "lng": -0.0612, - "lat": 51.5476, - "contributor": random.choice(user_ids), - "status_comments": [ - "Recently expanded with new wildflower section", - "Volunteer days every Saturday" - ] - }, - { - "title": "Rooftop Solar Farm", - "category": 8, # Green Roofs - "description": "Combined green roof and solar panel installation on commercial building", - "houseNumber": "120", - "streetName": "Deansgate", - "county": "Greater Manchester", - "town": "Manchester", - "postcode": "M3 2QJ", - "lng": -2.2484, - "lat": 53.4808, - "contributor": random.choice(user_ids), - "status_comments": [ - "Generates power for the entire building" - ] - }, - { - "title": "Edinburgh Tool Library", - "category": 15, # Community Tool Libraries - "description": "Borrow tools instead of buying them - reducing waste and consumption", - "houseNumber": "25", - "streetName": "Leith Walk", - "county": "Edinburgh", - "town": "Edinburgh", - "postcode": "EH6 8LN", - "lng": -3.1752, - "lat": 55.9677, - "contributor": random.choice(user_ids), - "status_comments": [] - }, - { - "title": "Cardiff Bay Water Refill Station", - "category": 9, # Public Water Refill Stations - "description": "Free water refill station to reduce plastic bottle usage", - "houseNumber": "3", - "streetName": "Mermaid Quay", - "county": "Cardiff", - "town": "Cardiff", - "postcode": "CF10 5BZ", - "lng": -3.1644, - "lat": 51.4644, - "contributor": random.choice(user_ids), - "status_comments": [ - "Recently cleaned and maintained", - "High usage during summer months" - ] - }, - { - "title": "Bristol Urban Farm", - "category": 16, # Urban Farms (new category) - "description": "Community-run urban farm providing local produce and education", - "houseNumber": "18", - "streetName": "Stapleton Road", - "county": "Bristol", - "town": "Bristol", - "postcode": "BS5 0RA", - "lng": -2.5677, - "lat": 51.4635, - "contributor": random.choice(user_ids), - "status_comments": [ - "Open for volunteers Tuesday-Sunday" - ] - }, - { - "title": "Newcastle Rainwater Collection System", - "category": 17, # Rainwater Harvesting Systems (new category) - "description": "Public demonstration of rainwater harvesting for garden irrigation", - "houseNumber": "55", - "streetName": "Northumberland Street", - "county": "Tyne and Wear", - "town": "Newcastle upon Tyne", - "postcode": "NE1 7DH", - "lng": -1.6178, - "lat": 54.9783, - "contributor": random.choice(user_ids), - "status_comments": [] - }, - { - "title": "Brighton Beach Solar Bench", - "category": 7, # Solar-Powered Benches - "description": "Solar-powered bench with USB charging ports and WiFi", - "houseNumber": "", - "streetName": "Kings Road", - "county": "East Sussex", - "town": "Brighton", - "postcode": "BN1 2FN", - "lng": -0.1426, - "lat": 50.8214, - "contributor": random.choice(user_ids), - "status_comments": [ - "Popular spot for tourists", - "One USB port currently not working" - ] - }, - { - "title": "Leeds Community Compost Hub", - "category": 6, # Community Compost Bins - "description": "Large-scale community composting facility for local residents", - "houseNumber": "78", - "streetName": "Woodhouse Lane", - "county": "West Yorkshire", - "town": "Leeds", - "postcode": "LS2 9JT", - "lng": -1.5491, - "lat": 53.8067, - "contributor": random.choice(user_ids), - "status_comments": [ - "Recently expanded capacity" - ] - }, - { - "title": "Glasgow EV Charging Hub", - "category": 4, # Public EV Charging Stations - "description": "Multi-vehicle EV charging station with fast chargers", - "houseNumber": "42", - "streetName": "Buchanan Street", - "county": "Glasgow", - "town": "Glasgow", - "postcode": "G1 3JX", - "lng": -4.2526, - "lat": 55.8621, - "contributor": random.choice(user_ids), - "status_comments": [ - "6 charging points available", - "24/7 access" - ] - }, - { - "title": "Oxford E-Waste Collection Center", - "category": 13, # E-Waste Collection Bins - "description": "Dedicated facility for proper disposal and recycling of electronic waste", - "houseNumber": "15", - "streetName": "St Aldate's", - "county": "Oxfordshire", - "town": "Oxford", - "postcode": "OX1 1BX", - "lng": -1.2577, - "lat": 51.7520, - "contributor": random.choice(user_ids), - "status_comments": [] - } -] - -# Insert facilities into the database -for facility in new_facilities: - cursor.execute(""" - INSERT INTO ecoFacilities - (title, category, description, houseNumber, streetName, county, town, postcode, lng, lat, contributor) - VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) - """, ( - facility["title"], - facility["category"], - facility["description"], - facility["houseNumber"], - facility["streetName"], - facility["county"], - facility["town"], - facility["postcode"], - facility["lng"], - facility["lat"], - facility["contributor"] - )) - - # Get the ID of the inserted facility - facility_id = cursor.lastrowid - - # Add status comments if any - for comment in facility["status_comments"]: - cursor.execute(""" - INSERT INTO ecoFacilityStatus (facilityId, statusComment) - VALUES (?, ?) - """, (facility_id, comment)) - - print(f"Added facility: {facility['title']} in {facility['town']}") - -# Commit the changes and close the connection -conn.commit() -conn.close() - -print("\nSuccessfully added 10 new ecological facilities to the database.") \ No newline at end of file diff --git a/debug.log b/debug.log deleted file mode 100644 index 9b8d489..0000000 --- a/debug.log +++ /dev/null @@ -1,16988 +0,0 @@ -Array -( - [0] => Array - ( - [id] => 1 - [title] => E-scooters at Salford Uni - [status] => Always lots available -Great way to get around - [category] => e-Scooters - [description] => Next to Maxwell Hall, a bunch of e-scooters - [houseNumber] => 1 - [streetName] => The Crescent - [county] => Greater Manchester - [town] => Salford - [postcode] => M5 4WT - [lng] => -2.3467836 - [lat] => 54.8764767 - [contributor] => Lee - ) - - [1] => Array - ( - [id] => 2 - [title] => Recycling Bins at University Campus - [status] => - [category] => Recycling Bins - [description] => Located outside the main library - [houseNumber] => 10 - [streetName] => Upper Brook Street - [county] => Greater Manchester - [town] => Manchester - [postcode] => M13 9PL - [lng] => -2.2345 - [lat] => 53.4669 - [contributor] => Admin - ) - - [2] => Array - ( - [id] => 3 - [title] => Bike Share Station at Piccadilly Gardens - [status] => - [category] => Bike Share Stations - [description] => Easily accessible bike rentals - [houseNumber] => 25 - [streetName] => Piccadilly Gardens - [county] => Greater Manchester - [town] => Manchester - [postcode] => M1 1RG - [lng] => -2.2335 - [lat] => 53.4822 - [contributor] => Benny - ) - - [3] => Array - ( - [id] => 4 - [title] => Public EV Charging at Deansgate - [status] => Often busy -One charger not working - [category] => Public EV Charging Stations - [description] => Charging points available at the parking garage - [houseNumber] => 100 - [streetName] => Deansgate - [county] => Greater Manchester - [town] => Manchester - [postcode] => M3 2GP - [lng] => -2.2461 - [lat] => 53.4785 - [contributor] => Lee - ) - - [4] => Array - ( - [id] => 6 - [title] => Community Compost Bins at Whitworth Park - [status] => - [category] => Community Compost Bins - [description] => Bins for composting available in the park - [houseNumber] => 30 - [streetName] => Grafton Street - [county] => Greater Manchester - [town] => Manchester - [postcode] => M14 5SL - [lng] => -2.2293 - [lat] => 53.4651 - [contributor] => Lee - ) - - [5] => Array - ( - [id] => 7 - [title] => Solar-Powered Benches at Sackville Gardens - [status] => Great to charge your phone but bring a cable - [category] => Solar-Powered Benches - [description] => Benches with solar panels for charging devices - [houseNumber] => 5 - [streetName] => Sackville Street - [county] => Greater Manchester - [town] => Manchester - [postcode] => M1 3HG - [lng] => -2.235 - [lat] => 53.4731 - [contributor] => Benny - ) - - [6] => Array - ( - [id] => 8 - [title] => Public Water Refill Station at Northern Quarter - [status] => - [category] => Public Water Refill Stations - [description] => Refill station located at the park - [houseNumber] => 15 - [streetName] => Tib Street - [county] => Greater Manchester - [town] => Manchester - [postcode] => M4 1NB - [lng] => -2.236 - [lat] => 53.485 - [contributor] => Admin - ) - - [7] => Array - ( - [id] => 9 - [title] => Waste Oil Collection at Ancoats - [status] => - [category] => Waste Oil Collection Points - [description] => Dispose of used cooking oil responsibly - [houseNumber] => 20 - [streetName] => Cutting Room Square - [county] => Greater Manchester - [town] => Manchester - [postcode] => M4 6BU - [lng] => -2.2337 - [lat] => 53.4791 - [contributor] => Lee - ) - - [8] => Array - ( - [id] => 10 - [title] => Community Tool Library at Longsight - [status] => - [category] => Community Tool Libraries - [description] => Borrow gardening and DIY tools - [houseNumber] => 12 - [streetName] => Stockport Road - [county] => Greater Manchester - [town] => Manchester - [postcode] => M13 0XR - [lng] => -2.2173 - [lat] => 53.4551 - [contributor] => Admin - ) - - [9] => Array - ( - [id] => 11 - [title] => Community Bike Hub - [status] => - [category] => Bike Share Stations - [description] => Centrally located bike rentals for locals. - [houseNumber] => 25 - [streetName] => Oxford Street - [county] => Greater Manchester - [town] => Manchester - [postcode] => M1 6FQ - [lng] => -2.2409 - [lat] => 53.4795 - [contributor] => Admin - ) - - [10] => Array - ( - [id] => 12 - [title] => Solar-Powered Water Fountain - [status] => Not working - [category] => Public Water Refill Stations - [description] => Eco-friendly water fountain powered by solar energy. - [houseNumber] => 10 - [streetName] => Deansgate - [county] => Greater Manchester - [town] => Manchester - [postcode] => M3 2RP - [lng] => -2.2502 - [lat] => 53.4767 - [contributor] => Lee - ) - - [11] => Array - ( - [id] => 13 - [title] => E-Waste Collection Point - [status] => Bin is full - [category] => E-Waste Collection Bins - [description] => Drop-off point for recycling old electronics. - [houseNumber] => 5 - [streetName] => Portland Street - [county] => Greater Manchester - [town] => Manchester - [postcode] => M1 6DF - [lng] => -2.2382 - [lat] => 53.4784 - [contributor] => Benny - ) - - [12] => Array - ( - [id] => 14 - [title] => Battery Recycling Station - [status] => - [category] => Battery Recycling Points - [description] => Secure drop-off for household batteries. - [houseNumber] => 15 - [streetName] => King Street - [county] => Greater Manchester - [town] => Manchester - [postcode] => M2 6EJ - [lng] => -2.2485 - [lat] => 53.4774 - [contributor] => Admin - ) - - [13] => Array - ( - [id] => 15 - [title] => Urban Green Space - [status] => - [category] => Green Roofs - [description] => A small park area with native plants and seating. - [houseNumber] => 40 - [streetName] => Cross Street - [county] => Greater Manchester - [town] => Manchester - [postcode] => M2 4FW - [lng] => -2.2403 - [lat] => 53.4791 - [contributor] => Lee - ) - - [14] => Array - ( - [id] => 16 - [title] => Community Composting Site - [status] => - [category] => Community Compost Bins - [description] => A local site for composting organic waste. - [houseNumber] => 12 - [streetName] => Albert Square - [county] => Greater Manchester - [town] => Manchester - [postcode] => M2 5DB - [lng] => -2.2427 - [lat] => 53.4811 - [contributor] => Benny - ) - - [15] => Array - ( - [id] => 17 - [title] => Public EV Charging Hub - [status] => - [category] => Public EV Charging Stations - [description] => Charging station for electric vehicles in the city center. - [houseNumber] => 30 - [streetName] => Chepstow Street - [county] => Greater Manchester - [town] => Manchester - [postcode] => M1 5FW - [lng] => -2.2374 - [lat] => 53.4741 - [contributor] => Lee - ) - - [16] => Array - ( - [id] => 18 - [title] => Book Exchange Kiosk - [status] => - [category] => Book Swap Stations - [description] => A small kiosk for exchanging books in the community. - [houseNumber] => 8 - [streetName] => St. Mary’s Gate - [county] => Greater Manchester - [town] => Manchester - [postcode] => M3 2WQ - [lng] => -2.2518 - [lat] => 53.4762 - [contributor] => Admin - ) - - [17] => Array - ( - [id] => 19 - [title] => Clothing Donation Drop Box - [status] => - [category] => Clothing Donation Bins - [description] => Drop-off box for donating clothes to those in need. - [houseNumber] => 100 - [streetName] => Grafton Street - [county] => Greater Manchester - [town] => Manchester - [postcode] => M13 9WT - [lng] => -2.2356 - [lat] => 53.4654 - [contributor] => Benny - ) - - [18] => Array - ( - [id] => 20 - [title] => Pollinator Garden - [status] => - [category] => Pollinator Gardens - [description] => A garden designed to attract and support local pollinators. - [houseNumber] => 50 - [streetName] => Blossom Street - [county] => Greater Manchester - [town] => Manchester - [postcode] => M12 6BG - [lng] => -2.2275 - [lat] => 53.4728 - [contributor] => Lee - ) - - [19] => Array - ( - [id] => 21 - [title] => Facility 1 - [status] => - [category] => Recycling Bins - [description] => Description for facility 1 - [houseNumber] => 8799 - [streetName] => Street 26 - [county] => County 15 - [town] => Town 29 - [postcode] => AB45 4CD - [lng] => -177.798557 - [lat] => -84.694977 - [contributor] => - ) - - [20] => Array - ( - [id] => 22 - [title] => Facility 2 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 2 - [houseNumber] => 6453 - [streetName] => Street 48 - [county] => County 5 - [town] => Town 38 - [postcode] => AB38 2CD - [lng] => -129.034741 - [lat] => 69.20418 - [contributor] => - ) - - [21] => Array - ( - [id] => 23 - [title] => Facility 3 - [status] => - [category] => Green Roofs - [description] => Description for facility 3 - [houseNumber] => 9971 - [streetName] => Street 3 - [county] => County 14 - [town] => Town 6 - [postcode] => AB98 4CD - [lng] => -10.468364 - [lat] => -4.381366 - [contributor] => - ) - - [22] => Array - ( - [id] => 24 - [title] => Facility 4 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 4 - [houseNumber] => 9369 - [streetName] => Street 10 - [county] => County 12 - [town] => Town 4 - [postcode] => AB68 2CD - [lng] => 104.423251 - [lat] => 12.354098 - [contributor] => - ) - - [23] => Array - ( - [id] => 25 - [title] => Facility 5 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 5 - [houseNumber] => 1462 - [streetName] => Street 6 - [county] => County 16 - [town] => Town 38 - [postcode] => AB41 1CD - [lng] => 111.086973 - [lat] => 16.968499 - [contributor] => - ) - - [24] => Array - ( - [id] => 26 - [title] => Facility 6 - [status] => - [category] => Green Roofs - [description] => Description for facility 6 - [houseNumber] => 9328 - [streetName] => Street 6 - [county] => County 20 - [town] => Town 12 - [postcode] => AB37 2CD - [lng] => -70.180274 - [lat] => -83.953428 - [contributor] => - ) - - [25] => Array - ( - [id] => 27 - [title] => Facility 7 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 7 - [houseNumber] => 1757 - [streetName] => Street 17 - [county] => County 11 - [town] => Town 8 - [postcode] => AB12 9CD - [lng] => -54.371941 - [lat] => 66.351242 - [contributor] => - ) - - [26] => Array - ( - [id] => 28 - [title] => Facility 8 - [status] => - [category] => e-Scooters - [description] => Description for facility 8 - [houseNumber] => 1928 - [streetName] => Street 28 - [county] => County 10 - [town] => Town 13 - [postcode] => AB98 8CD - [lng] => -41.892343 - [lat] => 14.535855 - [contributor] => - ) - - [27] => Array - ( - [id] => 29 - [title] => Facility 9 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 9 - [houseNumber] => 2326 - [streetName] => Street 37 - [county] => County 9 - [town] => Town 28 - [postcode] => AB83 8CD - [lng] => 42.804902 - [lat] => -64.090675 - [contributor] => - ) - - [28] => Array - ( - [id] => 30 - [title] => Facility 10 - [status] => - [category] => e-Scooters - [description] => Description for facility 10 - [houseNumber] => 4543 - [streetName] => Street 5 - [county] => County 6 - [town] => Town 21 - [postcode] => AB68 2CD - [lng] => 121.696471 - [lat] => 59.845017 - [contributor] => - ) - - [29] => Array - ( - [id] => 31 - [title] => Facility 11 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 11 - [houseNumber] => 83 - [streetName] => Street 32 - [county] => County 7 - [town] => Town 1 - [postcode] => AB58 9CD - [lng] => -126.552448 - [lat] => -35.854823 - [contributor] => - ) - - [30] => Array - ( - [id] => 32 - [title] => Facility 12 - [status] => - [category] => Recycling Bins - [description] => Description for facility 12 - [houseNumber] => 7035 - [streetName] => Street 35 - [county] => County 10 - [town] => Town 26 - [postcode] => AB39 1CD - [lng] => -160.029476 - [lat] => 48.437997 - [contributor] => - ) - - [31] => Array - ( - [id] => 33 - [title] => Facility 13 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 13 - [houseNumber] => 586 - [streetName] => Street 50 - [county] => County 19 - [town] => Town 6 - [postcode] => AB91 9CD - [lng] => 163.561562 - [lat] => 70.801309 - [contributor] => - ) - - [32] => Array - ( - [id] => 34 - [title] => Facility 14 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 14 - [houseNumber] => 7119 - [streetName] => Street 33 - [county] => County 8 - [town] => Town 25 - [postcode] => AB97 9CD - [lng] => -124.426983 - [lat] => -9.186738 - [contributor] => - ) - - [33] => Array - ( - [id] => 35 - [title] => Facility 15 - [status] => - [category] => e-Scooters - [description] => Description for facility 15 - [houseNumber] => 3437 - [streetName] => Street 4 - [county] => County 19 - [town] => Town 27 - [postcode] => AB16 6CD - [lng] => -142.382794 - [lat] => -23.585567 - [contributor] => - ) - - [34] => Array - ( - [id] => 36 - [title] => Facility 16 - [status] => - [category] => Recycling Bins - [description] => Description for facility 16 - [houseNumber] => 9372 - [streetName] => Street 16 - [county] => County 11 - [town] => Town 20 - [postcode] => AB84 4CD - [lng] => -110.969007 - [lat] => 37.393999 - [contributor] => - ) - - [35] => Array - ( - [id] => 37 - [title] => Facility 17 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 17 - [houseNumber] => 7150 - [streetName] => Street 42 - [county] => County 11 - [town] => Town 23 - [postcode] => AB90 4CD - [lng] => 125.145718 - [lat] => -36.585543 - [contributor] => - ) - - [36] => Array - ( - [id] => 38 - [title] => Facility 18 - [status] => - [category] => Green Roofs - [description] => Description for facility 18 - [houseNumber] => 6072 - [streetName] => Street 17 - [county] => County 20 - [town] => Town 42 - [postcode] => AB35 8CD - [lng] => -7.091079 - [lat] => -45.153889 - [contributor] => - ) - - [37] => Array - ( - [id] => 39 - [title] => Facility 19 - [status] => - [category] => Recycling Bins - [description] => Description for facility 19 - [houseNumber] => 928 - [streetName] => Street 50 - [county] => County 19 - [town] => Town 5 - [postcode] => AB89 8CD - [lng] => -85.562446 - [lat] => 31.56652 - [contributor] => - ) - - [38] => Array - ( - [id] => 40 - [title] => Facility 20 - [status] => - [category] => e-Scooters - [description] => Description for facility 20 - [houseNumber] => 2970 - [streetName] => Street 10 - [county] => County 1 - [town] => Town 50 - [postcode] => AB74 5CD - [lng] => 150.150445 - [lat] => 80.10293 - [contributor] => - ) - - [39] => Array - ( - [id] => 41 - [title] => Facility 21 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 21 - [houseNumber] => 1560 - [streetName] => Street 31 - [county] => County 2 - [town] => Town 17 - [postcode] => AB64 9CD - [lng] => 116.079942 - [lat] => 86.51268 - [contributor] => - ) - - [40] => Array - ( - [id] => 42 - [title] => Facility 22 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 22 - [houseNumber] => 781 - [streetName] => Street 30 - [county] => County 17 - [town] => Town 43 - [postcode] => AB63 9CD - [lng] => -94.016485 - [lat] => -46.579785 - [contributor] => - ) - - [41] => Array - ( - [id] => 43 - [title] => Facility 23 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 23 - [houseNumber] => 3599 - [streetName] => Street 5 - [county] => County 4 - [town] => Town 12 - [postcode] => AB88 4CD - [lng] => 149.521487 - [lat] => -88.386656 - [contributor] => - ) - - [42] => Array - ( - [id] => 44 - [title] => Facility 24 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 24 - [houseNumber] => 5256 - [streetName] => Street 42 - [county] => County 18 - [town] => Town 4 - [postcode] => AB49 6CD - [lng] => 43.703799 - [lat] => 0.590129 - [contributor] => Lee - ) - - [43] => Array - ( - [id] => 45 - [title] => Facility 25 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 25 - [houseNumber] => 7340 - [streetName] => Street 36 - [county] => County 15 - [town] => Town 15 - [postcode] => AB52 8CD - [lng] => 143.939771 - [lat] => -50.161028 - [contributor] => - ) - - [44] => Array - ( - [id] => 46 - [title] => Facility 26 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 26 - [houseNumber] => 806 - [streetName] => Street 1 - [county] => County 11 - [town] => Town 13 - [postcode] => AB32 2CD - [lng] => 178.295939 - [lat] => -51.324777 - [contributor] => - ) - - [45] => Array - ( - [id] => 47 - [title] => Facility 27 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 27 - [houseNumber] => 7249 - [streetName] => Street 23 - [county] => County 5 - [town] => Town 8 - [postcode] => AB61 3CD - [lng] => 143.476388 - [lat] => 87.61426 - [contributor] => - ) - - [46] => Array - ( - [id] => 48 - [title] => Facility 28 - [status] => - [category] => Green Roofs - [description] => Description for facility 28 - [houseNumber] => 6912 - [streetName] => Street 34 - [county] => County 15 - [town] => Town 23 - [postcode] => AB55 3CD - [lng] => 104.194815 - [lat] => -47.432167 - [contributor] => - ) - - [47] => Array - ( - [id] => 49 - [title] => Facility 29 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 29 - [houseNumber] => 5034 - [streetName] => Street 30 - [county] => County 1 - [town] => Town 47 - [postcode] => AB32 4CD - [lng] => -161.935448 - [lat] => 20.207794 - [contributor] => - ) - - [48] => Array - ( - [id] => 50 - [title] => Facility 30 - [status] => - [category] => e-Scooters - [description] => Description for facility 30 - [houseNumber] => 1914 - [streetName] => Street 5 - [county] => County 2 - [town] => Town 21 - [postcode] => AB62 4CD - [lng] => 8.261932 - [lat] => -82.821256 - [contributor] => - ) - - [49] => Array - ( - [id] => 51 - [title] => Facility 31 - [status] => - [category] => Green Roofs - [description] => Description for facility 31 - [houseNumber] => 4305 - [streetName] => Street 32 - [county] => County 8 - [town] => Town 27 - [postcode] => AB89 1CD - [lng] => 122.650219 - [lat] => -66.163063 - [contributor] => - ) - - [50] => Array - ( - [id] => 52 - [title] => Facility 32 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 32 - [houseNumber] => 8437 - [streetName] => Street 18 - [county] => County 5 - [town] => Town 15 - [postcode] => AB97 2CD - [lng] => 18.189842 - [lat] => 69.465558 - [contributor] => - ) - - [51] => Array - ( - [id] => 53 - [title] => Facility 33 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 33 - [houseNumber] => 4880 - [streetName] => Street 19 - [county] => County 6 - [town] => Town 50 - [postcode] => AB76 6CD - [lng] => 73.595242 - [lat] => -61.576968 - [contributor] => - ) - - [52] => Array - ( - [id] => 54 - [title] => Facility 34 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 34 - [houseNumber] => 8397 - [streetName] => Street 45 - [county] => County 8 - [town] => Town 20 - [postcode] => AB64 2CD - [lng] => 73.163254 - [lat] => 85.06283 - [contributor] => - ) - - [53] => Array - ( - [id] => 55 - [title] => Facility 35 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 35 - [houseNumber] => 4077 - [streetName] => Street 27 - [county] => County 13 - [town] => Town 38 - [postcode] => AB30 1CD - [lng] => 78.469992 - [lat] => -58.157829 - [contributor] => - ) - - [54] => Array - ( - [id] => 56 - [title] => Facility 36 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 36 - [houseNumber] => 9733 - [streetName] => Street 11 - [county] => County 7 - [town] => Town 40 - [postcode] => AB38 7CD - [lng] => -148.540002 - [lat] => 89.397155 - [contributor] => - ) - - [55] => Array - ( - [id] => 57 - [title] => Facility 37 - [status] => - [category] => Recycling Bins - [description] => Description for facility 37 - [houseNumber] => 9467 - [streetName] => Street 6 - [county] => County 2 - [town] => Town 49 - [postcode] => AB41 6CD - [lng] => -19.871378 - [lat] => -63.544666 - [contributor] => - ) - - [56] => Array - ( - [id] => 58 - [title] => Facility 38 - [status] => - [category] => e-Scooters - [description] => Description for facility 38 - [houseNumber] => 9879 - [streetName] => Street 13 - [county] => County 20 - [town] => Town 2 - [postcode] => AB77 9CD - [lng] => -66.761646 - [lat] => 8.714219 - [contributor] => - ) - - [57] => Array - ( - [id] => 59 - [title] => Facility 39 - [status] => - [category] => Recycling Bins - [description] => Description for facility 39 - [houseNumber] => 1319 - [streetName] => Street 27 - [county] => County 7 - [town] => Town 45 - [postcode] => AB69 1CD - [lng] => -140.946396 - [lat] => -18.881114 - [contributor] => - ) - - [58] => Array - ( - [id] => 60 - [title] => Facility 40 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 40 - [houseNumber] => 2952 - [streetName] => Street 49 - [county] => County 15 - [town] => Town 3 - [postcode] => AB48 3CD - [lng] => -174.074063 - [lat] => -87.738479 - [contributor] => - ) - - [59] => Array - ( - [id] => 61 - [title] => Facility 41 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 41 - [houseNumber] => 9690 - [streetName] => Street 6 - [county] => County 3 - [town] => Town 22 - [postcode] => AB43 9CD - [lng] => 20.632475 - [lat] => 54.450954 - [contributor] => - ) - - [60] => Array - ( - [id] => 62 - [title] => Facility 42 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 42 - [houseNumber] => 9087 - [streetName] => Street 28 - [county] => County 16 - [town] => Town 46 - [postcode] => AB29 1CD - [lng] => 42.911049 - [lat] => -78.013647 - [contributor] => - ) - - [61] => Array - ( - [id] => 63 - [title] => Facility 43 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 43 - [houseNumber] => 3368 - [streetName] => Street 35 - [county] => County 14 - [town] => Town 21 - [postcode] => AB61 6CD - [lng] => 36.541953 - [lat] => 47.733596 - [contributor] => - ) - - [62] => Array - ( - [id] => 64 - [title] => Facility 44 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 44 - [houseNumber] => 5490 - [streetName] => Street 39 - [county] => County 14 - [town] => Town 1 - [postcode] => AB84 3CD - [lng] => -48.735959 - [lat] => -22.159676 - [contributor] => - ) - - [63] => Array - ( - [id] => 65 - [title] => Facility 45 - [status] => - [category] => Green Roofs - [description] => Description for facility 45 - [houseNumber] => 8301 - [streetName] => Street 19 - [county] => County 16 - [town] => Town 44 - [postcode] => AB69 9CD - [lng] => 59.461991 - [lat] => -18.628283 - [contributor] => - ) - - [64] => Array - ( - [id] => 66 - [title] => Facility 46 - [status] => - [category] => Recycling Bins - [description] => Description for facility 46 - [houseNumber] => 7095 - [streetName] => Street 39 - [county] => County 17 - [town] => Town 46 - [postcode] => AB81 5CD - [lng] => -62.984123 - [lat] => -76.137971 - [contributor] => - ) - - [65] => Array - ( - [id] => 67 - [title] => Facility 47 - [status] => - [category] => e-Scooters - [description] => Description for facility 47 - [houseNumber] => 9000 - [streetName] => Street 16 - [county] => County 7 - [town] => Town 8 - [postcode] => AB98 8CD - [lng] => -8.543175 - [lat] => 1.216387 - [contributor] => - ) - - [66] => Array - ( - [id] => 68 - [title] => Facility 48 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 48 - [houseNumber] => 7645 - [streetName] => Street 28 - [county] => County 19 - [town] => Town 20 - [postcode] => AB89 3CD - [lng] => -23.451115 - [lat] => 63.834228 - [contributor] => - ) - - [67] => Array - ( - [id] => 69 - [title] => Facility 49 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 49 - [houseNumber] => 3263 - [streetName] => Street 28 - [county] => County 20 - [town] => Town 4 - [postcode] => AB53 6CD - [lng] => 57.260288 - [lat] => 49.343557 - [contributor] => - ) - - [68] => Array - ( - [id] => 70 - [title] => Facility 50 - [status] => - [category] => e-Scooters - [description] => Description for facility 50 - [houseNumber] => 3307 - [streetName] => Street 23 - [county] => County 6 - [town] => Town 14 - [postcode] => AB56 4CD - [lng] => -17.376278 - [lat] => -63.875639 - [contributor] => - ) - - [69] => Array - ( - [id] => 71 - [title] => Facility 51 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 51 - [houseNumber] => 6897 - [streetName] => Street 7 - [county] => County 2 - [town] => Town 46 - [postcode] => AB94 4CD - [lng] => 153.753369 - [lat] => -59.713031 - [contributor] => - ) - - [70] => Array - ( - [id] => 72 - [title] => Facility 52 - [status] => - [category] => Recycling Bins - [description] => Description for facility 52 - [houseNumber] => 221 - [streetName] => Street 29 - [county] => County 17 - [town] => Town 17 - [postcode] => AB88 1CD - [lng] => -123.705118 - [lat] => 73.024665 - [contributor] => - ) - - [71] => Array - ( - [id] => 73 - [title] => Facility 53 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 53 - [houseNumber] => 6442 - [streetName] => Street 29 - [county] => County 9 - [town] => Town 17 - [postcode] => AB75 2CD - [lng] => -80.9735 - [lat] => 71.607529 - [contributor] => - ) - - [72] => Array - ( - [id] => 74 - [title] => Facility 54 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 54 - [houseNumber] => 5805 - [streetName] => Street 22 - [county] => County 4 - [town] => Town 10 - [postcode] => AB23 3CD - [lng] => 28.389887 - [lat] => -68.051005 - [contributor] => - ) - - [73] => Array - ( - [id] => 75 - [title] => Facility 55 - [status] => - [category] => Green Roofs - [description] => Description for facility 55 - [houseNumber] => 5346 - [streetName] => Street 21 - [county] => County 5 - [town] => Town 20 - [postcode] => AB73 9CD - [lng] => 91.004803 - [lat] => 69.847182 - [contributor] => - ) - - [74] => Array - ( - [id] => 76 - [title] => Facility 56 - [status] => - [category] => Recycling Bins - [description] => Description for facility 56 - [houseNumber] => 8790 - [streetName] => Street 39 - [county] => County 5 - [town] => Town 18 - [postcode] => AB94 3CD - [lng] => -61.439429 - [lat] => -77.245456 - [contributor] => - ) - - [75] => Array - ( - [id] => 77 - [title] => Facility 57 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 57 - [houseNumber] => 6790 - [streetName] => Street 41 - [county] => County 9 - [town] => Town 37 - [postcode] => AB69 7CD - [lng] => 52.780879 - [lat] => -70.725013 - [contributor] => - ) - - [76] => Array - ( - [id] => 78 - [title] => Facility 58 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 58 - [houseNumber] => 9180 - [streetName] => Street 28 - [county] => County 6 - [town] => Town 25 - [postcode] => AB78 3CD - [lng] => 118.775226 - [lat] => 30.049331 - [contributor] => - ) - - [77] => Array - ( - [id] => 79 - [title] => Facility 59 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 59 - [houseNumber] => 6136 - [streetName] => Street 13 - [county] => County 10 - [town] => Town 22 - [postcode] => AB37 2CD - [lng] => -75.467344 - [lat] => 68.004949 - [contributor] => - ) - - [78] => Array - ( - [id] => 80 - [title] => Facility 60 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 60 - [houseNumber] => 5669 - [streetName] => Street 10 - [county] => County 3 - [town] => Town 9 - [postcode] => AB83 4CD - [lng] => -146.693879 - [lat] => -66.978323 - [contributor] => - ) - - [79] => Array - ( - [id] => 81 - [title] => Facility 61 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 61 - [houseNumber] => 5555 - [streetName] => Street 17 - [county] => County 11 - [town] => Town 15 - [postcode] => AB37 2CD - [lng] => -47.503033 - [lat] => -61.301801 - [contributor] => - ) - - [80] => Array - ( - [id] => 82 - [title] => Facility 62 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 62 - [houseNumber] => 8253 - [streetName] => Street 10 - [county] => County 11 - [town] => Town 33 - [postcode] => AB70 8CD - [lng] => 166.082334 - [lat] => -6.110426 - [contributor] => - ) - - [81] => Array - ( - [id] => 83 - [title] => Facility 63 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 63 - [houseNumber] => 6098 - [streetName] => Street 18 - [county] => County 14 - [town] => Town 11 - [postcode] => AB34 9CD - [lng] => -45.020592 - [lat] => 81.843897 - [contributor] => - ) - - [82] => Array - ( - [id] => 84 - [title] => Facility 64 - [status] => - [category] => Green Roofs - [description] => Description for facility 64 - [houseNumber] => 2083 - [streetName] => Street 49 - [county] => County 18 - [town] => Town 5 - [postcode] => AB88 8CD - [lng] => -170.756564 - [lat] => -60.259372 - [contributor] => - ) - - [83] => Array - ( - [id] => 85 - [title] => Facility 65 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 65 - [houseNumber] => 3775 - [streetName] => Street 46 - [county] => County 9 - [town] => Town 10 - [postcode] => AB48 7CD - [lng] => 162.384876 - [lat] => 80.376949 - [contributor] => - ) - - [84] => Array - ( - [id] => 86 - [title] => Facility 66 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 66 - [houseNumber] => 5799 - [streetName] => Street 33 - [county] => County 19 - [town] => Town 31 - [postcode] => AB28 9CD - [lng] => -166.323697 - [lat] => 19.720758 - [contributor] => - ) - - [85] => Array - ( - [id] => 87 - [title] => Facility 67 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 67 - [houseNumber] => 5653 - [streetName] => Street 15 - [county] => County 10 - [town] => Town 32 - [postcode] => AB72 1CD - [lng] => -130.148309 - [lat] => -15.141532 - [contributor] => Admin - ) - - [86] => Array - ( - [id] => 88 - [title] => Facility 68 - [status] => - [category] => Green Roofs - [description] => Description for facility 68 - [houseNumber] => 3345 - [streetName] => Street 50 - [county] => County 15 - [town] => Town 27 - [postcode] => AB80 5CD - [lng] => -12.282266 - [lat] => 78.222604 - [contributor] => - ) - - [87] => Array - ( - [id] => 89 - [title] => Facility 69 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 69 - [houseNumber] => 926 - [streetName] => Street 6 - [county] => County 6 - [town] => Town 27 - [postcode] => AB28 2CD - [lng] => 113.717939 - [lat] => -54.538469 - [contributor] => - ) - - [88] => Array - ( - [id] => 90 - [title] => Facility 70 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 70 - [houseNumber] => 3433 - [streetName] => Street 11 - [county] => County 4 - [town] => Town 7 - [postcode] => AB77 8CD - [lng] => 136.47293 - [lat] => 30.308754 - [contributor] => - ) - - [89] => Array - ( - [id] => 91 - [title] => Facility 71 - [status] => - [category] => e-Scooters - [description] => Description for facility 71 - [houseNumber] => 2198 - [streetName] => Street 6 - [county] => County 9 - [town] => Town 21 - [postcode] => AB88 4CD - [lng] => -148.227831 - [lat] => 19.137433 - [contributor] => - ) - - [90] => Array - ( - [id] => 92 - [title] => Facility 72 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 72 - [houseNumber] => 5597 - [streetName] => Street 8 - [county] => County 20 - [town] => Town 4 - [postcode] => AB66 4CD - [lng] => 138.991476 - [lat] => 57.911128 - [contributor] => - ) - - [91] => Array - ( - [id] => 93 - [title] => Facility 73 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 73 - [houseNumber] => 5636 - [streetName] => Street 16 - [county] => County 16 - [town] => Town 20 - [postcode] => AB27 2CD - [lng] => 150.941245 - [lat] => 40.102312 - [contributor] => - ) - - [92] => Array - ( - [id] => 94 - [title] => Facility 74 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 74 - [houseNumber] => 7981 - [streetName] => Street 13 - [county] => County 12 - [town] => Town 2 - [postcode] => AB96 1CD - [lng] => 31.951802 - [lat] => 83.100856 - [contributor] => - ) - - [93] => Array - ( - [id] => 95 - [title] => Facility 75 - [status] => - [category] => Green Roofs - [description] => Description for facility 75 - [houseNumber] => 5919 - [streetName] => Street 46 - [county] => County 7 - [town] => Town 15 - [postcode] => AB19 2CD - [lng] => -73.274641 - [lat] => -76.24976 - [contributor] => - ) - - [94] => Array - ( - [id] => 96 - [title] => Facility 76 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 76 - [houseNumber] => 5275 - [streetName] => Street 43 - [county] => County 13 - [town] => Town 26 - [postcode] => AB88 2CD - [lng] => 28.805081 - [lat] => -73.480791 - [contributor] => - ) - - [95] => Array - ( - [id] => 97 - [title] => Facility 77 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 77 - [houseNumber] => 7135 - [streetName] => Street 20 - [county] => County 20 - [town] => Town 35 - [postcode] => AB16 2CD - [lng] => 142.144705 - [lat] => 51.653481 - [contributor] => - ) - - [96] => Array - ( - [id] => 98 - [title] => Facility 78 - [status] => - [category] => Green Roofs - [description] => Description for facility 78 - [houseNumber] => 621 - [streetName] => Street 21 - [county] => County 1 - [town] => Town 35 - [postcode] => AB33 4CD - [lng] => -164.529882 - [lat] => -24.961512 - [contributor] => - ) - - [97] => Array - ( - [id] => 99 - [title] => Facility 79 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 79 - [houseNumber] => 8528 - [streetName] => Street 1 - [county] => County 18 - [town] => Town 3 - [postcode] => AB21 7CD - [lng] => 113.64172 - [lat] => 59.830653 - [contributor] => - ) - - [98] => Array - ( - [id] => 100 - [title] => Facility 80 - [status] => - [category] => e-Scooters - [description] => Description for facility 80 - [houseNumber] => 7975 - [streetName] => Street 23 - [county] => County 13 - [town] => Town 19 - [postcode] => AB26 8CD - [lng] => -53.326588 - [lat] => 85.878575 - [contributor] => Admin - ) - - [99] => Array - ( - [id] => 101 - [title] => Facility 81 - [status] => - [category] => Recycling Bins - [description] => Description for facility 81 - [houseNumber] => 3836 - [streetName] => Street 24 - [county] => County 6 - [town] => Town 29 - [postcode] => AB92 5CD - [lng] => 93.741093 - [lat] => 71.537015 - [contributor] => - ) - - [100] => Array - ( - [id] => 102 - [title] => Facility 82 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 82 - [houseNumber] => 5296 - [streetName] => Street 3 - [county] => County 14 - [town] => Town 10 - [postcode] => AB40 5CD - [lng] => 76.205034 - [lat] => 84.150232 - [contributor] => - ) - - [101] => Array - ( - [id] => 103 - [title] => Facility 83 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 83 - [houseNumber] => 6338 - [streetName] => Street 1 - [county] => County 12 - [town] => Town 45 - [postcode] => AB75 7CD - [lng] => 1.953024 - [lat] => -2.524957 - [contributor] => - ) - - [102] => Array - ( - [id] => 104 - [title] => Facility 84 - [status] => - [category] => Green Roofs - [description] => Description for facility 84 - [houseNumber] => 6819 - [streetName] => Street 27 - [county] => County 6 - [town] => Town 46 - [postcode] => AB15 3CD - [lng] => 20.458033 - [lat] => -21.039494 - [contributor] => - ) - - [103] => Array - ( - [id] => 105 - [title] => Facility 85 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 85 - [houseNumber] => 2345 - [streetName] => Street 25 - [county] => County 18 - [town] => Town 49 - [postcode] => AB11 1CD - [lng] => 24.356335 - [lat] => -9.764401 - [contributor] => - ) - - [104] => Array - ( - [id] => 106 - [title] => Facility 86 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 86 - [houseNumber] => 1452 - [streetName] => Street 20 - [county] => County 13 - [town] => Town 8 - [postcode] => AB51 8CD - [lng] => -52.518029 - [lat] => 0.025557 - [contributor] => Benny - ) - - [105] => Array - ( - [id] => 107 - [title] => Facility 87 - [status] => - [category] => e-Scooters - [description] => Description for facility 87 - [houseNumber] => 6275 - [streetName] => Street 10 - [county] => County 19 - [town] => Town 45 - [postcode] => AB35 3CD - [lng] => -69.92477 - [lat] => 77.173853 - [contributor] => - ) - - [106] => Array - ( - [id] => 108 - [title] => Facility 88 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 88 - [houseNumber] => 4670 - [streetName] => Street 47 - [county] => County 13 - [town] => Town 24 - [postcode] => AB58 2CD - [lng] => 117.906028 - [lat] => -45.242218 - [contributor] => - ) - - [107] => Array - ( - [id] => 109 - [title] => Facility 89 - [status] => - [category] => Recycling Bins - [description] => Description for facility 89 - [houseNumber] => 6096 - [streetName] => Street 32 - [county] => County 12 - [town] => Town 8 - [postcode] => AB75 5CD - [lng] => 155.173499 - [lat] => 15.432654 - [contributor] => - ) - - [108] => Array - ( - [id] => 110 - [title] => Facility 90 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 90 - [houseNumber] => 7584 - [streetName] => Street 28 - [county] => County 1 - [town] => Town 31 - [postcode] => AB90 3CD - [lng] => -111.054884 - [lat] => 87.459577 - [contributor] => - ) - - [109] => Array - ( - [id] => 111 - [title] => Facility 91 - [status] => - [category] => e-Scooters - [description] => Description for facility 91 - [houseNumber] => 809 - [streetName] => Street 40 - [county] => County 2 - [town] => Town 39 - [postcode] => AB57 4CD - [lng] => 83.062068 - [lat] => -52.746807 - [contributor] => - ) - - [110] => Array - ( - [id] => 112 - [title] => Facility 92 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 92 - [houseNumber] => 7623 - [streetName] => Street 28 - [county] => County 1 - [town] => Town 42 - [postcode] => AB87 3CD - [lng] => 77.078748 - [lat] => -0.667849 - [contributor] => - ) - - [111] => Array - ( - [id] => 113 - [title] => Facility 93 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 93 - [houseNumber] => 8282 - [streetName] => Street 42 - [county] => County 15 - [town] => Town 31 - [postcode] => AB50 6CD - [lng] => -121.929136 - [lat] => 31.045284 - [contributor] => - ) - - [112] => Array - ( - [id] => 114 - [title] => Facility 94 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 94 - [houseNumber] => 9609 - [streetName] => Street 15 - [county] => County 2 - [town] => Town 14 - [postcode] => AB70 2CD - [lng] => 39.474594 - [lat] => 82.832634 - [contributor] => - ) - - [113] => Array - ( - [id] => 115 - [title] => Facility 95 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 95 - [houseNumber] => 1466 - [streetName] => Street 42 - [county] => County 9 - [town] => Town 41 - [postcode] => AB29 7CD - [lng] => 20.926052 - [lat] => -86.293358 - [contributor] => - ) - - [114] => Array - ( - [id] => 116 - [title] => Facility 96 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 96 - [houseNumber] => 7608 - [streetName] => Street 12 - [county] => County 9 - [town] => Town 42 - [postcode] => AB33 4CD - [lng] => 83.328374 - [lat] => 80.542833 - [contributor] => - ) - - [115] => Array - ( - [id] => 117 - [title] => Facility 97 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 97 - [houseNumber] => 8770 - [streetName] => Street 43 - [county] => County 15 - [town] => Town 33 - [postcode] => AB74 8CD - [lng] => 64.121702 - [lat] => 62.927343 - [contributor] => - ) - - [116] => Array - ( - [id] => 118 - [title] => Facility 98 - [status] => - [category] => Recycling Bins - [description] => Description for facility 98 - [houseNumber] => 5160 - [streetName] => Street 44 - [county] => County 18 - [town] => Town 38 - [postcode] => AB61 8CD - [lng] => -48.6556 - [lat] => -38.700276 - [contributor] => - ) - - [117] => Array - ( - [id] => 119 - [title] => Facility 99 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 99 - [houseNumber] => 8519 - [streetName] => Street 49 - [county] => County 19 - [town] => Town 47 - [postcode] => AB56 9CD - [lng] => 153.481898 - [lat] => 46.259757 - [contributor] => - ) - - [118] => Array - ( - [id] => 120 - [title] => Facility 100 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 100 - [houseNumber] => 6196 - [streetName] => Street 33 - [county] => County 19 - [town] => Town 27 - [postcode] => AB64 5CD - [lng] => -58.780436 - [lat] => -31.145604 - [contributor] => - ) - - [119] => Array - ( - [id] => 121 - [title] => Facility 101 - [status] => - [category] => Recycling Bins - [description] => Description for facility 101 - [houseNumber] => 7788 - [streetName] => Street 42 - [county] => County 17 - [town] => Town 32 - [postcode] => AB86 6CD - [lng] => -16.642616 - [lat] => -69.460196 - [contributor] => - ) - - [120] => Array - ( - [id] => 122 - [title] => Facility 102 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 102 - [houseNumber] => 8116 - [streetName] => Street 45 - [county] => County 5 - [town] => Town 33 - [postcode] => AB32 8CD - [lng] => 148.145663 - [lat] => -40.103138 - [contributor] => - ) - - [121] => Array - ( - [id] => 123 - [title] => Facility 103 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 103 - [houseNumber] => 3185 - [streetName] => Street 4 - [county] => County 1 - [town] => Town 12 - [postcode] => AB35 9CD - [lng] => -137.102896 - [lat] => 70.654511 - [contributor] => - ) - - [122] => Array - ( - [id] => 124 - [title] => Facility 104 - [status] => - [category] => e-Scooters - [description] => Description for facility 104 - [houseNumber] => 8454 - [streetName] => Street 28 - [county] => County 10 - [town] => Town 34 - [postcode] => AB92 1CD - [lng] => -92.838666 - [lat] => -39.245459 - [contributor] => - ) - - [123] => Array - ( - [id] => 125 - [title] => Facility 105 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 105 - [houseNumber] => 6815 - [streetName] => Street 33 - [county] => County 13 - [town] => Town 19 - [postcode] => AB51 2CD - [lng] => -125.216727 - [lat] => -77.924873 - [contributor] => - ) - - [124] => Array - ( - [id] => 126 - [title] => Facility 106 - [status] => - [category] => Green Roofs - [description] => Description for facility 106 - [houseNumber] => 1653 - [streetName] => Street 25 - [county] => County 17 - [town] => Town 33 - [postcode] => AB69 4CD - [lng] => -134.772291 - [lat] => -66.435521 - [contributor] => - ) - - [125] => Array - ( - [id] => 127 - [title] => Facility 107 - [status] => - [category] => e-Scooters - [description] => Description for facility 107 - [houseNumber] => 1299 - [streetName] => Street 29 - [county] => County 12 - [town] => Town 3 - [postcode] => AB43 8CD - [lng] => 122.002207 - [lat] => 29.983083 - [contributor] => - ) - - [126] => Array - ( - [id] => 128 - [title] => Facility 108 - [status] => - [category] => Green Roofs - [description] => Description for facility 108 - [houseNumber] => 1284 - [streetName] => Street 7 - [county] => County 19 - [town] => Town 1 - [postcode] => AB64 3CD - [lng] => -14.895677 - [lat] => -38.053634 - [contributor] => - ) - - [127] => Array - ( - [id] => 129 - [title] => Facility 109 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 109 - [houseNumber] => 4228 - [streetName] => Street 2 - [county] => County 11 - [town] => Town 3 - [postcode] => AB13 4CD - [lng] => 6.170103 - [lat] => 87.182165 - [contributor] => - ) - - [128] => Array - ( - [id] => 130 - [title] => Facility 110 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 110 - [houseNumber] => 2544 - [streetName] => Street 44 - [county] => County 11 - [town] => Town 24 - [postcode] => AB31 3CD - [lng] => -76.031891 - [lat] => 11.304498 - [contributor] => - ) - - [129] => Array - ( - [id] => 131 - [title] => Facility 111 - [status] => - [category] => Recycling Bins - [description] => Description for facility 111 - [houseNumber] => 4318 - [streetName] => Street 23 - [county] => County 6 - [town] => Town 17 - [postcode] => AB82 8CD - [lng] => -60.232897 - [lat] => 40.582294 - [contributor] => - ) - - [130] => Array - ( - [id] => 132 - [title] => Facility 112 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 112 - [houseNumber] => 4701 - [streetName] => Street 5 - [county] => County 12 - [town] => Town 17 - [postcode] => AB54 4CD - [lng] => -87.079342 - [lat] => 21.05753 - [contributor] => - ) - - [131] => Array - ( - [id] => 133 - [title] => Facility 113 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 113 - [houseNumber] => 4923 - [streetName] => Street 19 - [county] => County 8 - [town] => Town 8 - [postcode] => AB45 6CD - [lng] => -112.671602 - [lat] => 49.022836 - [contributor] => - ) - - [132] => Array - ( - [id] => 134 - [title] => Facility 114 - [status] => - [category] => Green Roofs - [description] => Description for facility 114 - [houseNumber] => 2940 - [streetName] => Street 10 - [county] => County 17 - [town] => Town 27 - [postcode] => AB68 1CD - [lng] => 167.418227 - [lat] => 20.765568 - [contributor] => - ) - - [133] => Array - ( - [id] => 135 - [title] => Facility 115 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 115 - [houseNumber] => 9376 - [streetName] => Street 39 - [county] => County 14 - [town] => Town 5 - [postcode] => AB61 6CD - [lng] => -36.079294 - [lat] => 31.269874 - [contributor] => - ) - - [134] => Array - ( - [id] => 136 - [title] => Facility 116 - [status] => - [category] => Green Roofs - [description] => Description for facility 116 - [houseNumber] => 2916 - [streetName] => Street 42 - [county] => County 15 - [town] => Town 24 - [postcode] => AB58 4CD - [lng] => -110.790898 - [lat] => -87.196472 - [contributor] => - ) - - [135] => Array - ( - [id] => 137 - [title] => Facility 117 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 117 - [houseNumber] => 2872 - [streetName] => Street 3 - [county] => County 18 - [town] => Town 13 - [postcode] => AB78 9CD - [lng] => 3.651259 - [lat] => -47.884199 - [contributor] => - ) - - [136] => Array - ( - [id] => 138 - [title] => Facility 118 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 118 - [houseNumber] => 8041 - [streetName] => Street 42 - [county] => County 20 - [town] => Town 21 - [postcode] => AB52 6CD - [lng] => -169.32813 - [lat] => -64.927343 - [contributor] => - ) - - [137] => Array - ( - [id] => 139 - [title] => Facility 119 - [status] => - [category] => Recycling Bins - [description] => Description for facility 119 - [houseNumber] => 5989 - [streetName] => Street 44 - [county] => County 2 - [town] => Town 48 - [postcode] => AB15 9CD - [lng] => -110.5955 - [lat] => 78.776865 - [contributor] => - ) - - [138] => Array - ( - [id] => 140 - [title] => Facility 120 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 120 - [houseNumber] => 9819 - [streetName] => Street 17 - [county] => County 11 - [town] => Town 29 - [postcode] => AB99 6CD - [lng] => 110.723926 - [lat] => -79.111032 - [contributor] => - ) - - [139] => Array - ( - [id] => 141 - [title] => Facility 121 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 121 - [houseNumber] => 7449 - [streetName] => Street 28 - [county] => County 6 - [town] => Town 8 - [postcode] => AB93 6CD - [lng] => 152.289751 - [lat] => -87.419816 - [contributor] => - ) - - [140] => Array - ( - [id] => 142 - [title] => Facility 122 - [status] => - [category] => Green Roofs - [description] => Description for facility 122 - [houseNumber] => 2853 - [streetName] => Street 32 - [county] => County 11 - [town] => Town 26 - [postcode] => AB14 6CD - [lng] => 2.274942 - [lat] => 47.437076 - [contributor] => - ) - - [141] => Array - ( - [id] => 143 - [title] => Facility 123 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 123 - [houseNumber] => 4362 - [streetName] => Street 14 - [county] => County 18 - [town] => Town 23 - [postcode] => AB61 8CD - [lng] => -130.462112 - [lat] => 46.488721 - [contributor] => - ) - - [142] => Array - ( - [id] => 144 - [title] => Facility 124 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 124 - [houseNumber] => 6191 - [streetName] => Street 33 - [county] => County 18 - [town] => Town 49 - [postcode] => AB26 3CD - [lng] => 68.738762 - [lat] => -72.065663 - [contributor] => - ) - - [143] => Array - ( - [id] => 145 - [title] => Facility 125 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 125 - [houseNumber] => 4781 - [streetName] => Street 47 - [county] => County 17 - [town] => Town 30 - [postcode] => AB33 9CD - [lng] => -150.555792 - [lat] => 14.997112 - [contributor] => - ) - - [144] => Array - ( - [id] => 146 - [title] => Facility 126 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 126 - [houseNumber] => 354 - [streetName] => Street 21 - [county] => County 14 - [town] => Town 35 - [postcode] => AB81 7CD - [lng] => -147.945254 - [lat] => 4.527408 - [contributor] => - ) - - [145] => Array - ( - [id] => 147 - [title] => Facility 127 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 127 - [houseNumber] => 2710 - [streetName] => Street 18 - [county] => County 13 - [town] => Town 11 - [postcode] => AB28 3CD - [lng] => 81.848617 - [lat] => 66.559733 - [contributor] => Admin - ) - - [146] => Array - ( - [id] => 148 - [title] => Facility 128 - [status] => - [category] => Recycling Bins - [description] => Description for facility 128 - [houseNumber] => 4650 - [streetName] => Street 45 - [county] => County 16 - [town] => Town 48 - [postcode] => AB44 9CD - [lng] => 165.249192 - [lat] => 23.702925 - [contributor] => - ) - - [147] => Array - ( - [id] => 149 - [title] => Facility 129 - [status] => - [category] => Green Roofs - [description] => Description for facility 129 - [houseNumber] => 1041 - [streetName] => Street 49 - [county] => County 7 - [town] => Town 7 - [postcode] => AB53 4CD - [lng] => 29.61955 - [lat] => 75.186409 - [contributor] => - ) - - [148] => Array - ( - [id] => 150 - [title] => Facility 130 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 130 - [houseNumber] => 615 - [streetName] => Street 29 - [county] => County 13 - [town] => Town 29 - [postcode] => AB82 8CD - [lng] => 33.847459 - [lat] => -59.29166 - [contributor] => - ) - - [149] => Array - ( - [id] => 151 - [title] => Facility 131 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 131 - [houseNumber] => 765 - [streetName] => Street 44 - [county] => County 13 - [town] => Town 49 - [postcode] => AB86 1CD - [lng] => 136.248685 - [lat] => 53.632989 - [contributor] => - ) - - [150] => Array - ( - [id] => 152 - [title] => Facility 132 - [status] => - [category] => e-Scooters - [description] => Description for facility 132 - [houseNumber] => 6559 - [streetName] => Street 49 - [county] => County 1 - [town] => Town 23 - [postcode] => AB52 7CD - [lng] => -62.585617 - [lat] => 62.808303 - [contributor] => - ) - - [151] => Array - ( - [id] => 153 - [title] => Facility 133 - [status] => - [category] => e-Scooters - [description] => Description for facility 133 - [houseNumber] => 1337 - [streetName] => Street 47 - [county] => County 5 - [town] => Town 2 - [postcode] => AB41 2CD - [lng] => -130.553776 - [lat] => -50.774468 - [contributor] => - ) - - [152] => Array - ( - [id] => 154 - [title] => Facility 134 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 134 - [houseNumber] => 9962 - [streetName] => Street 24 - [county] => County 13 - [town] => Town 19 - [postcode] => AB68 6CD - [lng] => -35.262686 - [lat] => -27.721148 - [contributor] => - ) - - [153] => Array - ( - [id] => 155 - [title] => Facility 135 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 135 - [houseNumber] => 381 - [streetName] => Street 14 - [county] => County 13 - [town] => Town 26 - [postcode] => AB31 7CD - [lng] => 71.034572 - [lat] => 32.245357 - [contributor] => - ) - - [154] => Array - ( - [id] => 156 - [title] => Facility 136 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 136 - [houseNumber] => 1964 - [streetName] => Street 26 - [county] => County 1 - [town] => Town 36 - [postcode] => AB83 8CD - [lng] => -37.457922 - [lat] => -39.728071 - [contributor] => - ) - - [155] => Array - ( - [id] => 157 - [title] => Facility 137 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 137 - [houseNumber] => 9869 - [streetName] => Street 15 - [county] => County 4 - [town] => Town 13 - [postcode] => AB77 1CD - [lng] => 150.080988 - [lat] => 27.756899 - [contributor] => - ) - - [156] => Array - ( - [id] => 158 - [title] => Facility 138 - [status] => - [category] => Green Roofs - [description] => Description for facility 138 - [houseNumber] => 4254 - [streetName] => Street 33 - [county] => County 14 - [town] => Town 25 - [postcode] => AB56 3CD - [lng] => -151.081882 - [lat] => -11.99784 - [contributor] => - ) - - [157] => Array - ( - [id] => 159 - [title] => Facility 139 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 139 - [houseNumber] => 6860 - [streetName] => Street 5 - [county] => County 17 - [town] => Town 8 - [postcode] => AB83 7CD - [lng] => 173.059375 - [lat] => -57.44473 - [contributor] => - ) - - [158] => Array - ( - [id] => 160 - [title] => Facility 140 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 140 - [houseNumber] => 570 - [streetName] => Street 30 - [county] => County 4 - [town] => Town 16 - [postcode] => AB11 8CD - [lng] => -107.637473 - [lat] => -38.748625 - [contributor] => - ) - - [159] => Array - ( - [id] => 161 - [title] => Facility 141 - [status] => - [category] => e-Scooters - [description] => Description for facility 141 - [houseNumber] => 570 - [streetName] => Street 38 - [county] => County 14 - [town] => Town 43 - [postcode] => AB19 2CD - [lng] => 9.219965 - [lat] => -59.923625 - [contributor] => - ) - - [160] => Array - ( - [id] => 162 - [title] => Facility 142 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 142 - [houseNumber] => 3763 - [streetName] => Street 39 - [county] => County 1 - [town] => Town 35 - [postcode] => AB28 2CD - [lng] => -112.09733 - [lat] => -41.121467 - [contributor] => - ) - - [161] => Array - ( - [id] => 163 - [title] => Facility 143 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 143 - [houseNumber] => 4813 - [streetName] => Street 45 - [county] => County 10 - [town] => Town 29 - [postcode] => AB24 1CD - [lng] => -22.481792 - [lat] => 0.84279 - [contributor] => Admin - ) - - [162] => Array - ( - [id] => 164 - [title] => Facility 144 - [status] => - [category] => Recycling Bins - [description] => Description for facility 144 - [houseNumber] => 7480 - [streetName] => Street 33 - [county] => County 18 - [town] => Town 15 - [postcode] => AB55 1CD - [lng] => 45.919196 - [lat] => -87.954702 - [contributor] => - ) - - [163] => Array - ( - [id] => 165 - [title] => Facility 145 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 145 - [houseNumber] => 6553 - [streetName] => Street 35 - [county] => County 5 - [town] => Town 43 - [postcode] => AB70 2CD - [lng] => 7.448914 - [lat] => 71.523281 - [contributor] => - ) - - [164] => Array - ( - [id] => 166 - [title] => Facility 146 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 146 - [houseNumber] => 1983 - [streetName] => Street 3 - [county] => County 9 - [town] => Town 43 - [postcode] => AB15 4CD - [lng] => -159.299949 - [lat] => 56.920747 - [contributor] => Admin - ) - - [165] => Array - ( - [id] => 167 - [title] => Facility 147 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 147 - [houseNumber] => 1895 - [streetName] => Street 28 - [county] => County 19 - [town] => Town 12 - [postcode] => AB29 8CD - [lng] => 68.164579 - [lat] => 58.754897 - [contributor] => - ) - - [166] => Array - ( - [id] => 168 - [title] => Facility 148 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 148 - [houseNumber] => 2601 - [streetName] => Street 16 - [county] => County 19 - [town] => Town 18 - [postcode] => AB31 2CD - [lng] => -72.100262 - [lat] => -38.079127 - [contributor] => - ) - - [167] => Array - ( - [id] => 169 - [title] => Facility 149 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 149 - [houseNumber] => 986 - [streetName] => Street 44 - [county] => County 10 - [town] => Town 14 - [postcode] => AB84 6CD - [lng] => -129.685266 - [lat] => -62.346513 - [contributor] => - ) - - [168] => Array - ( - [id] => 170 - [title] => Facility 150 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 150 - [houseNumber] => 6409 - [streetName] => Street 27 - [county] => County 18 - [town] => Town 26 - [postcode] => AB64 1CD - [lng] => 71.703209 - [lat] => 26.994841 - [contributor] => - ) - - [169] => Array - ( - [id] => 171 - [title] => Facility 151 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 151 - [houseNumber] => 6026 - [streetName] => Street 24 - [county] => County 8 - [town] => Town 8 - [postcode] => AB20 3CD - [lng] => -144.598003 - [lat] => -34.419985 - [contributor] => - ) - - [170] => Array - ( - [id] => 172 - [title] => Facility 152 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 152 - [houseNumber] => 4972 - [streetName] => Street 24 - [county] => County 3 - [town] => Town 11 - [postcode] => AB27 5CD - [lng] => -151.368808 - [lat] => -1.453115 - [contributor] => - ) - - [171] => Array - ( - [id] => 173 - [title] => Facility 153 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 153 - [houseNumber] => 8417 - [streetName] => Street 48 - [county] => County 6 - [town] => Town 20 - [postcode] => AB74 8CD - [lng] => -74.498275 - [lat] => -62.228289 - [contributor] => - ) - - [172] => Array - ( - [id] => 174 - [title] => Facility 154 - [status] => - [category] => e-Scooters - [description] => Description for facility 154 - [houseNumber] => 1926 - [streetName] => Street 40 - [county] => County 14 - [town] => Town 24 - [postcode] => AB37 2CD - [lng] => 88.411886 - [lat] => -15.145687 - [contributor] => - ) - - [173] => Array - ( - [id] => 175 - [title] => Facility 155 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 155 - [houseNumber] => 1133 - [streetName] => Street 38 - [county] => County 1 - [town] => Town 32 - [postcode] => AB26 1CD - [lng] => 17.36393 - [lat] => -13.12717 - [contributor] => - ) - - [174] => Array - ( - [id] => 176 - [title] => Facility 156 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 156 - [houseNumber] => 1494 - [streetName] => Street 7 - [county] => County 2 - [town] => Town 32 - [postcode] => AB95 6CD - [lng] => 133.701344 - [lat] => 5.992734 - [contributor] => - ) - - [175] => Array - ( - [id] => 177 - [title] => Facility 157 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 157 - [houseNumber] => 3090 - [streetName] => Street 36 - [county] => County 8 - [town] => Town 4 - [postcode] => AB41 2CD - [lng] => -164.449926 - [lat] => 34.22445 - [contributor] => - ) - - [176] => Array - ( - [id] => 178 - [title] => Facility 158 - [status] => - [category] => Green Roofs - [description] => Description for facility 158 - [houseNumber] => 8996 - [streetName] => Street 11 - [county] => County 2 - [town] => Town 47 - [postcode] => AB91 1CD - [lng] => -66.991449 - [lat] => 60.491544 - [contributor] => - ) - - [177] => Array - ( - [id] => 179 - [title] => Facility 159 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 159 - [houseNumber] => 7069 - [streetName] => Street 50 - [county] => County 18 - [town] => Town 48 - [postcode] => AB17 8CD - [lng] => 129.443638 - [lat] => 59.485099 - [contributor] => - ) - - [178] => Array - ( - [id] => 180 - [title] => Facility 160 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 160 - [houseNumber] => 9472 - [streetName] => Street 11 - [county] => County 9 - [town] => Town 50 - [postcode] => AB76 5CD - [lng] => -119.068059 - [lat] => 65.481296 - [contributor] => - ) - - [179] => Array - ( - [id] => 181 - [title] => Facility 161 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 161 - [houseNumber] => 4545 - [streetName] => Street 12 - [county] => County 8 - [town] => Town 1 - [postcode] => AB75 2CD - [lng] => 96.24578 - [lat] => 70.472217 - [contributor] => - ) - - [180] => Array - ( - [id] => 182 - [title] => Facility 162 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 162 - [houseNumber] => 4695 - [streetName] => Street 7 - [county] => County 4 - [town] => Town 44 - [postcode] => AB72 2CD - [lng] => -61.646286 - [lat] => -54.170101 - [contributor] => - ) - - [181] => Array - ( - [id] => 183 - [title] => Facility 163 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 163 - [houseNumber] => 3788 - [streetName] => Street 16 - [county] => County 5 - [town] => Town 1 - [postcode] => AB82 4CD - [lng] => 97.876685 - [lat] => 51.017573 - [contributor] => - ) - - [182] => Array - ( - [id] => 184 - [title] => Facility 164 - [status] => - [category] => Green Roofs - [description] => Description for facility 164 - [houseNumber] => 8524 - [streetName] => Street 4 - [county] => County 20 - [town] => Town 24 - [postcode] => AB64 2CD - [lng] => -144.69353 - [lat] => 4.242506 - [contributor] => - ) - - [183] => Array - ( - [id] => 185 - [title] => Facility 165 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 165 - [houseNumber] => 4326 - [streetName] => Street 22 - [county] => County 7 - [town] => Town 16 - [postcode] => AB61 6CD - [lng] => 36.327727 - [lat] => -42.332282 - [contributor] => Admin - ) - - [184] => Array - ( - [id] => 186 - [title] => Facility 166 - [status] => - [category] => e-Scooters - [description] => Description for facility 166 - [houseNumber] => 6569 - [streetName] => Street 19 - [county] => County 8 - [town] => Town 37 - [postcode] => AB66 2CD - [lng] => -30.01052 - [lat] => 18.975264 - [contributor] => - ) - - [185] => Array - ( - [id] => 187 - [title] => Facility 167 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 167 - [houseNumber] => 1902 - [streetName] => Street 6 - [county] => County 8 - [town] => Town 17 - [postcode] => AB56 6CD - [lng] => -89.861882 - [lat] => 64.711089 - [contributor] => - ) - - [186] => Array - ( - [id] => 188 - [title] => Facility 168 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 168 - [houseNumber] => 9365 - [streetName] => Street 33 - [county] => County 19 - [town] => Town 32 - [postcode] => AB17 8CD - [lng] => -58.273626 - [lat] => 29.725363 - [contributor] => - ) - - [187] => Array - ( - [id] => 189 - [title] => Facility 169 - [status] => - [category] => Recycling Bins - [description] => Description for facility 169 - [houseNumber] => 1472 - [streetName] => Street 9 - [county] => County 14 - [town] => Town 47 - [postcode] => AB93 5CD - [lng] => 68.465566 - [lat] => 28.959261 - [contributor] => - ) - - [188] => Array - ( - [id] => 190 - [title] => Facility 170 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 170 - [houseNumber] => 8706 - [streetName] => Street 4 - [county] => County 11 - [town] => Town 35 - [postcode] => AB98 8CD - [lng] => -116.259748 - [lat] => 33.003033 - [contributor] => - ) - - [189] => Array - ( - [id] => 191 - [title] => Facility 171 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 171 - [houseNumber] => 4559 - [streetName] => Street 29 - [county] => County 11 - [town] => Town 37 - [postcode] => AB64 7CD - [lng] => 127.325422 - [lat] => -46.896052 - [contributor] => - ) - - [190] => Array - ( - [id] => 192 - [title] => Facility 172 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 172 - [houseNumber] => 9329 - [streetName] => Street 26 - [county] => County 20 - [town] => Town 8 - [postcode] => AB61 3CD - [lng] => -132.112584 - [lat] => -40.418878 - [contributor] => - ) - - [191] => Array - ( - [id] => 193 - [title] => Facility 173 - [status] => - [category] => Recycling Bins - [description] => Description for facility 173 - [houseNumber] => 5159 - [streetName] => Street 12 - [county] => County 9 - [town] => Town 7 - [postcode] => AB14 6CD - [lng] => 125.124248 - [lat] => 19.638217 - [contributor] => - ) - - [192] => Array - ( - [id] => 194 - [title] => Facility 174 - [status] => - [category] => Recycling Bins - [description] => Description for facility 174 - [houseNumber] => 2504 - [streetName] => Street 7 - [county] => County 2 - [town] => Town 37 - [postcode] => AB75 2CD - [lng] => 62.931364 - [lat] => -48.052138 - [contributor] => - ) - - [193] => Array - ( - [id] => 195 - [title] => Facility 175 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 175 - [houseNumber] => 9733 - [streetName] => Street 32 - [county] => County 10 - [town] => Town 42 - [postcode] => AB24 2CD - [lng] => -117.623153 - [lat] => -31.898407 - [contributor] => - ) - - [194] => Array - ( - [id] => 196 - [title] => Facility 176 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 176 - [houseNumber] => 4194 - [streetName] => Street 8 - [county] => County 17 - [town] => Town 19 - [postcode] => AB48 1CD - [lng] => -145.558617 - [lat] => 8.699404 - [contributor] => - ) - - [195] => Array - ( - [id] => 197 - [title] => Facility 177 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 177 - [houseNumber] => 7276 - [streetName] => Street 3 - [county] => County 3 - [town] => Town 13 - [postcode] => AB80 7CD - [lng] => 163.22194 - [lat] => 44.859295 - [contributor] => - ) - - [196] => Array - ( - [id] => 198 - [title] => Facility 178 - [status] => - [category] => Recycling Bins - [description] => Description for facility 178 - [houseNumber] => 6989 - [streetName] => Street 48 - [county] => County 6 - [town] => Town 13 - [postcode] => AB51 4CD - [lng] => -129.167857 - [lat] => 76.836629 - [contributor] => - ) - - [197] => Array - ( - [id] => 199 - [title] => Facility 179 - [status] => - [category] => Green Roofs - [description] => Description for facility 179 - [houseNumber] => 1601 - [streetName] => Street 5 - [county] => County 9 - [town] => Town 44 - [postcode] => AB85 1CD - [lng] => 144.01954 - [lat] => 85.838589 - [contributor] => - ) - - [198] => Array - ( - [id] => 200 - [title] => Facility 180 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 180 - [houseNumber] => 6648 - [streetName] => Street 38 - [county] => County 7 - [town] => Town 35 - [postcode] => AB29 5CD - [lng] => 140.590868 - [lat] => 77.308371 - [contributor] => - ) - - [199] => Array - ( - [id] => 201 - [title] => Facility 181 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 181 - [houseNumber] => 6198 - [streetName] => Street 27 - [county] => County 9 - [town] => Town 41 - [postcode] => AB62 1CD - [lng] => 91.53563 - [lat] => 15.127712 - [contributor] => - ) - - [200] => Array - ( - [id] => 202 - [title] => Facility 182 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 182 - [houseNumber] => 9368 - [streetName] => Street 6 - [county] => County 16 - [town] => Town 44 - [postcode] => AB35 6CD - [lng] => -148.979765 - [lat] => -28.113476 - [contributor] => - ) - - [201] => Array - ( - [id] => 203 - [title] => Facility 183 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 183 - [houseNumber] => 5313 - [streetName] => Street 43 - [county] => County 9 - [town] => Town 7 - [postcode] => AB14 7CD - [lng] => 107.378835 - [lat] => -44.299438 - [contributor] => - ) - - [202] => Array - ( - [id] => 204 - [title] => Facility 184 - [status] => - [category] => Green Roofs - [description] => Description for facility 184 - [houseNumber] => 8488 - [streetName] => Street 46 - [county] => County 12 - [town] => Town 47 - [postcode] => AB15 4CD - [lng] => -121.85075 - [lat] => 67.012898 - [contributor] => - ) - - [203] => Array - ( - [id] => 205 - [title] => Facility 185 - [status] => - [category] => Green Roofs - [description] => Description for facility 185 - [houseNumber] => 7936 - [streetName] => Street 38 - [county] => County 7 - [town] => Town 30 - [postcode] => AB29 8CD - [lng] => 145.650088 - [lat] => 24.934183 - [contributor] => - ) - - [204] => Array - ( - [id] => 206 - [title] => Facility 186 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 186 - [houseNumber] => 3923 - [streetName] => Street 33 - [county] => County 6 - [town] => Town 11 - [postcode] => AB35 1CD - [lng] => 48.225778 - [lat] => -35.567662 - [contributor] => - ) - - [205] => Array - ( - [id] => 207 - [title] => Facility 187 - [status] => - [category] => e-Scooters - [description] => Description for facility 187 - [houseNumber] => 1034 - [streetName] => Street 21 - [county] => County 1 - [town] => Town 2 - [postcode] => AB65 9CD - [lng] => -39.601021 - [lat] => -64.759896 - [contributor] => - ) - - [206] => Array - ( - [id] => 208 - [title] => Facility 188 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 188 - [houseNumber] => 3298 - [streetName] => Street 37 - [county] => County 19 - [town] => Town 10 - [postcode] => AB42 6CD - [lng] => 126.014281 - [lat] => -35.772678 - [contributor] => - ) - - [207] => Array - ( - [id] => 209 - [title] => Facility 189 - [status] => - [category] => Green Roofs - [description] => Description for facility 189 - [houseNumber] => 219 - [streetName] => Street 3 - [county] => County 8 - [town] => Town 17 - [postcode] => AB36 4CD - [lng] => 29.065881 - [lat] => 66.398162 - [contributor] => - ) - - [208] => Array - ( - [id] => 210 - [title] => Facility 190 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 190 - [houseNumber] => 2589 - [streetName] => Street 47 - [county] => County 11 - [town] => Town 1 - [postcode] => AB39 4CD - [lng] => 115.169282 - [lat] => -15.597859 - [contributor] => - ) - - [209] => Array - ( - [id] => 211 - [title] => Facility 191 - [status] => - [category] => Recycling Bins - [description] => Description for facility 191 - [houseNumber] => 4637 - [streetName] => Street 49 - [county] => County 7 - [town] => Town 44 - [postcode] => AB42 2CD - [lng] => -100.838906 - [lat] => -38.599595 - [contributor] => - ) - - [210] => Array - ( - [id] => 212 - [title] => Facility 192 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 192 - [houseNumber] => 6835 - [streetName] => Street 41 - [county] => County 5 - [town] => Town 36 - [postcode] => AB71 4CD - [lng] => -95.351952 - [lat] => 56.892174 - [contributor] => - ) - - [211] => Array - ( - [id] => 213 - [title] => Facility 193 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 193 - [houseNumber] => 3018 - [streetName] => Street 43 - [county] => County 16 - [town] => Town 29 - [postcode] => AB59 3CD - [lng] => 41.471959 - [lat] => 76.041745 - [contributor] => - ) - - [212] => Array - ( - [id] => 214 - [title] => Facility 194 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 194 - [houseNumber] => 6044 - [streetName] => Street 43 - [county] => County 14 - [town] => Town 11 - [postcode] => AB74 3CD - [lng] => -145.507412 - [lat] => 73.71117 - [contributor] => - ) - - [213] => Array - ( - [id] => 215 - [title] => Facility 195 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 195 - [houseNumber] => 4044 - [streetName] => Street 12 - [county] => County 8 - [town] => Town 3 - [postcode] => AB90 8CD - [lng] => -46.486113 - [lat] => -13.201336 - [contributor] => - ) - - [214] => Array - ( - [id] => 216 - [title] => Facility 196 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 196 - [houseNumber] => 1508 - [streetName] => Street 50 - [county] => County 5 - [town] => Town 8 - [postcode] => AB52 9CD - [lng] => -71.323128 - [lat] => 21.94111 - [contributor] => - ) - - [215] => Array - ( - [id] => 217 - [title] => Facility 197 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 197 - [houseNumber] => 7183 - [streetName] => Street 5 - [county] => County 10 - [town] => Town 10 - [postcode] => AB25 6CD - [lng] => -68.231635 - [lat] => 39.185906 - [contributor] => - ) - - [216] => Array - ( - [id] => 218 - [title] => Facility 198 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 198 - [houseNumber] => 1529 - [streetName] => Street 43 - [county] => County 19 - [town] => Town 45 - [postcode] => AB81 8CD - [lng] => 174.423161 - [lat] => 3.721386 - [contributor] => - ) - - [217] => Array - ( - [id] => 219 - [title] => Facility 199 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 199 - [houseNumber] => 7971 - [streetName] => Street 27 - [county] => County 8 - [town] => Town 21 - [postcode] => AB65 3CD - [lng] => 31.344695 - [lat] => -46.272816 - [contributor] => - ) - - [218] => Array - ( - [id] => 220 - [title] => Facility 200 - [status] => - [category] => Recycling Bins - [description] => Description for facility 200 - [houseNumber] => 618 - [streetName] => Street 11 - [county] => County 17 - [town] => Town 36 - [postcode] => AB49 9CD - [lng] => 16.274684 - [lat] => -7.096984 - [contributor] => - ) - - [219] => Array - ( - [id] => 221 - [title] => Facility 201 - [status] => - [category] => Green Roofs - [description] => Description for facility 201 - [houseNumber] => 1157 - [streetName] => Street 49 - [county] => County 5 - [town] => Town 30 - [postcode] => AB35 1CD - [lng] => 129.005068 - [lat] => -77.072148 - [contributor] => - ) - - [220] => Array - ( - [id] => 222 - [title] => Facility 202 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 202 - [houseNumber] => 1158 - [streetName] => Street 46 - [county] => County 2 - [town] => Town 33 - [postcode] => AB87 6CD - [lng] => 117.490936 - [lat] => 66.314074 - [contributor] => - ) - - [221] => Array - ( - [id] => 223 - [title] => Facility 203 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 203 - [houseNumber] => 4600 - [streetName] => Street 34 - [county] => County 16 - [town] => Town 5 - [postcode] => AB80 1CD - [lng] => 109.214081 - [lat] => 27.48578 - [contributor] => - ) - - [222] => Array - ( - [id] => 224 - [title] => Facility 204 - [status] => - [category] => e-Scooters - [description] => Description for facility 204 - [houseNumber] => 3654 - [streetName] => Street 43 - [county] => County 19 - [town] => Town 31 - [postcode] => AB59 3CD - [lng] => 10.422984 - [lat] => -79.392382 - [contributor] => - ) - - [223] => Array - ( - [id] => 225 - [title] => Facility 205 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 205 - [houseNumber] => 9078 - [streetName] => Street 4 - [county] => County 20 - [town] => Town 3 - [postcode] => AB67 1CD - [lng] => 27.291704 - [lat] => -65.530426 - [contributor] => - ) - - [224] => Array - ( - [id] => 226 - [title] => Facility 206 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 206 - [houseNumber] => 9052 - [streetName] => Street 45 - [county] => County 20 - [town] => Town 8 - [postcode] => AB81 7CD - [lng] => -71.815794 - [lat] => 46.316097 - [contributor] => - ) - - [225] => Array - ( - [id] => 227 - [title] => Facility 207 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 207 - [houseNumber] => 6555 - [streetName] => Street 50 - [county] => County 18 - [town] => Town 33 - [postcode] => AB64 8CD - [lng] => -31.099314 - [lat] => 69.23449 - [contributor] => - ) - - [226] => Array - ( - [id] => 228 - [title] => Facility 208 - [status] => - [category] => e-Scooters - [description] => Description for facility 208 - [houseNumber] => 8045 - [streetName] => Street 2 - [county] => County 2 - [town] => Town 30 - [postcode] => AB34 7CD - [lng] => -1.668362 - [lat] => -42.053087 - [contributor] => - ) - - [227] => Array - ( - [id] => 229 - [title] => Facility 209 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 209 - [houseNumber] => 5015 - [streetName] => Street 8 - [county] => County 16 - [town] => Town 48 - [postcode] => AB68 7CD - [lng] => 115.529386 - [lat] => -7.154565 - [contributor] => - ) - - [228] => Array - ( - [id] => 230 - [title] => Facility 210 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 210 - [houseNumber] => 4462 - [streetName] => Street 27 - [county] => County 17 - [town] => Town 30 - [postcode] => AB38 9CD - [lng] => -45.460729 - [lat] => -68.499096 - [contributor] => - ) - - [229] => Array - ( - [id] => 231 - [title] => Facility 211 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 211 - [houseNumber] => 2232 - [streetName] => Street 45 - [county] => County 15 - [town] => Town 14 - [postcode] => AB38 7CD - [lng] => 30.245561 - [lat] => -37.653976 - [contributor] => - ) - - [230] => Array - ( - [id] => 232 - [title] => Facility 212 - [status] => - [category] => Recycling Bins - [description] => Description for facility 212 - [houseNumber] => 5404 - [streetName] => Street 3 - [county] => County 10 - [town] => Town 6 - [postcode] => AB24 1CD - [lng] => -2.737891 - [lat] => -35.209564 - [contributor] => - ) - - [231] => Array - ( - [id] => 233 - [title] => Facility 213 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 213 - [houseNumber] => 7425 - [streetName] => Street 16 - [county] => County 7 - [town] => Town 38 - [postcode] => AB69 3CD - [lng] => -63.809058 - [lat] => -65.609724 - [contributor] => - ) - - [232] => Array - ( - [id] => 234 - [title] => Facility 214 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 214 - [houseNumber] => 5024 - [streetName] => Street 42 - [county] => County 18 - [town] => Town 40 - [postcode] => AB14 9CD - [lng] => 136.618978 - [lat] => 18.856737 - [contributor] => - ) - - [233] => Array - ( - [id] => 235 - [title] => Facility 215 - [status] => - [category] => Recycling Bins - [description] => Description for facility 215 - [houseNumber] => 4611 - [streetName] => Street 8 - [county] => County 13 - [town] => Town 15 - [postcode] => AB49 8CD - [lng] => 166.208727 - [lat] => -33.087007 - [contributor] => - ) - - [234] => Array - ( - [id] => 236 - [title] => Facility 216 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 216 - [houseNumber] => 97 - [streetName] => Street 38 - [county] => County 7 - [town] => Town 33 - [postcode] => AB26 1CD - [lng] => 11.083 - [lat] => -8.209435 - [contributor] => - ) - - [235] => Array - ( - [id] => 237 - [title] => Facility 217 - [status] => - [category] => e-Scooters - [description] => Description for facility 217 - [houseNumber] => 1595 - [streetName] => Street 14 - [county] => County 6 - [town] => Town 15 - [postcode] => AB46 6CD - [lng] => -127.211011 - [lat] => 47.9877 - [contributor] => - ) - - [236] => Array - ( - [id] => 238 - [title] => Facility 218 - [status] => - [category] => e-Scooters - [description] => Description for facility 218 - [houseNumber] => 5354 - [streetName] => Street 31 - [county] => County 1 - [town] => Town 20 - [postcode] => AB91 4CD - [lng] => 138.928193 - [lat] => -55.64856 - [contributor] => - ) - - [237] => Array - ( - [id] => 239 - [title] => Facility 219 - [status] => - [category] => Recycling Bins - [description] => Description for facility 219 - [houseNumber] => 3706 - [streetName] => Street 36 - [county] => County 12 - [town] => Town 17 - [postcode] => AB87 2CD - [lng] => 38.85527 - [lat] => -11.253363 - [contributor] => - ) - - [238] => Array - ( - [id] => 240 - [title] => Facility 220 - [status] => - [category] => Recycling Bins - [description] => Description for facility 220 - [houseNumber] => 5870 - [streetName] => Street 24 - [county] => County 19 - [town] => Town 12 - [postcode] => AB41 7CD - [lng] => 165.421585 - [lat] => -15.245193 - [contributor] => - ) - - [239] => Array - ( - [id] => 241 - [title] => Facility 221 - [status] => - [category] => e-Scooters - [description] => Description for facility 221 - [houseNumber] => 5653 - [streetName] => Street 3 - [county] => County 17 - [town] => Town 31 - [postcode] => AB68 1CD - [lng] => -148.750974 - [lat] => 34.979038 - [contributor] => - ) - - [240] => Array - ( - [id] => 242 - [title] => Facility 222 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 222 - [houseNumber] => 7377 - [streetName] => Street 23 - [county] => County 3 - [town] => Town 29 - [postcode] => AB41 8CD - [lng] => -114.246516 - [lat] => 6.730045 - [contributor] => - ) - - [241] => Array - ( - [id] => 243 - [title] => Facility 223 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 223 - [houseNumber] => 1631 - [streetName] => Street 42 - [county] => County 15 - [town] => Town 9 - [postcode] => AB95 1CD - [lng] => 144.579446 - [lat] => -5.536363 - [contributor] => - ) - - [242] => Array - ( - [id] => 244 - [title] => Facility 224 - [status] => - [category] => Green Roofs - [description] => Description for facility 224 - [houseNumber] => 2806 - [streetName] => Street 42 - [county] => County 8 - [town] => Town 1 - [postcode] => AB78 7CD - [lng] => -93.900833 - [lat] => -85.332857 - [contributor] => - ) - - [243] => Array - ( - [id] => 245 - [title] => Facility 225 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 225 - [houseNumber] => 9246 - [streetName] => Street 42 - [county] => County 17 - [town] => Town 25 - [postcode] => AB43 4CD - [lng] => 87.295544 - [lat] => 11.433988 - [contributor] => - ) - - [244] => Array - ( - [id] => 246 - [title] => Facility 226 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 226 - [houseNumber] => 941 - [streetName] => Street 2 - [county] => County 19 - [town] => Town 49 - [postcode] => AB69 9CD - [lng] => 174.72513 - [lat] => -0.766491 - [contributor] => - ) - - [245] => Array - ( - [id] => 247 - [title] => Facility 227 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 227 - [houseNumber] => 8469 - [streetName] => Street 2 - [county] => County 14 - [town] => Town 1 - [postcode] => AB89 8CD - [lng] => -64.468276 - [lat] => 23.126937 - [contributor] => - ) - - [246] => Array - ( - [id] => 248 - [title] => Facility 228 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 228 - [houseNumber] => 3471 - [streetName] => Street 11 - [county] => County 4 - [town] => Town 35 - [postcode] => AB64 1CD - [lng] => -176.102243 - [lat] => -12.681649 - [contributor] => - ) - - [247] => Array - ( - [id] => 249 - [title] => Facility 229 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 229 - [houseNumber] => 5417 - [streetName] => Street 29 - [county] => County 6 - [town] => Town 33 - [postcode] => AB84 7CD - [lng] => -179.368356 - [lat] => -21.699748 - [contributor] => - ) - - [248] => Array - ( - [id] => 250 - [title] => Facility 230 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 230 - [houseNumber] => 5912 - [streetName] => Street 27 - [county] => County 19 - [town] => Town 17 - [postcode] => AB59 5CD - [lng] => 129.286056 - [lat] => -35.883892 - [contributor] => - ) - - [249] => Array - ( - [id] => 251 - [title] => Facility 231 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 231 - [houseNumber] => 8368 - [streetName] => Street 45 - [county] => County 14 - [town] => Town 20 - [postcode] => AB34 9CD - [lng] => -155.283573 - [lat] => -39.542779 - [contributor] => - ) - - [250] => Array - ( - [id] => 252 - [title] => Facility 232 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 232 - [houseNumber] => 3223 - [streetName] => Street 46 - [county] => County 9 - [town] => Town 16 - [postcode] => AB28 3CD - [lng] => 13.309749 - [lat] => 28.188093 - [contributor] => - ) - - [251] => Array - ( - [id] => 253 - [title] => Facility 233 - [status] => - [category] => Green Roofs - [description] => Description for facility 233 - [houseNumber] => 4242 - [streetName] => Street 49 - [county] => County 10 - [town] => Town 15 - [postcode] => AB20 5CD - [lng] => -119.108572 - [lat] => 43.417427 - [contributor] => - ) - - [252] => Array - ( - [id] => 254 - [title] => Facility 234 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 234 - [houseNumber] => 7062 - [streetName] => Street 50 - [county] => County 15 - [town] => Town 12 - [postcode] => AB52 5CD - [lng] => -128.167293 - [lat] => 46.100084 - [contributor] => - ) - - [253] => Array - ( - [id] => 255 - [title] => Facility 235 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 235 - [houseNumber] => 9958 - [streetName] => Street 20 - [county] => County 6 - [town] => Town 16 - [postcode] => AB37 5CD - [lng] => 125.326339 - [lat] => 89.376462 - [contributor] => - ) - - [254] => Array - ( - [id] => 256 - [title] => Facility 236 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 236 - [houseNumber] => 8490 - [streetName] => Street 1 - [county] => County 16 - [town] => Town 45 - [postcode] => AB54 6CD - [lng] => -174.925143 - [lat] => -62.332325 - [contributor] => - ) - - [255] => Array - ( - [id] => 257 - [title] => Facility 237 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 237 - [houseNumber] => 600 - [streetName] => Street 27 - [county] => County 4 - [town] => Town 43 - [postcode] => AB68 9CD - [lng] => 179.38491 - [lat] => 89.348252 - [contributor] => - ) - - [256] => Array - ( - [id] => 258 - [title] => Facility 238 - [status] => - [category] => Green Roofs - [description] => Description for facility 238 - [houseNumber] => 7818 - [streetName] => Street 27 - [county] => County 2 - [town] => Town 20 - [postcode] => AB32 8CD - [lng] => -128.775577 - [lat] => 60.615698 - [contributor] => - ) - - [257] => Array - ( - [id] => 259 - [title] => Facility 239 - [status] => - [category] => e-Scooters - [description] => Description for facility 239 - [houseNumber] => 1227 - [streetName] => Street 19 - [county] => County 19 - [town] => Town 18 - [postcode] => AB41 7CD - [lng] => 33.572421 - [lat] => 2.332432 - [contributor] => - ) - - [258] => Array - ( - [id] => 260 - [title] => Facility 240 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 240 - [houseNumber] => 4529 - [streetName] => Street 16 - [county] => County 9 - [town] => Town 32 - [postcode] => AB21 1CD - [lng] => -133.709651 - [lat] => 3.578967 - [contributor] => - ) - - [259] => Array - ( - [id] => 261 - [title] => Facility 241 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 241 - [houseNumber] => 7739 - [streetName] => Street 15 - [county] => County 20 - [town] => Town 25 - [postcode] => AB78 8CD - [lng] => -13.289472 - [lat] => -10.167611 - [contributor] => - ) - - [260] => Array - ( - [id] => 262 - [title] => Facility 242 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 242 - [houseNumber] => 5486 - [streetName] => Street 45 - [county] => County 17 - [town] => Town 46 - [postcode] => AB61 3CD - [lng] => -136.788024 - [lat] => -17.3802 - [contributor] => - ) - - [261] => Array - ( - [id] => 263 - [title] => Facility 243 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 243 - [houseNumber] => 2051 - [streetName] => Street 24 - [county] => County 10 - [town] => Town 34 - [postcode] => AB24 2CD - [lng] => 53.055369 - [lat] => -48.611277 - [contributor] => - ) - - [262] => Array - ( - [id] => 264 - [title] => Facility 244 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 244 - [houseNumber] => 4454 - [streetName] => Street 15 - [county] => County 20 - [town] => Town 9 - [postcode] => AB50 6CD - [lng] => 42.79422 - [lat] => 87.542363 - [contributor] => - ) - - [263] => Array - ( - [id] => 265 - [title] => Facility 245 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 245 - [houseNumber] => 9580 - [streetName] => Street 20 - [county] => County 1 - [town] => Town 32 - [postcode] => AB33 7CD - [lng] => 159.087939 - [lat] => 74.752339 - [contributor] => - ) - - [264] => Array - ( - [id] => 266 - [title] => Facility 246 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 246 - [houseNumber] => 7054 - [streetName] => Street 43 - [county] => County 8 - [town] => Town 7 - [postcode] => AB77 8CD - [lng] => -107.65859 - [lat] => 87.180259 - [contributor] => - ) - - [265] => Array - ( - [id] => 267 - [title] => Facility 247 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 247 - [houseNumber] => 7721 - [streetName] => Street 34 - [county] => County 7 - [town] => Town 19 - [postcode] => AB51 9CD - [lng] => -23.569643 - [lat] => 28.738043 - [contributor] => - ) - - [266] => Array - ( - [id] => 268 - [title] => Facility 248 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 248 - [houseNumber] => 1814 - [streetName] => Street 39 - [county] => County 10 - [town] => Town 11 - [postcode] => AB54 9CD - [lng] => 177.214407 - [lat] => -68.897784 - [contributor] => - ) - - [267] => Array - ( - [id] => 269 - [title] => Facility 249 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 249 - [houseNumber] => 3102 - [streetName] => Street 44 - [county] => County 20 - [town] => Town 10 - [postcode] => AB94 7CD - [lng] => 69.874587 - [lat] => -56.571742 - [contributor] => - ) - - [268] => Array - ( - [id] => 270 - [title] => Facility 250 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 250 - [houseNumber] => 875 - [streetName] => Street 24 - [county] => County 10 - [town] => Town 43 - [postcode] => AB35 3CD - [lng] => -155.54111 - [lat] => -79.126133 - [contributor] => - ) - - [269] => Array - ( - [id] => 271 - [title] => Facility 251 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 251 - [houseNumber] => 101 - [streetName] => Street 42 - [county] => County 3 - [town] => Town 23 - [postcode] => AB91 1CD - [lng] => 55.109996 - [lat] => 57.419219 - [contributor] => Admin - ) - - [270] => Array - ( - [id] => 272 - [title] => Facility 252 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 252 - [houseNumber] => 2543 - [streetName] => Street 26 - [county] => County 16 - [town] => Town 24 - [postcode] => AB53 7CD - [lng] => 128.093133 - [lat] => -31.273039 - [contributor] => - ) - - [271] => Array - ( - [id] => 273 - [title] => Facility 253 - [status] => - [category] => Recycling Bins - [description] => Description for facility 253 - [houseNumber] => 8833 - [streetName] => Street 8 - [county] => County 17 - [town] => Town 50 - [postcode] => AB86 6CD - [lng] => -160.567416 - [lat] => 32.993903 - [contributor] => - ) - - [272] => Array - ( - [id] => 274 - [title] => Facility 254 - [status] => - [category] => Recycling Bins - [description] => Description for facility 254 - [houseNumber] => 5412 - [streetName] => Street 34 - [county] => County 2 - [town] => Town 17 - [postcode] => AB90 8CD - [lng] => 10.37774 - [lat] => -61.58315 - [contributor] => - ) - - [273] => Array - ( - [id] => 275 - [title] => Facility 255 - [status] => - [category] => Green Roofs - [description] => Description for facility 255 - [houseNumber] => 2122 - [streetName] => Street 48 - [county] => County 9 - [town] => Town 11 - [postcode] => AB19 5CD - [lng] => -127.329422 - [lat] => -33.712595 - [contributor] => - ) - - [274] => Array - ( - [id] => 276 - [title] => Facility 256 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 256 - [houseNumber] => 7262 - [streetName] => Street 37 - [county] => County 4 - [town] => Town 1 - [postcode] => AB21 5CD - [lng] => -15.860787 - [lat] => -59.804956 - [contributor] => - ) - - [275] => Array - ( - [id] => 277 - [title] => Facility 257 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 257 - [houseNumber] => 3673 - [streetName] => Street 25 - [county] => County 1 - [town] => Town 20 - [postcode] => AB56 7CD - [lng] => -3.024205 - [lat] => 3.264199 - [contributor] => - ) - - [276] => Array - ( - [id] => 278 - [title] => Facility 258 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 258 - [houseNumber] => 1642 - [streetName] => Street 29 - [county] => County 15 - [town] => Town 28 - [postcode] => AB32 6CD - [lng] => 127.390016 - [lat] => -28.714274 - [contributor] => - ) - - [277] => Array - ( - [id] => 279 - [title] => Facility 259 - [status] => - [category] => Green Roofs - [description] => Description for facility 259 - [houseNumber] => 9270 - [streetName] => Street 25 - [county] => County 4 - [town] => Town 25 - [postcode] => AB67 7CD - [lng] => 143.196409 - [lat] => -66.968467 - [contributor] => - ) - - [278] => Array - ( - [id] => 280 - [title] => Facility 260 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 260 - [houseNumber] => 797 - [streetName] => Street 17 - [county] => County 2 - [town] => Town 26 - [postcode] => AB54 7CD - [lng] => -114.108596 - [lat] => 53.770932 - [contributor] => - ) - - [279] => Array - ( - [id] => 281 - [title] => Facility 261 - [status] => - [category] => e-Scooters - [description] => Description for facility 261 - [houseNumber] => 5356 - [streetName] => Street 41 - [county] => County 4 - [town] => Town 34 - [postcode] => AB97 1CD - [lng] => 152.546604 - [lat] => -21.31119 - [contributor] => - ) - - [280] => Array - ( - [id] => 282 - [title] => Facility 262 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 262 - [houseNumber] => 5281 - [streetName] => Street 44 - [county] => County 13 - [town] => Town 27 - [postcode] => AB32 3CD - [lng] => -12.047827 - [lat] => -71.084644 - [contributor] => - ) - - [281] => Array - ( - [id] => 283 - [title] => Facility 263 - [status] => - [category] => Green Roofs - [description] => Description for facility 263 - [houseNumber] => 1429 - [streetName] => Street 10 - [county] => County 12 - [town] => Town 8 - [postcode] => AB66 9CD - [lng] => 57.475542 - [lat] => -76.039792 - [contributor] => - ) - - [282] => Array - ( - [id] => 284 - [title] => Facility 264 - [status] => - [category] => Green Roofs - [description] => Description for facility 264 - [houseNumber] => 9323 - [streetName] => Street 3 - [county] => County 4 - [town] => Town 1 - [postcode] => AB28 5CD - [lng] => 104.730001 - [lat] => -12.875508 - [contributor] => - ) - - [283] => Array - ( - [id] => 285 - [title] => Facility 265 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 265 - [houseNumber] => 5314 - [streetName] => Street 16 - [county] => County 6 - [town] => Town 28 - [postcode] => AB47 1CD - [lng] => 17.637083 - [lat] => -14.308037 - [contributor] => - ) - - [284] => Array - ( - [id] => 286 - [title] => Facility 266 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 266 - [houseNumber] => 7147 - [streetName] => Street 19 - [county] => County 11 - [town] => Town 22 - [postcode] => AB62 9CD - [lng] => -159.486826 - [lat] => -9.216288 - [contributor] => - ) - - [285] => Array - ( - [id] => 287 - [title] => Facility 267 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 267 - [houseNumber] => 1687 - [streetName] => Street 1 - [county] => County 10 - [town] => Town 17 - [postcode] => AB66 7CD - [lng] => 64.000056 - [lat] => -9.257507 - [contributor] => - ) - - [286] => Array - ( - [id] => 288 - [title] => Facility 268 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 268 - [houseNumber] => 5278 - [streetName] => Street 20 - [county] => County 17 - [town] => Town 42 - [postcode] => AB55 8CD - [lng] => 62.594332 - [lat] => 77.59083 - [contributor] => - ) - - [287] => Array - ( - [id] => 289 - [title] => Facility 269 - [status] => - [category] => Recycling Bins - [description] => Description for facility 269 - [houseNumber] => 3806 - [streetName] => Street 18 - [county] => County 11 - [town] => Town 23 - [postcode] => AB63 3CD - [lng] => 2.651974 - [lat] => 25.055545 - [contributor] => - ) - - [288] => Array - ( - [id] => 290 - [title] => Facility 270 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 270 - [houseNumber] => 601 - [streetName] => Street 9 - [county] => County 17 - [town] => Town 39 - [postcode] => AB90 2CD - [lng] => 2.407976 - [lat] => -21.84419 - [contributor] => - ) - - [289] => Array - ( - [id] => 291 - [title] => Facility 271 - [status] => - [category] => Recycling Bins - [description] => Description for facility 271 - [houseNumber] => 3740 - [streetName] => Street 38 - [county] => County 15 - [town] => Town 50 - [postcode] => AB23 9CD - [lng] => -36.85098 - [lat] => 54.70224 - [contributor] => - ) - - [290] => Array - ( - [id] => 292 - [title] => Facility 272 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 272 - [houseNumber] => 3489 - [streetName] => Street 44 - [county] => County 2 - [town] => Town 20 - [postcode] => AB18 3CD - [lng] => 139.040933 - [lat] => -56.93102 - [contributor] => - ) - - [291] => Array - ( - [id] => 293 - [title] => Facility 273 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 273 - [houseNumber] => 7761 - [streetName] => Street 11 - [county] => County 5 - [town] => Town 33 - [postcode] => AB19 4CD - [lng] => 131.264702 - [lat] => 80.308086 - [contributor] => - ) - - [292] => Array - ( - [id] => 294 - [title] => Facility 274 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 274 - [houseNumber] => 8945 - [streetName] => Street 40 - [county] => County 6 - [town] => Town 50 - [postcode] => AB49 1CD - [lng] => -69.006122 - [lat] => 66.771189 - [contributor] => - ) - - [293] => Array - ( - [id] => 295 - [title] => Facility 275 - [status] => - [category] => Recycling Bins - [description] => Description for facility 275 - [houseNumber] => 6505 - [streetName] => Street 1 - [county] => County 8 - [town] => Town 6 - [postcode] => AB18 8CD - [lng] => 14.045569 - [lat] => 49.741714 - [contributor] => - ) - - [294] => Array - ( - [id] => 296 - [title] => Facility 276 - [status] => - [category] => Recycling Bins - [description] => Description for facility 276 - [houseNumber] => 6526 - [streetName] => Street 30 - [county] => County 20 - [town] => Town 46 - [postcode] => AB52 5CD - [lng] => -119.333624 - [lat] => 78.43495 - [contributor] => - ) - - [295] => Array - ( - [id] => 297 - [title] => Facility 277 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 277 - [houseNumber] => 773 - [streetName] => Street 30 - [county] => County 13 - [town] => Town 49 - [postcode] => AB71 2CD - [lng] => -31.959271 - [lat] => -8.388541 - [contributor] => - ) - - [296] => Array - ( - [id] => 298 - [title] => Facility 278 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 278 - [houseNumber] => 2341 - [streetName] => Street 46 - [county] => County 19 - [town] => Town 34 - [postcode] => AB14 1CD - [lng] => 102.101584 - [lat] => 23.437633 - [contributor] => - ) - - [297] => Array - ( - [id] => 299 - [title] => Facility 279 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 279 - [houseNumber] => 3141 - [streetName] => Street 15 - [county] => County 17 - [town] => Town 26 - [postcode] => AB16 2CD - [lng] => -56.127067 - [lat] => -49.890406 - [contributor] => - ) - - [298] => Array - ( - [id] => 300 - [title] => Facility 280 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 280 - [houseNumber] => 3552 - [streetName] => Street 15 - [county] => County 14 - [town] => Town 1 - [postcode] => AB68 3CD - [lng] => 17.260345 - [lat] => -78.103819 - [contributor] => - ) - - [299] => Array - ( - [id] => 301 - [title] => Facility 281 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 281 - [houseNumber] => 2476 - [streetName] => Street 6 - [county] => County 18 - [town] => Town 2 - [postcode] => AB74 3CD - [lng] => 60.350569 - [lat] => -85.477068 - [contributor] => - ) - - [300] => Array - ( - [id] => 302 - [title] => Facility 282 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 282 - [houseNumber] => 9779 - [streetName] => Street 48 - [county] => County 16 - [town] => Town 17 - [postcode] => AB62 4CD - [lng] => -150.507111 - [lat] => -24.786041 - [contributor] => - ) - - [301] => Array - ( - [id] => 303 - [title] => Facility 283 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 283 - [houseNumber] => 8810 - [streetName] => Street 24 - [county] => County 6 - [town] => Town 46 - [postcode] => AB99 6CD - [lng] => 106.256533 - [lat] => 47.899136 - [contributor] => - ) - - [302] => Array - ( - [id] => 304 - [title] => Facility 284 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 284 - [houseNumber] => 9917 - [streetName] => Street 29 - [county] => County 11 - [town] => Town 42 - [postcode] => AB88 9CD - [lng] => 14.431203 - [lat] => -34.509667 - [contributor] => - ) - - [303] => Array - ( - [id] => 305 - [title] => Facility 285 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 285 - [houseNumber] => 146 - [streetName] => Street 22 - [county] => County 5 - [town] => Town 20 - [postcode] => AB58 8CD - [lng] => 73.084261 - [lat] => 68.964732 - [contributor] => - ) - - [304] => Array - ( - [id] => 306 - [title] => Facility 286 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 286 - [houseNumber] => 3952 - [streetName] => Street 4 - [county] => County 9 - [town] => Town 36 - [postcode] => AB94 2CD - [lng] => -161.806787 - [lat] => 10.781318 - [contributor] => - ) - - [305] => Array - ( - [id] => 307 - [title] => Facility 287 - [status] => - [category] => Green Roofs - [description] => Description for facility 287 - [houseNumber] => 1173 - [streetName] => Street 48 - [county] => County 13 - [town] => Town 14 - [postcode] => AB71 2CD - [lng] => -172.903415 - [lat] => 33.324379 - [contributor] => - ) - - [306] => Array - ( - [id] => 308 - [title] => Facility 288 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 288 - [houseNumber] => 9341 - [streetName] => Street 36 - [county] => County 12 - [town] => Town 8 - [postcode] => AB27 7CD - [lng] => 43.033795 - [lat] => -29.83651 - [contributor] => - ) - - [307] => Array - ( - [id] => 309 - [title] => Facility 289 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 289 - [houseNumber] => 204 - [streetName] => Street 47 - [county] => County 13 - [town] => Town 8 - [postcode] => AB59 8CD - [lng] => -97.041568 - [lat] => 41.465264 - [contributor] => - ) - - [308] => Array - ( - [id] => 310 - [title] => Facility 290 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 290 - [houseNumber] => 4717 - [streetName] => Street 49 - [county] => County 7 - [town] => Town 28 - [postcode] => AB19 3CD - [lng] => 8.368312 - [lat] => -28.582674 - [contributor] => - ) - - [309] => Array - ( - [id] => 311 - [title] => Facility 291 - [status] => - [category] => Recycling Bins - [description] => Description for facility 291 - [houseNumber] => 5526 - [streetName] => Street 44 - [county] => County 20 - [town] => Town 12 - [postcode] => AB91 5CD - [lng] => 108.853856 - [lat] => -72.98166 - [contributor] => - ) - - [310] => Array - ( - [id] => 312 - [title] => Facility 292 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 292 - [houseNumber] => 7147 - [streetName] => Street 21 - [county] => County 14 - [town] => Town 5 - [postcode] => AB12 4CD - [lng] => -107.696856 - [lat] => -30.878007 - [contributor] => - ) - - [311] => Array - ( - [id] => 313 - [title] => Facility 293 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 293 - [houseNumber] => 9599 - [streetName] => Street 25 - [county] => County 3 - [town] => Town 4 - [postcode] => AB92 9CD - [lng] => 19.638688 - [lat] => 52.771414 - [contributor] => - ) - - [312] => Array - ( - [id] => 314 - [title] => Facility 294 - [status] => - [category] => e-Scooters - [description] => Description for facility 294 - [houseNumber] => 202 - [streetName] => Street 38 - [county] => County 3 - [town] => Town 31 - [postcode] => AB26 8CD - [lng] => 44.871385 - [lat] => -29.490756 - [contributor] => - ) - - [313] => Array - ( - [id] => 315 - [title] => Facility 295 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 295 - [houseNumber] => 7853 - [streetName] => Street 30 - [county] => County 19 - [town] => Town 10 - [postcode] => AB83 7CD - [lng] => 5.316368 - [lat] => -80.123385 - [contributor] => - ) - - [314] => Array - ( - [id] => 316 - [title] => Facility 296 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 296 - [houseNumber] => 2772 - [streetName] => Street 9 - [county] => County 11 - [town] => Town 32 - [postcode] => AB49 1CD - [lng] => 26.136796 - [lat] => 85.931724 - [contributor] => - ) - - [315] => Array - ( - [id] => 317 - [title] => Facility 297 - [status] => - [category] => Green Roofs - [description] => Description for facility 297 - [houseNumber] => 1778 - [streetName] => Street 9 - [county] => County 5 - [town] => Town 35 - [postcode] => AB50 7CD - [lng] => 93.281537 - [lat] => -25.15875 - [contributor] => - ) - - [316] => Array - ( - [id] => 318 - [title] => Facility 298 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 298 - [houseNumber] => 1885 - [streetName] => Street 25 - [county] => County 4 - [town] => Town 38 - [postcode] => AB72 4CD - [lng] => -150.769603 - [lat] => 46.665702 - [contributor] => - ) - - [317] => Array - ( - [id] => 319 - [title] => Facility 299 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 299 - [houseNumber] => 2301 - [streetName] => Street 25 - [county] => County 11 - [town] => Town 4 - [postcode] => AB55 5CD - [lng] => -169.867827 - [lat] => 1.654234 - [contributor] => - ) - - [318] => Array - ( - [id] => 320 - [title] => Facility 300 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 300 - [houseNumber] => 373 - [streetName] => Street 46 - [county] => County 13 - [town] => Town 49 - [postcode] => AB11 1CD - [lng] => 59.664878 - [lat] => -24.271632 - [contributor] => - ) - - [319] => Array - ( - [id] => 321 - [title] => Facility 301 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 301 - [houseNumber] => 6539 - [streetName] => Street 19 - [county] => County 6 - [town] => Town 26 - [postcode] => AB78 7CD - [lng] => -134.990939 - [lat] => -4.080639 - [contributor] => - ) - - [320] => Array - ( - [id] => 322 - [title] => Facility 302 - [status] => - [category] => Recycling Bins - [description] => Description for facility 302 - [houseNumber] => 4345 - [streetName] => Street 36 - [county] => County 17 - [town] => Town 33 - [postcode] => AB74 4CD - [lng] => -18.510602 - [lat] => 1.851886 - [contributor] => - ) - - [321] => Array - ( - [id] => 323 - [title] => Facility 303 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 303 - [houseNumber] => 7165 - [streetName] => Street 16 - [county] => County 3 - [town] => Town 31 - [postcode] => AB11 6CD - [lng] => -140.524708 - [lat] => -18.210511 - [contributor] => - ) - - [322] => Array - ( - [id] => 324 - [title] => Facility 304 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 304 - [houseNumber] => 1276 - [streetName] => Street 16 - [county] => County 20 - [town] => Town 1 - [postcode] => AB38 6CD - [lng] => -126.088494 - [lat] => -30.349207 - [contributor] => - ) - - [323] => Array - ( - [id] => 325 - [title] => Facility 305 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 305 - [houseNumber] => 2201 - [streetName] => Street 11 - [county] => County 5 - [town] => Town 38 - [postcode] => AB58 2CD - [lng] => 0.457152 - [lat] => 4.836108 - [contributor] => - ) - - [324] => Array - ( - [id] => 326 - [title] => Facility 306 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 306 - [houseNumber] => 9705 - [streetName] => Street 48 - [county] => County 20 - [town] => Town 9 - [postcode] => AB71 9CD - [lng] => 114.492455 - [lat] => 78.32875 - [contributor] => - ) - - [325] => Array - ( - [id] => 327 - [title] => Facility 307 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 307 - [houseNumber] => 7290 - [streetName] => Street 13 - [county] => County 8 - [town] => Town 50 - [postcode] => AB36 3CD - [lng] => -13.416155 - [lat] => -51.95854 - [contributor] => - ) - - [326] => Array - ( - [id] => 328 - [title] => Facility 308 - [status] => - [category] => e-Scooters - [description] => Description for facility 308 - [houseNumber] => 5908 - [streetName] => Street 19 - [county] => County 6 - [town] => Town 8 - [postcode] => AB26 1CD - [lng] => -97.965983 - [lat] => -59.859003 - [contributor] => - ) - - [327] => Array - ( - [id] => 329 - [title] => Facility 309 - [status] => - [category] => Recycling Bins - [description] => Description for facility 309 - [houseNumber] => 5473 - [streetName] => Street 26 - [county] => County 16 - [town] => Town 45 - [postcode] => AB23 9CD - [lng] => 172.663317 - [lat] => 47.391259 - [contributor] => - ) - - [328] => Array - ( - [id] => 330 - [title] => Facility 310 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 310 - [houseNumber] => 4919 - [streetName] => Street 48 - [county] => County 2 - [town] => Town 5 - [postcode] => AB13 5CD - [lng] => 33.305587 - [lat] => 85.618279 - [contributor] => - ) - - [329] => Array - ( - [id] => 331 - [title] => Facility 311 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 311 - [houseNumber] => 2635 - [streetName] => Street 27 - [county] => County 6 - [town] => Town 20 - [postcode] => AB48 1CD - [lng] => -18.102708 - [lat] => 2.139515 - [contributor] => - ) - - [330] => Array - ( - [id] => 332 - [title] => Facility 312 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 312 - [houseNumber] => 3973 - [streetName] => Street 17 - [county] => County 19 - [town] => Town 3 - [postcode] => AB94 4CD - [lng] => -6.376121 - [lat] => 8.914443 - [contributor] => - ) - - [331] => Array - ( - [id] => 333 - [title] => Facility 313 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 313 - [houseNumber] => 4847 - [streetName] => Street 7 - [county] => County 11 - [town] => Town 30 - [postcode] => AB87 5CD - [lng] => 115.183012 - [lat] => 45.937952 - [contributor] => - ) - - [332] => Array - ( - [id] => 334 - [title] => Facility 314 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 314 - [houseNumber] => 7153 - [streetName] => Street 37 - [county] => County 17 - [town] => Town 11 - [postcode] => AB65 6CD - [lng] => 81.997833 - [lat] => 52.308316 - [contributor] => - ) - - [333] => Array - ( - [id] => 335 - [title] => Facility 315 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 315 - [houseNumber] => 6537 - [streetName] => Street 50 - [county] => County 13 - [town] => Town 21 - [postcode] => AB39 7CD - [lng] => -47.480581 - [lat] => 69.522641 - [contributor] => - ) - - [334] => Array - ( - [id] => 336 - [title] => Facility 316 - [status] => - [category] => Recycling Bins - [description] => Description for facility 316 - [houseNumber] => 1303 - [streetName] => Street 10 - [county] => County 12 - [town] => Town 6 - [postcode] => AB67 1CD - [lng] => -0.106153 - [lat] => -4.397706 - [contributor] => - ) - - [335] => Array - ( - [id] => 337 - [title] => Facility 317 - [status] => - [category] => e-Scooters - [description] => Description for facility 317 - [houseNumber] => 3097 - [streetName] => Street 44 - [county] => County 18 - [town] => Town 30 - [postcode] => AB81 7CD - [lng] => 31.720684 - [lat] => 19.598122 - [contributor] => - ) - - [336] => Array - ( - [id] => 338 - [title] => Facility 318 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 318 - [houseNumber] => 3612 - [streetName] => Street 19 - [county] => County 5 - [town] => Town 15 - [postcode] => AB74 6CD - [lng] => -113.963875 - [lat] => 55.643222 - [contributor] => - ) - - [337] => Array - ( - [id] => 339 - [title] => Facility 319 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 319 - [houseNumber] => 7572 - [streetName] => Street 9 - [county] => County 2 - [town] => Town 27 - [postcode] => AB80 5CD - [lng] => -165.732874 - [lat] => 87.473971 - [contributor] => - ) - - [338] => Array - ( - [id] => 340 - [title] => Facility 320 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 320 - [houseNumber] => 7629 - [streetName] => Street 24 - [county] => County 15 - [town] => Town 50 - [postcode] => AB92 3CD - [lng] => 136.532397 - [lat] => -22.071956 - [contributor] => - ) - - [339] => Array - ( - [id] => 341 - [title] => Facility 321 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 321 - [houseNumber] => 8740 - [streetName] => Street 45 - [county] => County 17 - [town] => Town 34 - [postcode] => AB29 6CD - [lng] => 82.297563 - [lat] => 79.164566 - [contributor] => - ) - - [340] => Array - ( - [id] => 342 - [title] => Facility 322 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 322 - [houseNumber] => 2895 - [streetName] => Street 48 - [county] => County 4 - [town] => Town 36 - [postcode] => AB20 7CD - [lng] => 14.688964 - [lat] => -33.763655 - [contributor] => - ) - - [341] => Array - ( - [id] => 343 - [title] => Facility 323 - [status] => - [category] => Green Roofs - [description] => Description for facility 323 - [houseNumber] => 8536 - [streetName] => Street 28 - [county] => County 16 - [town] => Town 15 - [postcode] => AB28 4CD - [lng] => 147.037503 - [lat] => 49.400413 - [contributor] => - ) - - [342] => Array - ( - [id] => 344 - [title] => Facility 324 - [status] => - [category] => e-Scooters - [description] => Description for facility 324 - [houseNumber] => 282 - [streetName] => Street 10 - [county] => County 8 - [town] => Town 15 - [postcode] => AB17 1CD - [lng] => 7.674541 - [lat] => 66.105707 - [contributor] => - ) - - [343] => Array - ( - [id] => 345 - [title] => Facility 325 - [status] => - [category] => Green Roofs - [description] => Description for facility 325 - [houseNumber] => 9578 - [streetName] => Street 13 - [county] => County 5 - [town] => Town 3 - [postcode] => AB76 1CD - [lng] => -158.413836 - [lat] => -28.406727 - [contributor] => - ) - - [344] => Array - ( - [id] => 346 - [title] => Facility 326 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 326 - [houseNumber] => 281 - [streetName] => Street 30 - [county] => County 17 - [town] => Town 45 - [postcode] => AB92 3CD - [lng] => -168.205428 - [lat] => 53.829313 - [contributor] => - ) - - [345] => Array - ( - [id] => 347 - [title] => Facility 327 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 327 - [houseNumber] => 7006 - [streetName] => Street 40 - [county] => County 9 - [town] => Town 5 - [postcode] => AB81 8CD - [lng] => 72.253547 - [lat] => 51.13812 - [contributor] => - ) - - [346] => Array - ( - [id] => 348 - [title] => Facility 328 - [status] => - [category] => Green Roofs - [description] => Description for facility 328 - [houseNumber] => 7652 - [streetName] => Street 44 - [county] => County 9 - [town] => Town 35 - [postcode] => AB67 9CD - [lng] => 16.500117 - [lat] => -27.549195 - [contributor] => - ) - - [347] => Array - ( - [id] => 349 - [title] => Facility 329 - [status] => - [category] => Green Roofs - [description] => Description for facility 329 - [houseNumber] => 2865 - [streetName] => Street 22 - [county] => County 11 - [town] => Town 32 - [postcode] => AB26 6CD - [lng] => -133.913934 - [lat] => -22.299429 - [contributor] => - ) - - [348] => Array - ( - [id] => 350 - [title] => Facility 330 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 330 - [houseNumber] => 9894 - [streetName] => Street 34 - [county] => County 15 - [town] => Town 36 - [postcode] => AB98 8CD - [lng] => -3.99114 - [lat] => 39.969168 - [contributor] => - ) - - [349] => Array - ( - [id] => 351 - [title] => Facility 331 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 331 - [houseNumber] => 8148 - [streetName] => Street 31 - [county] => County 6 - [town] => Town 43 - [postcode] => AB42 6CD - [lng] => -149.339926 - [lat] => 54.786458 - [contributor] => - ) - - [350] => Array - ( - [id] => 352 - [title] => Facility 332 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 332 - [houseNumber] => 8521 - [streetName] => Street 17 - [county] => County 2 - [town] => Town 20 - [postcode] => AB53 3CD - [lng] => -169.845083 - [lat] => 35.475133 - [contributor] => - ) - - [351] => Array - ( - [id] => 353 - [title] => Facility 333 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 333 - [houseNumber] => 7612 - [streetName] => Street 5 - [county] => County 3 - [town] => Town 40 - [postcode] => AB17 1CD - [lng] => 95.258207 - [lat] => 18.814802 - [contributor] => - ) - - [352] => Array - ( - [id] => 354 - [title] => Facility 334 - [status] => - [category] => Green Roofs - [description] => Description for facility 334 - [houseNumber] => 298 - [streetName] => Street 12 - [county] => County 7 - [town] => Town 26 - [postcode] => AB42 8CD - [lng] => -9.033427 - [lat] => 88.126006 - [contributor] => - ) - - [353] => Array - ( - [id] => 355 - [title] => Facility 335 - [status] => - [category] => Recycling Bins - [description] => Description for facility 335 - [houseNumber] => 8248 - [streetName] => Street 21 - [county] => County 19 - [town] => Town 45 - [postcode] => AB38 3CD - [lng] => -138.896186 - [lat] => 49.339572 - [contributor] => - ) - - [354] => Array - ( - [id] => 356 - [title] => Facility 336 - [status] => - [category] => Green Roofs - [description] => Description for facility 336 - [houseNumber] => 8646 - [streetName] => Street 27 - [county] => County 10 - [town] => Town 22 - [postcode] => AB37 7CD - [lng] => 99.591012 - [lat] => 36.500132 - [contributor] => - ) - - [355] => Array - ( - [id] => 357 - [title] => Facility 337 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 337 - [houseNumber] => 851 - [streetName] => Street 13 - [county] => County 14 - [town] => Town 35 - [postcode] => AB52 5CD - [lng] => -124.345772 - [lat] => 20.858137 - [contributor] => - ) - - [356] => Array - ( - [id] => 358 - [title] => Facility 338 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 338 - [houseNumber] => 6029 - [streetName] => Street 24 - [county] => County 10 - [town] => Town 7 - [postcode] => AB80 4CD - [lng] => 50.751659 - [lat] => -42.612491 - [contributor] => - ) - - [357] => Array - ( - [id] => 359 - [title] => Facility 339 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 339 - [houseNumber] => 8459 - [streetName] => Street 47 - [county] => County 15 - [town] => Town 35 - [postcode] => AB96 3CD - [lng] => 16.832705 - [lat] => 20.899728 - [contributor] => - ) - - [358] => Array - ( - [id] => 360 - [title] => Facility 340 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 340 - [houseNumber] => 851 - [streetName] => Street 39 - [county] => County 9 - [town] => Town 2 - [postcode] => AB33 7CD - [lng] => -72.321927 - [lat] => -43.668002 - [contributor] => - ) - - [359] => Array - ( - [id] => 361 - [title] => Facility 341 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 341 - [houseNumber] => 3991 - [streetName] => Street 43 - [county] => County 14 - [town] => Town 44 - [postcode] => AB26 2CD - [lng] => -7.491358 - [lat] => 0.089264 - [contributor] => - ) - - [360] => Array - ( - [id] => 362 - [title] => Facility 342 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 342 - [houseNumber] => 1253 - [streetName] => Street 10 - [county] => County 19 - [town] => Town 3 - [postcode] => AB37 1CD - [lng] => -105.36386 - [lat] => -32.648422 - [contributor] => - ) - - [361] => Array - ( - [id] => 363 - [title] => Facility 343 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 343 - [houseNumber] => 9270 - [streetName] => Street 41 - [county] => County 11 - [town] => Town 47 - [postcode] => AB79 7CD - [lng] => -5.647827 - [lat] => -38.893649 - [contributor] => - ) - - [362] => Array - ( - [id] => 364 - [title] => Facility 344 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 344 - [houseNumber] => 743 - [streetName] => Street 3 - [county] => County 18 - [town] => Town 29 - [postcode] => AB96 8CD - [lng] => -70.723624 - [lat] => 44.950295 - [contributor] => - ) - - [363] => Array - ( - [id] => 365 - [title] => Facility 345 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 345 - [houseNumber] => 1045 - [streetName] => Street 29 - [county] => County 15 - [town] => Town 34 - [postcode] => AB56 9CD - [lng] => -86.923775 - [lat] => 11.842118 - [contributor] => - ) - - [364] => Array - ( - [id] => 366 - [title] => Facility 346 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 346 - [houseNumber] => 7404 - [streetName] => Street 33 - [county] => County 1 - [town] => Town 30 - [postcode] => AB33 1CD - [lng] => -94.888579 - [lat] => -77.839961 - [contributor] => - ) - - [365] => Array - ( - [id] => 367 - [title] => Facility 347 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 347 - [houseNumber] => 8259 - [streetName] => Street 35 - [county] => County 18 - [town] => Town 24 - [postcode] => AB30 3CD - [lng] => -113.733456 - [lat] => -9.183087 - [contributor] => - ) - - [366] => Array - ( - [id] => 368 - [title] => Facility 348 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 348 - [houseNumber] => 8947 - [streetName] => Street 19 - [county] => County 6 - [town] => Town 39 - [postcode] => AB20 3CD - [lng] => 117.582383 - [lat] => 87.776541 - [contributor] => - ) - - [367] => Array - ( - [id] => 369 - [title] => Facility 349 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 349 - [houseNumber] => 6467 - [streetName] => Street 28 - [county] => County 10 - [town] => Town 16 - [postcode] => AB77 2CD - [lng] => 131.952944 - [lat] => -50.355647 - [contributor] => - ) - - [368] => Array - ( - [id] => 370 - [title] => Facility 350 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 350 - [houseNumber] => 6879 - [streetName] => Street 39 - [county] => County 13 - [town] => Town 44 - [postcode] => AB37 7CD - [lng] => 69.315039 - [lat] => -3.323014 - [contributor] => - ) - - [369] => Array - ( - [id] => 371 - [title] => Facility 351 - [status] => - [category] => Recycling Bins - [description] => Description for facility 351 - [houseNumber] => 2578 - [streetName] => Street 40 - [county] => County 14 - [town] => Town 30 - [postcode] => AB77 8CD - [lng] => 71.587563 - [lat] => 59.907887 - [contributor] => - ) - - [370] => Array - ( - [id] => 372 - [title] => Facility 352 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 352 - [houseNumber] => 638 - [streetName] => Street 8 - [county] => County 14 - [town] => Town 16 - [postcode] => AB84 3CD - [lng] => 123.300906 - [lat] => -12.402438 - [contributor] => - ) - - [371] => Array - ( - [id] => 373 - [title] => Facility 353 - [status] => - [category] => Recycling Bins - [description] => Description for facility 353 - [houseNumber] => 5281 - [streetName] => Street 50 - [county] => County 10 - [town] => Town 21 - [postcode] => AB99 7CD - [lng] => -10.585474 - [lat] => 81.50205 - [contributor] => - ) - - [372] => Array - ( - [id] => 374 - [title] => Facility 354 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 354 - [houseNumber] => 5120 - [streetName] => Street 20 - [county] => County 5 - [town] => Town 16 - [postcode] => AB64 1CD - [lng] => 152.597172 - [lat] => 26.87359 - [contributor] => - ) - - [373] => Array - ( - [id] => 375 - [title] => Facility 355 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 355 - [houseNumber] => 5874 - [streetName] => Street 13 - [county] => County 12 - [town] => Town 44 - [postcode] => AB48 4CD - [lng] => 8.889398 - [lat] => -14.425324 - [contributor] => - ) - - [374] => Array - ( - [id] => 376 - [title] => Facility 356 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 356 - [houseNumber] => 3883 - [streetName] => Street 10 - [county] => County 11 - [town] => Town 17 - [postcode] => AB11 7CD - [lng] => -75.682541 - [lat] => -50.622001 - [contributor] => - ) - - [375] => Array - ( - [id] => 377 - [title] => Facility 357 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 357 - [houseNumber] => 758 - [streetName] => Street 3 - [county] => County 15 - [town] => Town 23 - [postcode] => AB22 1CD - [lng] => 173.781162 - [lat] => -80.475946 - [contributor] => - ) - - [376] => Array - ( - [id] => 378 - [title] => Facility 358 - [status] => - [category] => e-Scooters - [description] => Description for facility 358 - [houseNumber] => 5248 - [streetName] => Street 43 - [county] => County 7 - [town] => Town 32 - [postcode] => AB20 1CD - [lng] => -44.123142 - [lat] => 1.781567 - [contributor] => - ) - - [377] => Array - ( - [id] => 379 - [title] => Facility 359 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 359 - [houseNumber] => 1354 - [streetName] => Street 46 - [county] => County 20 - [town] => Town 28 - [postcode] => AB14 8CD - [lng] => -115.340526 - [lat] => 83.469064 - [contributor] => - ) - - [378] => Array - ( - [id] => 380 - [title] => Facility 360 - [status] => - [category] => Recycling Bins - [description] => Description for facility 360 - [houseNumber] => 7906 - [streetName] => Street 17 - [county] => County 10 - [town] => Town 49 - [postcode] => AB28 8CD - [lng] => 40.112231 - [lat] => 82.534372 - [contributor] => - ) - - [379] => Array - ( - [id] => 381 - [title] => Facility 361 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 361 - [houseNumber] => 7178 - [streetName] => Street 37 - [county] => County 3 - [town] => Town 35 - [postcode] => AB17 6CD - [lng] => -109.857872 - [lat] => -6.226191 - [contributor] => - ) - - [380] => Array - ( - [id] => 382 - [title] => Facility 362 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 362 - [houseNumber] => 7875 - [streetName] => Street 24 - [county] => County 15 - [town] => Town 43 - [postcode] => AB65 1CD - [lng] => 112.436917 - [lat] => 81.603326 - [contributor] => - ) - - [381] => Array - ( - [id] => 383 - [title] => Facility 363 - [status] => - [category] => Green Roofs - [description] => Description for facility 363 - [houseNumber] => 9412 - [streetName] => Street 20 - [county] => County 20 - [town] => Town 18 - [postcode] => AB97 7CD - [lng] => 80.664011 - [lat] => -21.511848 - [contributor] => - ) - - [382] => Array - ( - [id] => 384 - [title] => Facility 364 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 364 - [houseNumber] => 5002 - [streetName] => Street 32 - [county] => County 16 - [town] => Town 22 - [postcode] => AB89 4CD - [lng] => 158.408875 - [lat] => 87.611143 - [contributor] => - ) - - [383] => Array - ( - [id] => 385 - [title] => Facility 365 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 365 - [houseNumber] => 6651 - [streetName] => Street 27 - [county] => County 20 - [town] => Town 3 - [postcode] => AB66 4CD - [lng] => 124.953605 - [lat] => 43.411453 - [contributor] => - ) - - [384] => Array - ( - [id] => 386 - [title] => Facility 366 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 366 - [houseNumber] => 4762 - [streetName] => Street 22 - [county] => County 9 - [town] => Town 20 - [postcode] => AB47 1CD - [lng] => 147.610137 - [lat] => -73.615536 - [contributor] => - ) - - [385] => Array - ( - [id] => 387 - [title] => Facility 367 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 367 - [houseNumber] => 4337 - [streetName] => Street 39 - [county] => County 3 - [town] => Town 1 - [postcode] => AB49 1CD - [lng] => 74.91362 - [lat] => -87.213329 - [contributor] => - ) - - [386] => Array - ( - [id] => 388 - [title] => Facility 368 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 368 - [houseNumber] => 1659 - [streetName] => Street 35 - [county] => County 12 - [town] => Town 40 - [postcode] => AB19 7CD - [lng] => -33.172239 - [lat] => 25.92005 - [contributor] => - ) - - [387] => Array - ( - [id] => 389 - [title] => Facility 369 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 369 - [houseNumber] => 3916 - [streetName] => Street 38 - [county] => County 11 - [town] => Town 31 - [postcode] => AB13 3CD - [lng] => 37.305126 - [lat] => 75.593721 - [contributor] => - ) - - [388] => Array - ( - [id] => 390 - [title] => Facility 370 - [status] => - [category] => e-Scooters - [description] => Description for facility 370 - [houseNumber] => 3598 - [streetName] => Street 36 - [county] => County 1 - [town] => Town 36 - [postcode] => AB61 9CD - [lng] => 166.99134 - [lat] => 20.26503 - [contributor] => - ) - - [389] => Array - ( - [id] => 391 - [title] => Facility 371 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 371 - [houseNumber] => 8183 - [streetName] => Street 24 - [county] => County 20 - [town] => Town 19 - [postcode] => AB65 4CD - [lng] => 6.952579 - [lat] => 37.542695 - [contributor] => Benny - ) - - [390] => Array - ( - [id] => 392 - [title] => Facility 372 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 372 - [houseNumber] => 7293 - [streetName] => Street 45 - [county] => County 7 - [town] => Town 33 - [postcode] => AB27 4CD - [lng] => -43.24715 - [lat] => 21.325843 - [contributor] => - ) - - [391] => Array - ( - [id] => 393 - [title] => Facility 373 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 373 - [houseNumber] => 5259 - [streetName] => Street 12 - [county] => County 10 - [town] => Town 34 - [postcode] => AB85 8CD - [lng] => -18.993043 - [lat] => 32.208973 - [contributor] => - ) - - [392] => Array - ( - [id] => 394 - [title] => Facility 374 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 374 - [houseNumber] => 2654 - [streetName] => Street 32 - [county] => County 10 - [town] => Town 6 - [postcode] => AB27 2CD - [lng] => 100.919007 - [lat] => -47.286329 - [contributor] => - ) - - [393] => Array - ( - [id] => 395 - [title] => Facility 375 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 375 - [houseNumber] => 7890 - [streetName] => Street 29 - [county] => County 15 - [town] => Town 49 - [postcode] => AB26 7CD - [lng] => -78.300038 - [lat] => -86.623577 - [contributor] => - ) - - [394] => Array - ( - [id] => 396 - [title] => Facility 376 - [status] => - [category] => Recycling Bins - [description] => Description for facility 376 - [houseNumber] => 2542 - [streetName] => Street 15 - [county] => County 15 - [town] => Town 44 - [postcode] => AB87 4CD - [lng] => 47.13789 - [lat] => 24.820181 - [contributor] => - ) - - [395] => Array - ( - [id] => 397 - [title] => Facility 377 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 377 - [houseNumber] => 778 - [streetName] => Street 38 - [county] => County 12 - [town] => Town 35 - [postcode] => AB46 5CD - [lng] => -15.805112 - [lat] => 74.657473 - [contributor] => - ) - - [396] => Array - ( - [id] => 398 - [title] => Facility 378 - [status] => - [category] => e-Scooters - [description] => Description for facility 378 - [houseNumber] => 562 - [streetName] => Street 37 - [county] => County 17 - [town] => Town 9 - [postcode] => AB76 8CD - [lng] => -72.304335 - [lat] => -55.034192 - [contributor] => - ) - - [397] => Array - ( - [id] => 399 - [title] => Facility 379 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 379 - [houseNumber] => 1702 - [streetName] => Street 48 - [county] => County 13 - [town] => Town 16 - [postcode] => AB27 3CD - [lng] => 0.507339 - [lat] => 56.847511 - [contributor] => - ) - - [398] => Array - ( - [id] => 400 - [title] => Facility 380 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 380 - [houseNumber] => 3612 - [streetName] => Street 44 - [county] => County 1 - [town] => Town 26 - [postcode] => AB77 9CD - [lng] => 13.997496 - [lat] => 14.417374 - [contributor] => - ) - - [399] => Array - ( - [id] => 401 - [title] => Facility 381 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 381 - [houseNumber] => 7899 - [streetName] => Street 14 - [county] => County 20 - [town] => Town 29 - [postcode] => AB69 9CD - [lng] => 132.641357 - [lat] => -44.610432 - [contributor] => - ) - - [400] => Array - ( - [id] => 402 - [title] => Facility 382 - [status] => - [category] => Green Roofs - [description] => Description for facility 382 - [houseNumber] => 2453 - [streetName] => Street 34 - [county] => County 4 - [town] => Town 42 - [postcode] => AB28 7CD - [lng] => 30.594816 - [lat] => 74.439326 - [contributor] => - ) - - [401] => Array - ( - [id] => 403 - [title] => Facility 383 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 383 - [houseNumber] => 3632 - [streetName] => Street 7 - [county] => County 13 - [town] => Town 47 - [postcode] => AB77 2CD - [lng] => -41.697122 - [lat] => -78.727602 - [contributor] => - ) - - [402] => Array - ( - [id] => 404 - [title] => Facility 384 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 384 - [houseNumber] => 9528 - [streetName] => Street 20 - [county] => County 20 - [town] => Town 32 - [postcode] => AB46 7CD - [lng] => -147.329377 - [lat] => -19.790997 - [contributor] => - ) - - [403] => Array - ( - [id] => 405 - [title] => Facility 385 - [status] => - [category] => Recycling Bins - [description] => Description for facility 385 - [houseNumber] => 6994 - [streetName] => Street 24 - [county] => County 3 - [town] => Town 49 - [postcode] => AB97 5CD - [lng] => 138.480536 - [lat] => -82.627375 - [contributor] => - ) - - [404] => Array - ( - [id] => 406 - [title] => Facility 386 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 386 - [houseNumber] => 1879 - [streetName] => Street 1 - [county] => County 12 - [town] => Town 27 - [postcode] => AB27 2CD - [lng] => 79.720255 - [lat] => -40.740873 - [contributor] => - ) - - [405] => Array - ( - [id] => 407 - [title] => Facility 387 - [status] => - [category] => Recycling Bins - [description] => Description for facility 387 - [houseNumber] => 3118 - [streetName] => Street 27 - [county] => County 10 - [town] => Town 11 - [postcode] => AB74 4CD - [lng] => -179.944546 - [lat] => -54.451707 - [contributor] => - ) - - [406] => Array - ( - [id] => 408 - [title] => Facility 388 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 388 - [houseNumber] => 3095 - [streetName] => Street 36 - [county] => County 4 - [town] => Town 8 - [postcode] => AB27 5CD - [lng] => 14.580774 - [lat] => -87.713008 - [contributor] => - ) - - [407] => Array - ( - [id] => 409 - [title] => Facility 389 - [status] => - [category] => Recycling Bins - [description] => Description for facility 389 - [houseNumber] => 3055 - [streetName] => Street 11 - [county] => County 20 - [town] => Town 2 - [postcode] => AB49 8CD - [lng] => 53.76983 - [lat] => -72.130738 - [contributor] => - ) - - [408] => Array - ( - [id] => 410 - [title] => Facility 390 - [status] => - [category] => Green Roofs - [description] => Description for facility 390 - [houseNumber] => 9557 - [streetName] => Street 5 - [county] => County 8 - [town] => Town 10 - [postcode] => AB37 1CD - [lng] => -58.171119 - [lat] => -5.855544 - [contributor] => - ) - - [409] => Array - ( - [id] => 411 - [title] => Facility 391 - [status] => - [category] => Recycling Bins - [description] => Description for facility 391 - [houseNumber] => 1044 - [streetName] => Street 9 - [county] => County 8 - [town] => Town 47 - [postcode] => AB19 9CD - [lng] => -3.889704 - [lat] => 28.497271 - [contributor] => - ) - - [410] => Array - ( - [id] => 412 - [title] => Facility 392 - [status] => - [category] => Recycling Bins - [description] => Description for facility 392 - [houseNumber] => 6937 - [streetName] => Street 4 - [county] => County 18 - [town] => Town 15 - [postcode] => AB23 6CD - [lng] => -84.820195 - [lat] => 39.109082 - [contributor] => - ) - - [411] => Array - ( - [id] => 413 - [title] => Facility 393 - [status] => - [category] => Green Roofs - [description] => Description for facility 393 - [houseNumber] => 5593 - [streetName] => Street 13 - [county] => County 20 - [town] => Town 32 - [postcode] => AB29 1CD - [lng] => 138.029815 - [lat] => 57.53967 - [contributor] => - ) - - [412] => Array - ( - [id] => 414 - [title] => Facility 394 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 394 - [houseNumber] => 4258 - [streetName] => Street 49 - [county] => County 11 - [town] => Town 44 - [postcode] => AB40 7CD - [lng] => 89.574271 - [lat] => -31.457336 - [contributor] => - ) - - [413] => Array - ( - [id] => 415 - [title] => Facility 395 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 395 - [houseNumber] => 968 - [streetName] => Street 4 - [county] => County 8 - [town] => Town 48 - [postcode] => AB51 1CD - [lng] => 145.757717 - [lat] => -42.826776 - [contributor] => - ) - - [414] => Array - ( - [id] => 416 - [title] => Facility 396 - [status] => - [category] => Recycling Bins - [description] => Description for facility 396 - [houseNumber] => 5104 - [streetName] => Street 22 - [county] => County 18 - [town] => Town 13 - [postcode] => AB59 9CD - [lng] => -105.256733 - [lat] => 86.448792 - [contributor] => - ) - - [415] => Array - ( - [id] => 417 - [title] => Facility 397 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 397 - [houseNumber] => 1449 - [streetName] => Street 30 - [county] => County 18 - [town] => Town 37 - [postcode] => AB44 9CD - [lng] => -97.673378 - [lat] => -37.877731 - [contributor] => - ) - - [416] => Array - ( - [id] => 418 - [title] => Facility 398 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 398 - [houseNumber] => 2127 - [streetName] => Street 8 - [county] => County 10 - [town] => Town 37 - [postcode] => AB47 7CD - [lng] => -179.869139 - [lat] => -18.619841 - [contributor] => - ) - - [417] => Array - ( - [id] => 419 - [title] => Facility 399 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 399 - [houseNumber] => 9475 - [streetName] => Street 20 - [county] => County 4 - [town] => Town 16 - [postcode] => AB56 5CD - [lng] => 19.315799 - [lat] => -54.839497 - [contributor] => - ) - - [418] => Array - ( - [id] => 420 - [title] => Facility 400 - [status] => - [category] => Green Roofs - [description] => Description for facility 400 - [houseNumber] => 4572 - [streetName] => Street 19 - [county] => County 6 - [town] => Town 35 - [postcode] => AB79 3CD - [lng] => -84.203504 - [lat] => -76.664171 - [contributor] => - ) - - [419] => Array - ( - [id] => 421 - [title] => Facility 401 - [status] => - [category] => Recycling Bins - [description] => Description for facility 401 - [houseNumber] => 2440 - [streetName] => Street 6 - [county] => County 19 - [town] => Town 50 - [postcode] => AB57 4CD - [lng] => -173.481231 - [lat] => 15.38249 - [contributor] => - ) - - [420] => Array - ( - [id] => 422 - [title] => Facility 402 - [status] => - [category] => Green Roofs - [description] => Description for facility 402 - [houseNumber] => 8358 - [streetName] => Street 24 - [county] => County 8 - [town] => Town 11 - [postcode] => AB57 9CD - [lng] => 171.851612 - [lat] => -74.028456 - [contributor] => - ) - - [421] => Array - ( - [id] => 423 - [title] => Facility 403 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 403 - [houseNumber] => 750 - [streetName] => Street 20 - [county] => County 4 - [town] => Town 12 - [postcode] => AB43 2CD - [lng] => -83.780744 - [lat] => -51.3187 - [contributor] => - ) - - [422] => Array - ( - [id] => 424 - [title] => Facility 404 - [status] => - [category] => Recycling Bins - [description] => Description for facility 404 - [houseNumber] => 9368 - [streetName] => Street 49 - [county] => County 17 - [town] => Town 26 - [postcode] => AB29 1CD - [lng] => -167.213442 - [lat] => 85.809036 - [contributor] => - ) - - [423] => Array - ( - [id] => 425 - [title] => Facility 405 - [status] => - [category] => e-Scooters - [description] => Description for facility 405 - [houseNumber] => 7843 - [streetName] => Street 42 - [county] => County 3 - [town] => Town 48 - [postcode] => AB69 9CD - [lng] => 167.533588 - [lat] => -29.338387 - [contributor] => - ) - - [424] => Array - ( - [id] => 426 - [title] => Facility 406 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 406 - [houseNumber] => 5722 - [streetName] => Street 14 - [county] => County 19 - [town] => Town 1 - [postcode] => AB18 5CD - [lng] => 120.605638 - [lat] => -13.381146 - [contributor] => - ) - - [425] => Array - ( - [id] => 427 - [title] => Facility 407 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 407 - [houseNumber] => 4246 - [streetName] => Street 25 - [county] => County 4 - [town] => Town 18 - [postcode] => AB99 9CD - [lng] => 150.134318 - [lat] => -1.253561 - [contributor] => - ) - - [426] => Array - ( - [id] => 428 - [title] => Facility 408 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 408 - [houseNumber] => 9562 - [streetName] => Street 29 - [county] => County 2 - [town] => Town 25 - [postcode] => AB53 4CD - [lng] => 139.325416 - [lat] => 74.92113 - [contributor] => - ) - - [427] => Array - ( - [id] => 429 - [title] => Facility 409 - [status] => - [category] => Green Roofs - [description] => Description for facility 409 - [houseNumber] => 1926 - [streetName] => Street 25 - [county] => County 13 - [town] => Town 18 - [postcode] => AB80 2CD - [lng] => 95.425221 - [lat] => 79.352266 - [contributor] => - ) - - [428] => Array - ( - [id] => 430 - [title] => Facility 410 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 410 - [houseNumber] => 883 - [streetName] => Street 31 - [county] => County 11 - [town] => Town 42 - [postcode] => AB71 5CD - [lng] => 150.35865 - [lat] => -24.373314 - [contributor] => - ) - - [429] => Array - ( - [id] => 431 - [title] => Facility 411 - [status] => - [category] => Green Roofs - [description] => Description for facility 411 - [houseNumber] => 745 - [streetName] => Street 28 - [county] => County 5 - [town] => Town 44 - [postcode] => AB40 4CD - [lng] => -53.908364 - [lat] => -82.847193 - [contributor] => - ) - - [430] => Array - ( - [id] => 432 - [title] => Facility 412 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 412 - [houseNumber] => 3524 - [streetName] => Street 43 - [county] => County 17 - [town] => Town 27 - [postcode] => AB91 5CD - [lng] => -93.899496 - [lat] => 58.57581 - [contributor] => - ) - - [431] => Array - ( - [id] => 433 - [title] => Facility 413 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 413 - [houseNumber] => 1576 - [streetName] => Street 35 - [county] => County 11 - [town] => Town 18 - [postcode] => AB76 8CD - [lng] => -99.315466 - [lat] => -68.868099 - [contributor] => - ) - - [432] => Array - ( - [id] => 434 - [title] => Facility 414 - [status] => - [category] => Recycling Bins - [description] => Description for facility 414 - [houseNumber] => 8938 - [streetName] => Street 18 - [county] => County 1 - [town] => Town 43 - [postcode] => AB58 7CD - [lng] => -171.00665 - [lat] => -68.960335 - [contributor] => - ) - - [433] => Array - ( - [id] => 435 - [title] => Facility 415 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 415 - [houseNumber] => 4425 - [streetName] => Street 20 - [county] => County 1 - [town] => Town 4 - [postcode] => AB68 6CD - [lng] => 58.214261 - [lat] => -73.831469 - [contributor] => - ) - - [434] => Array - ( - [id] => 436 - [title] => Facility 416 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 416 - [houseNumber] => 4017 - [streetName] => Street 43 - [county] => County 9 - [town] => Town 34 - [postcode] => AB41 8CD - [lng] => 97.379258 - [lat] => -43.439904 - [contributor] => - ) - - [435] => Array - ( - [id] => 437 - [title] => Facility 417 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 417 - [houseNumber] => 7314 - [streetName] => Street 28 - [county] => County 15 - [town] => Town 29 - [postcode] => AB34 7CD - [lng] => 164.600152 - [lat] => 21.20235 - [contributor] => - ) - - [436] => Array - ( - [id] => 438 - [title] => Facility 418 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 418 - [houseNumber] => 8655 - [streetName] => Street 46 - [county] => County 11 - [town] => Town 35 - [postcode] => AB41 6CD - [lng] => -137.31646 - [lat] => 56.168495 - [contributor] => - ) - - [437] => Array - ( - [id] => 439 - [title] => Facility 419 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 419 - [houseNumber] => 423 - [streetName] => Street 18 - [county] => County 7 - [town] => Town 41 - [postcode] => AB69 5CD - [lng] => 140.218975 - [lat] => -70.138954 - [contributor] => - ) - - [438] => Array - ( - [id] => 440 - [title] => Facility 420 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 420 - [houseNumber] => 9362 - [streetName] => Street 15 - [county] => County 16 - [town] => Town 11 - [postcode] => AB85 5CD - [lng] => 47.24445 - [lat] => -89.815298 - [contributor] => - ) - - [439] => Array - ( - [id] => 441 - [title] => Facility 421 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 421 - [houseNumber] => 8439 - [streetName] => Street 25 - [county] => County 19 - [town] => Town 15 - [postcode] => AB47 9CD - [lng] => 64.138349 - [lat] => -74.186673 - [contributor] => - ) - - [440] => Array - ( - [id] => 442 - [title] => Facility 422 - [status] => - [category] => Recycling Bins - [description] => Description for facility 422 - [houseNumber] => 9174 - [streetName] => Street 4 - [county] => County 17 - [town] => Town 42 - [postcode] => AB91 2CD - [lng] => -101.067674 - [lat] => -26.065495 - [contributor] => - ) - - [441] => Array - ( - [id] => 443 - [title] => Facility 423 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 423 - [houseNumber] => 7419 - [streetName] => Street 28 - [county] => County 8 - [town] => Town 13 - [postcode] => AB59 5CD - [lng] => 128.164263 - [lat] => 20.0789 - [contributor] => - ) - - [442] => Array - ( - [id] => 444 - [title] => Facility 424 - [status] => - [category] => Recycling Bins - [description] => Description for facility 424 - [houseNumber] => 2299 - [streetName] => Street 30 - [county] => County 3 - [town] => Town 20 - [postcode] => AB25 2CD - [lng] => 178.606068 - [lat] => 53.823435 - [contributor] => - ) - - [443] => Array - ( - [id] => 445 - [title] => Facility 425 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 425 - [houseNumber] => 3100 - [streetName] => Street 40 - [county] => County 19 - [town] => Town 33 - [postcode] => AB78 2CD - [lng] => -21.23828 - [lat] => -44.46525 - [contributor] => - ) - - [444] => Array - ( - [id] => 446 - [title] => Facility 426 - [status] => - [category] => e-Scooters - [description] => Description for facility 426 - [houseNumber] => 5431 - [streetName] => Street 37 - [county] => County 16 - [town] => Town 4 - [postcode] => AB77 3CD - [lng] => 90.339345 - [lat] => 27.461436 - [contributor] => - ) - - [445] => Array - ( - [id] => 447 - [title] => Facility 427 - [status] => - [category] => Recycling Bins - [description] => Description for facility 427 - [houseNumber] => 9679 - [streetName] => Street 28 - [county] => County 2 - [town] => Town 24 - [postcode] => AB61 8CD - [lng] => 17.808745 - [lat] => 21.868914 - [contributor] => - ) - - [446] => Array - ( - [id] => 448 - [title] => Facility 428 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 428 - [houseNumber] => 6138 - [streetName] => Street 30 - [county] => County 18 - [town] => Town 22 - [postcode] => AB75 6CD - [lng] => -92.330605 - [lat] => -47.154946 - [contributor] => - ) - - [447] => Array - ( - [id] => 449 - [title] => Facility 429 - [status] => - [category] => Recycling Bins - [description] => Description for facility 429 - [houseNumber] => 5056 - [streetName] => Street 39 - [county] => County 20 - [town] => Town 36 - [postcode] => AB22 7CD - [lng] => -131.449958 - [lat] => -9.535115 - [contributor] => - ) - - [448] => Array - ( - [id] => 450 - [title] => Facility 430 - [status] => - [category] => e-Scooters - [description] => Description for facility 430 - [houseNumber] => 7643 - [streetName] => Street 30 - [county] => County 20 - [town] => Town 46 - [postcode] => AB49 2CD - [lng] => 68.857932 - [lat] => 74.287865 - [contributor] => - ) - - [449] => Array - ( - [id] => 451 - [title] => Facility 431 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 431 - [houseNumber] => 8687 - [streetName] => Street 33 - [county] => County 17 - [town] => Town 22 - [postcode] => AB42 8CD - [lng] => -144.609847 - [lat] => -56.033746 - [contributor] => - ) - - [450] => Array - ( - [id] => 452 - [title] => Facility 432 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 432 - [houseNumber] => 3254 - [streetName] => Street 46 - [county] => County 1 - [town] => Town 7 - [postcode] => AB86 9CD - [lng] => -164.970583 - [lat] => 77.579757 - [contributor] => - ) - - [451] => Array - ( - [id] => 453 - [title] => Facility 433 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 433 - [houseNumber] => 1406 - [streetName] => Street 19 - [county] => County 6 - [town] => Town 24 - [postcode] => AB53 6CD - [lng] => 2.287579 - [lat] => 36.765963 - [contributor] => - ) - - [452] => Array - ( - [id] => 454 - [title] => Facility 434 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 434 - [houseNumber] => 8545 - [streetName] => Street 33 - [county] => County 16 - [town] => Town 8 - [postcode] => AB15 5CD - [lng] => 66.045892 - [lat] => -56.645953 - [contributor] => - ) - - [453] => Array - ( - [id] => 455 - [title] => Facility 435 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 435 - [houseNumber] => 7486 - [streetName] => Street 16 - [county] => County 9 - [town] => Town 32 - [postcode] => AB45 9CD - [lng] => 13.431128 - [lat] => 29.683441 - [contributor] => - ) - - [454] => Array - ( - [id] => 456 - [title] => Facility 436 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 436 - [houseNumber] => 928 - [streetName] => Street 43 - [county] => County 9 - [town] => Town 23 - [postcode] => AB70 5CD - [lng] => -67.848645 - [lat] => 0.746561 - [contributor] => - ) - - [455] => Array - ( - [id] => 457 - [title] => Facility 437 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 437 - [houseNumber] => 768 - [streetName] => Street 13 - [county] => County 4 - [town] => Town 13 - [postcode] => AB28 4CD - [lng] => -22.331544 - [lat] => 65.1536 - [contributor] => - ) - - [456] => Array - ( - [id] => 458 - [title] => Facility 438 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 438 - [houseNumber] => 7939 - [streetName] => Street 27 - [county] => County 3 - [town] => Town 43 - [postcode] => AB30 1CD - [lng] => 117.872442 - [lat] => 38.450145 - [contributor] => - ) - - [457] => Array - ( - [id] => 459 - [title] => Facility 439 - [status] => - [category] => Recycling Bins - [description] => Description for facility 439 - [houseNumber] => 9784 - [streetName] => Street 30 - [county] => County 16 - [town] => Town 30 - [postcode] => AB32 2CD - [lng] => -117.918643 - [lat] => 64.585657 - [contributor] => - ) - - [458] => Array - ( - [id] => 460 - [title] => Facility 440 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 440 - [houseNumber] => 8139 - [streetName] => Street 7 - [county] => County 10 - [town] => Town 18 - [postcode] => AB90 1CD - [lng] => -68.413773 - [lat] => 88.227995 - [contributor] => - ) - - [459] => Array - ( - [id] => 461 - [title] => Facility 441 - [status] => - [category] => Recycling Bins - [description] => Description for facility 441 - [houseNumber] => 4352 - [streetName] => Street 1 - [county] => County 6 - [town] => Town 8 - [postcode] => AB87 8CD - [lng] => -8.957451 - [lat] => 25.488189 - [contributor] => - ) - - [460] => Array - ( - [id] => 462 - [title] => Facility 442 - [status] => - [category] => Green Roofs - [description] => Description for facility 442 - [houseNumber] => 6337 - [streetName] => Street 9 - [county] => County 12 - [town] => Town 15 - [postcode] => AB47 1CD - [lng] => -91.457761 - [lat] => -80.858617 - [contributor] => - ) - - [461] => Array - ( - [id] => 463 - [title] => Facility 443 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 443 - [houseNumber] => 4119 - [streetName] => Street 6 - [county] => County 9 - [town] => Town 45 - [postcode] => AB29 3CD - [lng] => -45.804639 - [lat] => 44.776142 - [contributor] => - ) - - [462] => Array - ( - [id] => 464 - [title] => Facility 444 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 444 - [houseNumber] => 3960 - [streetName] => Street 7 - [county] => County 3 - [town] => Town 48 - [postcode] => AB65 9CD - [lng] => 17.426209 - [lat] => 11.320413 - [contributor] => - ) - - [463] => Array - ( - [id] => 465 - [title] => Facility 445 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 445 - [houseNumber] => 1440 - [streetName] => Street 19 - [county] => County 8 - [town] => Town 9 - [postcode] => AB97 9CD - [lng] => -69.741069 - [lat] => -75.296947 - [contributor] => Lee - ) - - [464] => Array - ( - [id] => 466 - [title] => Facility 446 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 446 - [houseNumber] => 259 - [streetName] => Street 23 - [county] => County 16 - [town] => Town 23 - [postcode] => AB48 4CD - [lng] => 17.301161 - [lat] => 13.611218 - [contributor] => - ) - - [465] => Array - ( - [id] => 467 - [title] => Facility 447 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 447 - [houseNumber] => 9247 - [streetName] => Street 37 - [county] => County 18 - [town] => Town 7 - [postcode] => AB40 7CD - [lng] => 135.327208 - [lat] => 74.455099 - [contributor] => - ) - - [466] => Array - ( - [id] => 468 - [title] => Facility 448 - [status] => - [category] => Green Roofs - [description] => Description for facility 448 - [houseNumber] => 1345 - [streetName] => Street 49 - [county] => County 17 - [town] => Town 8 - [postcode] => AB13 1CD - [lng] => 112.152856 - [lat] => -79.315553 - [contributor] => - ) - - [467] => Array - ( - [id] => 469 - [title] => Facility 449 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 449 - [houseNumber] => 6052 - [streetName] => Street 5 - [county] => County 12 - [town] => Town 42 - [postcode] => AB55 6CD - [lng] => -123.298229 - [lat] => -62.241584 - [contributor] => - ) - - [468] => Array - ( - [id] => 470 - [title] => Facility 450 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 450 - [houseNumber] => 164 - [streetName] => Street 14 - [county] => County 2 - [town] => Town 3 - [postcode] => AB63 1CD - [lng] => 68.98601 - [lat] => -59.227581 - [contributor] => - ) - - [469] => Array - ( - [id] => 471 - [title] => Facility 451 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 451 - [houseNumber] => 7971 - [streetName] => Street 30 - [county] => County 13 - [town] => Town 48 - [postcode] => AB89 4CD - [lng] => -25.589975 - [lat] => 43.324608 - [contributor] => - ) - - [470] => Array - ( - [id] => 472 - [title] => Facility 452 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 452 - [houseNumber] => 4070 - [streetName] => Street 9 - [county] => County 19 - [town] => Town 33 - [postcode] => AB88 1CD - [lng] => -142.893532 - [lat] => 21.580492 - [contributor] => - ) - - [471] => Array - ( - [id] => 473 - [title] => Facility 453 - [status] => - [category] => e-Scooters - [description] => Description for facility 453 - [houseNumber] => 7295 - [streetName] => Street 15 - [county] => County 6 - [town] => Town 22 - [postcode] => AB52 9CD - [lng] => -2.036789 - [lat] => 47.373509 - [contributor] => - ) - - [472] => Array - ( - [id] => 474 - [title] => Facility 454 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 454 - [houseNumber] => 7970 - [streetName] => Street 8 - [county] => County 7 - [town] => Town 15 - [postcode] => AB28 8CD - [lng] => 168.821393 - [lat] => -71.090191 - [contributor] => - ) - - [473] => Array - ( - [id] => 475 - [title] => Facility 455 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 455 - [houseNumber] => 510 - [streetName] => Street 16 - [county] => County 13 - [town] => Town 44 - [postcode] => AB11 4CD - [lng] => -58.081636 - [lat] => -52.779511 - [contributor] => - ) - - [474] => Array - ( - [id] => 476 - [title] => Facility 456 - [status] => - [category] => e-Scooters - [description] => Description for facility 456 - [houseNumber] => 4611 - [streetName] => Street 18 - [county] => County 19 - [town] => Town 3 - [postcode] => AB11 3CD - [lng] => 90.016051 - [lat] => 70.468309 - [contributor] => - ) - - [475] => Array - ( - [id] => 477 - [title] => Facility 457 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 457 - [houseNumber] => 2740 - [streetName] => Street 28 - [county] => County 1 - [town] => Town 12 - [postcode] => AB50 1CD - [lng] => -27.773179 - [lat] => 30.589425 - [contributor] => - ) - - [476] => Array - ( - [id] => 478 - [title] => Facility 458 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 458 - [houseNumber] => 4303 - [streetName] => Street 32 - [county] => County 2 - [town] => Town 43 - [postcode] => AB71 4CD - [lng] => 41.305499 - [lat] => 17.171765 - [contributor] => - ) - - [477] => Array - ( - [id] => 479 - [title] => Facility 459 - [status] => - [category] => Green Roofs - [description] => Description for facility 459 - [houseNumber] => 5638 - [streetName] => Street 41 - [county] => County 14 - [town] => Town 17 - [postcode] => AB55 1CD - [lng] => 122.397931 - [lat] => -29.980806 - [contributor] => - ) - - [478] => Array - ( - [id] => 480 - [title] => Facility 460 - [status] => - [category] => Green Roofs - [description] => Description for facility 460 - [houseNumber] => 7857 - [streetName] => Street 44 - [county] => County 8 - [town] => Town 22 - [postcode] => AB83 7CD - [lng] => -93.10953 - [lat] => -69.961651 - [contributor] => - ) - - [479] => Array - ( - [id] => 481 - [title] => Facility 461 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 461 - [houseNumber] => 792 - [streetName] => Street 11 - [county] => County 15 - [town] => Town 29 - [postcode] => AB54 3CD - [lng] => -112.373728 - [lat] => 70.336588 - [contributor] => - ) - - [480] => Array - ( - [id] => 482 - [title] => Facility 462 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 462 - [houseNumber] => 3064 - [streetName] => Street 16 - [county] => County 2 - [town] => Town 39 - [postcode] => AB81 4CD - [lng] => -81.544255 - [lat] => -66.712962 - [contributor] => - ) - - [481] => Array - ( - [id] => 483 - [title] => Facility 463 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 463 - [houseNumber] => 9828 - [streetName] => Street 36 - [county] => County 11 - [town] => Town 39 - [postcode] => AB63 3CD - [lng] => -74.812269 - [lat] => -73.201857 - [contributor] => - ) - - [482] => Array - ( - [id] => 484 - [title] => Facility 464 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 464 - [houseNumber] => 228 - [streetName] => Street 26 - [county] => County 7 - [town] => Town 4 - [postcode] => AB91 9CD - [lng] => 63.82453 - [lat] => -1.025661 - [contributor] => - ) - - [483] => Array - ( - [id] => 485 - [title] => Facility 465 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 465 - [houseNumber] => 3996 - [streetName] => Street 29 - [county] => County 4 - [town] => Town 46 - [postcode] => AB52 9CD - [lng] => -146.540536 - [lat] => -7.447467 - [contributor] => - ) - - [484] => Array - ( - [id] => 486 - [title] => Facility 466 - [status] => - [category] => Recycling Bins - [description] => Description for facility 466 - [houseNumber] => 5649 - [streetName] => Street 1 - [county] => County 4 - [town] => Town 44 - [postcode] => AB99 4CD - [lng] => -165.111343 - [lat] => 39.060193 - [contributor] => - ) - - [485] => Array - ( - [id] => 487 - [title] => Facility 467 - [status] => - [category] => e-Scooters - [description] => Description for facility 467 - [houseNumber] => 8568 - [streetName] => Street 16 - [county] => County 20 - [town] => Town 14 - [postcode] => AB48 4CD - [lng] => -64.59935 - [lat] => -44.491604 - [contributor] => - ) - - [486] => Array - ( - [id] => 488 - [title] => Facility 468 - [status] => - [category] => Recycling Bins - [description] => Description for facility 468 - [houseNumber] => 1052 - [streetName] => Street 1 - [county] => County 8 - [town] => Town 42 - [postcode] => AB32 9CD - [lng] => -86.292012 - [lat] => -54.206993 - [contributor] => - ) - - [487] => Array - ( - [id] => 489 - [title] => Facility 469 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 469 - [houseNumber] => 2561 - [streetName] => Street 13 - [county] => County 11 - [town] => Town 34 - [postcode] => AB77 3CD - [lng] => 163.908804 - [lat] => 37.467672 - [contributor] => - ) - - [488] => Array - ( - [id] => 490 - [title] => Facility 470 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 470 - [houseNumber] => 4418 - [streetName] => Street 30 - [county] => County 16 - [town] => Town 5 - [postcode] => AB93 5CD - [lng] => -161.671939 - [lat] => 22.996855 - [contributor] => - ) - - [489] => Array - ( - [id] => 491 - [title] => Facility 471 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 471 - [houseNumber] => 4994 - [streetName] => Street 4 - [county] => County 7 - [town] => Town 4 - [postcode] => AB65 4CD - [lng] => -6.933738 - [lat] => 1.873009 - [contributor] => - ) - - [490] => Array - ( - [id] => 492 - [title] => Facility 472 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 472 - [houseNumber] => 7714 - [streetName] => Street 22 - [county] => County 18 - [town] => Town 12 - [postcode] => AB36 7CD - [lng] => -26.225352 - [lat] => 20.19245 - [contributor] => - ) - - [491] => Array - ( - [id] => 493 - [title] => Facility 473 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 473 - [houseNumber] => 805 - [streetName] => Street 50 - [county] => County 8 - [town] => Town 4 - [postcode] => AB12 3CD - [lng] => 70.50402 - [lat] => 40.774729 - [contributor] => - ) - - [492] => Array - ( - [id] => 494 - [title] => Facility 474 - [status] => - [category] => Recycling Bins - [description] => Description for facility 474 - [houseNumber] => 5276 - [streetName] => Street 48 - [county] => County 16 - [town] => Town 4 - [postcode] => AB25 2CD - [lng] => -125.694829 - [lat] => -7.748693 - [contributor] => - ) - - [493] => Array - ( - [id] => 495 - [title] => Facility 475 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 475 - [houseNumber] => 2667 - [streetName] => Street 33 - [county] => County 18 - [town] => Town 48 - [postcode] => AB62 8CD - [lng] => 14.861248 - [lat] => 14.722062 - [contributor] => - ) - - [494] => Array - ( - [id] => 496 - [title] => Facility 476 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 476 - [houseNumber] => 7570 - [streetName] => Street 32 - [county] => County 15 - [town] => Town 50 - [postcode] => AB92 1CD - [lng] => -21.783072 - [lat] => 57.812881 - [contributor] => - ) - - [495] => Array - ( - [id] => 497 - [title] => Facility 477 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 477 - [houseNumber] => 1345 - [streetName] => Street 34 - [county] => County 8 - [town] => Town 4 - [postcode] => AB45 7CD - [lng] => 30.119521 - [lat] => 21.682876 - [contributor] => - ) - - [496] => Array - ( - [id] => 498 - [title] => Facility 478 - [status] => - [category] => Recycling Bins - [description] => Description for facility 478 - [houseNumber] => 7505 - [streetName] => Street 7 - [county] => County 14 - [town] => Town 3 - [postcode] => AB82 8CD - [lng] => -67.492502 - [lat] => 5.896094 - [contributor] => - ) - - [497] => Array - ( - [id] => 499 - [title] => Facility 479 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 479 - [houseNumber] => 1128 - [streetName] => Street 36 - [county] => County 16 - [town] => Town 28 - [postcode] => AB30 4CD - [lng] => 105.104164 - [lat] => -9.029654 - [contributor] => - ) - - [498] => Array - ( - [id] => 500 - [title] => Facility 480 - [status] => - [category] => Recycling Bins - [description] => Description for facility 480 - [houseNumber] => 740 - [streetName] => Street 44 - [county] => County 9 - [town] => Town 37 - [postcode] => AB58 9CD - [lng] => 168.728437 - [lat] => -47.35764 - [contributor] => - ) - - [499] => Array - ( - [id] => 501 - [title] => Facility 481 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 481 - [houseNumber] => 8453 - [streetName] => Street 26 - [county] => County 19 - [town] => Town 49 - [postcode] => AB46 7CD - [lng] => -109.70121 - [lat] => -69.716064 - [contributor] => - ) - - [500] => Array - ( - [id] => 502 - [title] => Facility 482 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 482 - [houseNumber] => 2322 - [streetName] => Street 46 - [county] => County 20 - [town] => Town 46 - [postcode] => AB62 3CD - [lng] => 33.86255 - [lat] => -37.017202 - [contributor] => - ) - - [501] => Array - ( - [id] => 503 - [title] => Facility 483 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 483 - [houseNumber] => 8727 - [streetName] => Street 43 - [county] => County 10 - [town] => Town 33 - [postcode] => AB78 1CD - [lng] => -36.287821 - [lat] => 38.019022 - [contributor] => - ) - - [502] => Array - ( - [id] => 504 - [title] => Facility 484 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 484 - [houseNumber] => 2941 - [streetName] => Street 28 - [county] => County 17 - [town] => Town 14 - [postcode] => AB80 6CD - [lng] => 176.900673 - [lat] => -16.766391 - [contributor] => - ) - - [503] => Array - ( - [id] => 505 - [title] => Facility 485 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 485 - [houseNumber] => 5110 - [streetName] => Street 15 - [county] => County 13 - [town] => Town 19 - [postcode] => AB23 4CD - [lng] => 178.808578 - [lat] => 24.737126 - [contributor] => - ) - - [504] => Array - ( - [id] => 506 - [title] => Facility 486 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 486 - [houseNumber] => 3054 - [streetName] => Street 44 - [county] => County 7 - [town] => Town 19 - [postcode] => AB23 6CD - [lng] => -106.648178 - [lat] => -43.875038 - [contributor] => - ) - - [505] => Array - ( - [id] => 507 - [title] => Facility 487 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 487 - [houseNumber] => 1130 - [streetName] => Street 14 - [county] => County 11 - [town] => Town 10 - [postcode] => AB74 6CD - [lng] => -121.650442 - [lat] => -42.176152 - [contributor] => - ) - - [506] => Array - ( - [id] => 508 - [title] => Facility 488 - [status] => - [category] => e-Scooters - [description] => Description for facility 488 - [houseNumber] => 1003 - [streetName] => Street 14 - [county] => County 19 - [town] => Town 48 - [postcode] => AB96 7CD - [lng] => 173.525745 - [lat] => -0.221439 - [contributor] => - ) - - [507] => Array - ( - [id] => 509 - [title] => Facility 489 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 489 - [houseNumber] => 270 - [streetName] => Street 2 - [county] => County 17 - [town] => Town 7 - [postcode] => AB51 3CD - [lng] => 133.343734 - [lat] => -5.235752 - [contributor] => - ) - - [508] => Array - ( - [id] => 510 - [title] => Facility 490 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 490 - [houseNumber] => 9960 - [streetName] => Street 39 - [county] => County 11 - [town] => Town 17 - [postcode] => AB45 6CD - [lng] => -88.186153 - [lat] => -63.758795 - [contributor] => - ) - - [509] => Array - ( - [id] => 511 - [title] => Facility 491 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 491 - [houseNumber] => 9561 - [streetName] => Street 10 - [county] => County 8 - [town] => Town 24 - [postcode] => AB32 9CD - [lng] => 118.982223 - [lat] => 10.896658 - [contributor] => - ) - - [510] => Array - ( - [id] => 512 - [title] => Facility 492 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 492 - [houseNumber] => 3544 - [streetName] => Street 12 - [county] => County 10 - [town] => Town 4 - [postcode] => AB70 3CD - [lng] => -2.657448 - [lat] => 46.940861 - [contributor] => - ) - - [511] => Array - ( - [id] => 513 - [title] => Facility 493 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 493 - [houseNumber] => 4935 - [streetName] => Street 34 - [county] => County 3 - [town] => Town 14 - [postcode] => AB21 3CD - [lng] => -15.819101 - [lat] => 6.503917 - [contributor] => - ) - - [512] => Array - ( - [id] => 514 - [title] => Facility 494 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 494 - [houseNumber] => 9321 - [streetName] => Street 15 - [county] => County 6 - [town] => Town 4 - [postcode] => AB19 2CD - [lng] => 174.822892 - [lat] => 69.426836 - [contributor] => - ) - - [513] => Array - ( - [id] => 515 - [title] => Facility 495 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 495 - [houseNumber] => 8165 - [streetName] => Street 36 - [county] => County 2 - [town] => Town 42 - [postcode] => AB57 2CD - [lng] => 112.69644 - [lat] => 35.807825 - [contributor] => - ) - - [514] => Array - ( - [id] => 516 - [title] => Facility 496 - [status] => - [category] => e-Scooters - [description] => Description for facility 496 - [houseNumber] => 2389 - [streetName] => Street 47 - [county] => County 18 - [town] => Town 43 - [postcode] => AB68 4CD - [lng] => 43.906005 - [lat] => -77.049355 - [contributor] => - ) - - [515] => Array - ( - [id] => 517 - [title] => Facility 497 - [status] => - [category] => Recycling Bins - [description] => Description for facility 497 - [houseNumber] => 6867 - [streetName] => Street 31 - [county] => County 7 - [town] => Town 43 - [postcode] => AB78 5CD - [lng] => 168.449777 - [lat] => -60.419133 - [contributor] => - ) - - [516] => Array - ( - [id] => 518 - [title] => Facility 498 - [status] => - [category] => Green Roofs - [description] => Description for facility 498 - [houseNumber] => 3880 - [streetName] => Street 44 - [county] => County 8 - [town] => Town 15 - [postcode] => AB76 1CD - [lng] => 76.104191 - [lat] => 64.823282 - [contributor] => - ) - - [517] => Array - ( - [id] => 519 - [title] => Facility 499 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 499 - [houseNumber] => 5559 - [streetName] => Street 33 - [county] => County 3 - [town] => Town 46 - [postcode] => AB37 2CD - [lng] => 61.354499 - [lat] => 37.623334 - [contributor] => - ) - - [518] => Array - ( - [id] => 520 - [title] => Facility 500 - [status] => - [category] => e-Scooters - [description] => Description for facility 500 - [houseNumber] => 8895 - [streetName] => Street 20 - [county] => County 1 - [town] => Town 45 - [postcode] => AB71 2CD - [lng] => 87.682492 - [lat] => 76.108908 - [contributor] => - ) - - [519] => Array - ( - [id] => 521 - [title] => Facility 501 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 501 - [houseNumber] => 1854 - [streetName] => Street 28 - [county] => County 1 - [town] => Town 21 - [postcode] => AB58 8CD - [lng] => -93.335373 - [lat] => 55.011405 - [contributor] => - ) - - [520] => Array - ( - [id] => 522 - [title] => Facility 502 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 502 - [houseNumber] => 7307 - [streetName] => Street 50 - [county] => County 9 - [town] => Town 18 - [postcode] => AB83 7CD - [lng] => -31.867658 - [lat] => 9.780445 - [contributor] => - ) - - [521] => Array - ( - [id] => 523 - [title] => Facility 503 - [status] => - [category] => Green Roofs - [description] => Description for facility 503 - [houseNumber] => 8382 - [streetName] => Street 42 - [county] => County 16 - [town] => Town 27 - [postcode] => AB80 8CD - [lng] => -27.015884 - [lat] => 73.418226 - [contributor] => - ) - - [522] => Array - ( - [id] => 524 - [title] => Facility 504 - [status] => - [category] => Green Roofs - [description] => Description for facility 504 - [houseNumber] => 1149 - [streetName] => Street 40 - [county] => County 18 - [town] => Town 28 - [postcode] => AB42 5CD - [lng] => -74.861606 - [lat] => 24.829108 - [contributor] => - ) - - [523] => Array - ( - [id] => 525 - [title] => Facility 505 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 505 - [houseNumber] => 7680 - [streetName] => Street 40 - [county] => County 12 - [town] => Town 10 - [postcode] => AB42 5CD - [lng] => 159.882718 - [lat] => 34.5203 - [contributor] => - ) - - [524] => Array - ( - [id] => 526 - [title] => Facility 506 - [status] => - [category] => Recycling Bins - [description] => Description for facility 506 - [houseNumber] => 4363 - [streetName] => Street 24 - [county] => County 19 - [town] => Town 10 - [postcode] => AB61 1CD - [lng] => -72.772845 - [lat] => -22.636813 - [contributor] => - ) - - [525] => Array - ( - [id] => 527 - [title] => Facility 507 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 507 - [houseNumber] => 7596 - [streetName] => Street 44 - [county] => County 2 - [town] => Town 16 - [postcode] => AB26 7CD - [lng] => -164.783299 - [lat] => 28.546382 - [contributor] => - ) - - [526] => Array - ( - [id] => 528 - [title] => Facility 508 - [status] => - [category] => e-Scooters - [description] => Description for facility 508 - [houseNumber] => 3484 - [streetName] => Street 30 - [county] => County 9 - [town] => Town 45 - [postcode] => AB48 1CD - [lng] => 7.371677 - [lat] => 77.612591 - [contributor] => - ) - - [527] => Array - ( - [id] => 529 - [title] => Facility 509 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 509 - [houseNumber] => 3942 - [streetName] => Street 50 - [county] => County 10 - [town] => Town 40 - [postcode] => AB49 1CD - [lng] => -173.22496 - [lat] => 55.130633 - [contributor] => - ) - - [528] => Array - ( - [id] => 530 - [title] => Facility 510 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 510 - [houseNumber] => 6960 - [streetName] => Street 25 - [county] => County 18 - [town] => Town 22 - [postcode] => AB96 8CD - [lng] => 93.162968 - [lat] => 12.612466 - [contributor] => - ) - - [529] => Array - ( - [id] => 531 - [title] => Facility 511 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 511 - [houseNumber] => 9036 - [streetName] => Street 42 - [county] => County 4 - [town] => Town 21 - [postcode] => AB83 8CD - [lng] => 32.803135 - [lat] => 8.10714 - [contributor] => - ) - - [530] => Array - ( - [id] => 532 - [title] => Facility 512 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 512 - [houseNumber] => 5965 - [streetName] => Street 43 - [county] => County 20 - [town] => Town 21 - [postcode] => AB67 1CD - [lng] => -42.856504 - [lat] => 75.614189 - [contributor] => Admin - ) - - [531] => Array - ( - [id] => 533 - [title] => Facility 513 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 513 - [houseNumber] => 8299 - [streetName] => Street 4 - [county] => County 20 - [town] => Town 14 - [postcode] => AB75 2CD - [lng] => -57.993067 - [lat] => 61.754853 - [contributor] => - ) - - [532] => Array - ( - [id] => 534 - [title] => Facility 514 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 514 - [houseNumber] => 6956 - [streetName] => Street 6 - [county] => County 10 - [town] => Town 31 - [postcode] => AB32 7CD - [lng] => -141.125024 - [lat] => -56.540778 - [contributor] => - ) - - [533] => Array - ( - [id] => 535 - [title] => Facility 515 - [status] => - [category] => e-Scooters - [description] => Description for facility 515 - [houseNumber] => 958 - [streetName] => Street 21 - [county] => County 15 - [town] => Town 19 - [postcode] => AB28 9CD - [lng] => 60.729651 - [lat] => 20.527764 - [contributor] => - ) - - [534] => Array - ( - [id] => 536 - [title] => Facility 516 - [status] => - [category] => Green Roofs - [description] => Description for facility 516 - [houseNumber] => 6577 - [streetName] => Street 24 - [county] => County 6 - [town] => Town 43 - [postcode] => AB46 4CD - [lng] => 40.927886 - [lat] => 25.831733 - [contributor] => - ) - - [535] => Array - ( - [id] => 537 - [title] => Facility 517 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 517 - [houseNumber] => 7300 - [streetName] => Street 1 - [county] => County 10 - [town] => Town 14 - [postcode] => AB63 3CD - [lng] => 157.04365 - [lat] => -27.621307 - [contributor] => - ) - - [536] => Array - ( - [id] => 538 - [title] => Facility 518 - [status] => - [category] => e-Scooters - [description] => Description for facility 518 - [houseNumber] => 2490 - [streetName] => Street 30 - [county] => County 14 - [town] => Town 34 - [postcode] => AB14 5CD - [lng] => -69.413943 - [lat] => -82.564354 - [contributor] => - ) - - [537] => Array - ( - [id] => 539 - [title] => Facility 519 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 519 - [houseNumber] => 7173 - [streetName] => Street 1 - [county] => County 4 - [town] => Town 21 - [postcode] => AB15 2CD - [lng] => 104.370471 - [lat] => -76.522868 - [contributor] => - ) - - [538] => Array - ( - [id] => 540 - [title] => Facility 520 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 520 - [houseNumber] => 4255 - [streetName] => Street 48 - [county] => County 3 - [town] => Town 21 - [postcode] => AB10 4CD - [lng] => 157.845176 - [lat] => -56.646673 - [contributor] => - ) - - [539] => Array - ( - [id] => 541 - [title] => Facility 521 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 521 - [houseNumber] => 4103 - [streetName] => Street 26 - [county] => County 13 - [town] => Town 10 - [postcode] => AB47 2CD - [lng] => 134.508228 - [lat] => 63.864875 - [contributor] => - ) - - [540] => Array - ( - [id] => 542 - [title] => Facility 522 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 522 - [houseNumber] => 8274 - [streetName] => Street 17 - [county] => County 20 - [town] => Town 31 - [postcode] => AB21 1CD - [lng] => 41.539248 - [lat] => -55.296509 - [contributor] => - ) - - [541] => Array - ( - [id] => 543 - [title] => Facility 523 - [status] => - [category] => Recycling Bins - [description] => Description for facility 523 - [houseNumber] => 1993 - [streetName] => Street 8 - [county] => County 15 - [town] => Town 4 - [postcode] => AB93 2CD - [lng] => -20.648137 - [lat] => 49.737702 - [contributor] => - ) - - [542] => Array - ( - [id] => 544 - [title] => Facility 524 - [status] => - [category] => e-Scooters - [description] => Description for facility 524 - [houseNumber] => 4481 - [streetName] => Street 43 - [county] => County 3 - [town] => Town 40 - [postcode] => AB69 2CD - [lng] => 84.550047 - [lat] => -72.600341 - [contributor] => - ) - - [543] => Array - ( - [id] => 545 - [title] => Facility 525 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 525 - [houseNumber] => 1661 - [streetName] => Street 19 - [county] => County 1 - [town] => Town 23 - [postcode] => AB31 8CD - [lng] => -163.56981 - [lat] => 14.199205 - [contributor] => - ) - - [544] => Array - ( - [id] => 546 - [title] => Facility 526 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 526 - [houseNumber] => 4784 - [streetName] => Street 11 - [county] => County 17 - [town] => Town 31 - [postcode] => AB40 7CD - [lng] => -97.162307 - [lat] => 60.801151 - [contributor] => - ) - - [545] => Array - ( - [id] => 547 - [title] => Facility 527 - [status] => - [category] => Green Roofs - [description] => Description for facility 527 - [houseNumber] => 5312 - [streetName] => Street 45 - [county] => County 11 - [town] => Town 10 - [postcode] => AB50 1CD - [lng] => 42.288221 - [lat] => 75.203222 - [contributor] => - ) - - [546] => Array - ( - [id] => 548 - [title] => Facility 528 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 528 - [houseNumber] => 3096 - [streetName] => Street 17 - [county] => County 8 - [town] => Town 15 - [postcode] => AB84 8CD - [lng] => -166.705844 - [lat] => 42.786264 - [contributor] => - ) - - [547] => Array - ( - [id] => 549 - [title] => Facility 529 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 529 - [houseNumber] => 7235 - [streetName] => Street 43 - [county] => County 13 - [town] => Town 24 - [postcode] => AB60 6CD - [lng] => 71.865702 - [lat] => 88.095306 - [contributor] => - ) - - [548] => Array - ( - [id] => 550 - [title] => Facility 530 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 530 - [houseNumber] => 2371 - [streetName] => Street 26 - [county] => County 17 - [town] => Town 18 - [postcode] => AB47 5CD - [lng] => 80.698918 - [lat] => -2.257133 - [contributor] => - ) - - [549] => Array - ( - [id] => 551 - [title] => Facility 531 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 531 - [houseNumber] => 5498 - [streetName] => Street 45 - [county] => County 14 - [town] => Town 41 - [postcode] => AB30 6CD - [lng] => 0.319403 - [lat] => -34.698425 - [contributor] => - ) - - [550] => Array - ( - [id] => 552 - [title] => Facility 532 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 532 - [houseNumber] => 8945 - [streetName] => Street 37 - [county] => County 20 - [town] => Town 48 - [postcode] => AB90 3CD - [lng] => 162.82416 - [lat] => 14.303894 - [contributor] => - ) - - [551] => Array - ( - [id] => 553 - [title] => Facility 533 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 533 - [houseNumber] => 5387 - [streetName] => Street 24 - [county] => County 11 - [town] => Town 12 - [postcode] => AB58 6CD - [lng] => 110.070231 - [lat] => 70.62901 - [contributor] => - ) - - [552] => Array - ( - [id] => 554 - [title] => Facility 534 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 534 - [houseNumber] => 290 - [streetName] => Street 5 - [county] => County 17 - [town] => Town 31 - [postcode] => AB38 5CD - [lng] => 169.333032 - [lat] => 35.805063 - [contributor] => - ) - - [553] => Array - ( - [id] => 555 - [title] => Facility 535 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 535 - [houseNumber] => 5042 - [streetName] => Street 41 - [county] => County 13 - [town] => Town 39 - [postcode] => AB49 5CD - [lng] => -142.501495 - [lat] => 1.932536 - [contributor] => - ) - - [554] => Array - ( - [id] => 556 - [title] => Facility 536 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 536 - [houseNumber] => 4432 - [streetName] => Street 6 - [county] => County 1 - [town] => Town 8 - [postcode] => AB17 8CD - [lng] => 140.266571 - [lat] => -28.940244 - [contributor] => - ) - - [555] => Array - ( - [id] => 557 - [title] => Facility 537 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 537 - [houseNumber] => 8280 - [streetName] => Street 23 - [county] => County 10 - [town] => Town 15 - [postcode] => AB64 4CD - [lng] => -155.473289 - [lat] => -77.43041 - [contributor] => - ) - - [556] => Array - ( - [id] => 558 - [title] => Facility 538 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 538 - [houseNumber] => 7988 - [streetName] => Street 42 - [county] => County 3 - [town] => Town 14 - [postcode] => AB84 9CD - [lng] => -143.991571 - [lat] => -62.087473 - [contributor] => - ) - - [557] => Array - ( - [id] => 559 - [title] => Facility 539 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 539 - [houseNumber] => 7377 - [streetName] => Street 30 - [county] => County 14 - [town] => Town 49 - [postcode] => AB55 7CD - [lng] => 61.820853 - [lat] => -42.578505 - [contributor] => - ) - - [558] => Array - ( - [id] => 560 - [title] => Facility 540 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 540 - [houseNumber] => 2607 - [streetName] => Street 13 - [county] => County 7 - [town] => Town 5 - [postcode] => AB22 9CD - [lng] => -170.346331 - [lat] => -61.633256 - [contributor] => - ) - - [559] => Array - ( - [id] => 561 - [title] => Facility 541 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 541 - [houseNumber] => 1406 - [streetName] => Street 3 - [county] => County 5 - [town] => Town 33 - [postcode] => AB13 9CD - [lng] => 126.682559 - [lat] => -75.934096 - [contributor] => - ) - - [560] => Array - ( - [id] => 562 - [title] => Facility 542 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 542 - [houseNumber] => 4860 - [streetName] => Street 7 - [county] => County 12 - [town] => Town 40 - [postcode] => AB53 3CD - [lng] => -109.440094 - [lat] => -23.77603 - [contributor] => Admin - ) - - [561] => Array - ( - [id] => 563 - [title] => Facility 543 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 543 - [houseNumber] => 3293 - [streetName] => Street 32 - [county] => County 10 - [town] => Town 6 - [postcode] => AB96 8CD - [lng] => 92.152371 - [lat] => -63.274295 - [contributor] => - ) - - [562] => Array - ( - [id] => 564 - [title] => Facility 544 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 544 - [houseNumber] => 2944 - [streetName] => Street 15 - [county] => County 9 - [town] => Town 44 - [postcode] => AB94 6CD - [lng] => -136.785543 - [lat] => 30.871389 - [contributor] => - ) - - [563] => Array - ( - [id] => 565 - [title] => Facility 545 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 545 - [houseNumber] => 2828 - [streetName] => Street 31 - [county] => County 1 - [town] => Town 35 - [postcode] => AB86 2CD - [lng] => 149.424694 - [lat] => -19.286275 - [contributor] => - ) - - [564] => Array - ( - [id] => 566 - [title] => Facility 546 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 546 - [houseNumber] => 475 - [streetName] => Street 2 - [county] => County 13 - [town] => Town 3 - [postcode] => AB94 6CD - [lng] => 98.871965 - [lat] => -62.203234 - [contributor] => - ) - - [565] => Array - ( - [id] => 567 - [title] => Facility 547 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 547 - [houseNumber] => 382 - [streetName] => Street 24 - [county] => County 7 - [town] => Town 23 - [postcode] => AB92 8CD - [lng] => -93.297333 - [lat] => 68.540414 - [contributor] => - ) - - [566] => Array - ( - [id] => 568 - [title] => Facility 548 - [status] => - [category] => Green Roofs - [description] => Description for facility 548 - [houseNumber] => 6163 - [streetName] => Street 25 - [county] => County 17 - [town] => Town 27 - [postcode] => AB25 3CD - [lng] => -6.12332 - [lat] => 22.59048 - [contributor] => - ) - - [567] => Array - ( - [id] => 569 - [title] => Facility 549 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 549 - [houseNumber] => 4907 - [streetName] => Street 21 - [county] => County 18 - [town] => Town 46 - [postcode] => AB86 8CD - [lng] => -140.072715 - [lat] => 7.50231 - [contributor] => - ) - - [568] => Array - ( - [id] => 570 - [title] => Facility 550 - [status] => - [category] => Recycling Bins - [description] => Description for facility 550 - [houseNumber] => 4185 - [streetName] => Street 1 - [county] => County 20 - [town] => Town 8 - [postcode] => AB35 7CD - [lng] => 165.850029 - [lat] => 54.836863 - [contributor] => - ) - - [569] => Array - ( - [id] => 571 - [title] => Facility 551 - [status] => - [category] => Recycling Bins - [description] => Description for facility 551 - [houseNumber] => 4367 - [streetName] => Street 16 - [county] => County 3 - [town] => Town 31 - [postcode] => AB91 1CD - [lng] => 154.145763 - [lat] => 3.653598 - [contributor] => - ) - - [570] => Array - ( - [id] => 572 - [title] => Facility 552 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 552 - [houseNumber] => 244 - [streetName] => Street 5 - [county] => County 3 - [town] => Town 3 - [postcode] => AB28 6CD - [lng] => -149.326392 - [lat] => -1.842649 - [contributor] => - ) - - [571] => Array - ( - [id] => 573 - [title] => Facility 553 - [status] => - [category] => e-Scooters - [description] => Description for facility 553 - [houseNumber] => 1472 - [streetName] => Street 21 - [county] => County 20 - [town] => Town 27 - [postcode] => AB19 4CD - [lng] => 91.804441 - [lat] => 15.245274 - [contributor] => - ) - - [572] => Array - ( - [id] => 574 - [title] => Facility 554 - [status] => - [category] => Recycling Bins - [description] => Description for facility 554 - [houseNumber] => 6645 - [streetName] => Street 45 - [county] => County 8 - [town] => Town 35 - [postcode] => AB10 7CD - [lng] => 111.317383 - [lat] => -12.38809 - [contributor] => - ) - - [573] => Array - ( - [id] => 575 - [title] => Facility 555 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 555 - [houseNumber] => 2734 - [streetName] => Street 29 - [county] => County 19 - [town] => Town 39 - [postcode] => AB78 8CD - [lng] => -14.37938 - [lat] => 49.507781 - [contributor] => - ) - - [574] => Array - ( - [id] => 576 - [title] => Facility 556 - [status] => - [category] => e-Scooters - [description] => Description for facility 556 - [houseNumber] => 9574 - [streetName] => Street 50 - [county] => County 13 - [town] => Town 25 - [postcode] => AB75 9CD - [lng] => 160.261169 - [lat] => -21.232478 - [contributor] => - ) - - [575] => Array - ( - [id] => 577 - [title] => Facility 557 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 557 - [houseNumber] => 9916 - [streetName] => Street 30 - [county] => County 11 - [town] => Town 31 - [postcode] => AB45 3CD - [lng] => -99.878355 - [lat] => 10.377622 - [contributor] => Admin - ) - - [576] => Array - ( - [id] => 578 - [title] => Facility 558 - [status] => - [category] => e-Scooters - [description] => Description for facility 558 - [houseNumber] => 3547 - [streetName] => Street 14 - [county] => County 8 - [town] => Town 20 - [postcode] => AB94 3CD - [lng] => 102.489027 - [lat] => 9.404947 - [contributor] => - ) - - [577] => Array - ( - [id] => 579 - [title] => Facility 559 - [status] => - [category] => e-Scooters - [description] => Description for facility 559 - [houseNumber] => 7393 - [streetName] => Street 1 - [county] => County 12 - [town] => Town 44 - [postcode] => AB73 5CD - [lng] => -3.413388 - [lat] => -32.43469 - [contributor] => Benny - ) - - [578] => Array - ( - [id] => 580 - [title] => Facility 560 - [status] => - [category] => Recycling Bins - [description] => Description for facility 560 - [houseNumber] => 4291 - [streetName] => Street 5 - [county] => County 8 - [town] => Town 14 - [postcode] => AB53 3CD - [lng] => -77.332232 - [lat] => 75.960277 - [contributor] => - ) - - [579] => Array - ( - [id] => 581 - [title] => Facility 561 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 561 - [houseNumber] => 2121 - [streetName] => Street 28 - [county] => County 7 - [town] => Town 23 - [postcode] => AB66 9CD - [lng] => -160.103066 - [lat] => -88.486496 - [contributor] => - ) - - [580] => Array - ( - [id] => 582 - [title] => Facility 562 - [status] => - [category] => Green Roofs - [description] => Description for facility 562 - [houseNumber] => 702 - [streetName] => Street 10 - [county] => County 20 - [town] => Town 38 - [postcode] => AB15 3CD - [lng] => -66.990506 - [lat] => -58.820822 - [contributor] => - ) - - [581] => Array - ( - [id] => 583 - [title] => Facility 563 - [status] => - [category] => e-Scooters - [description] => Description for facility 563 - [houseNumber] => 1425 - [streetName] => Street 36 - [county] => County 9 - [town] => Town 26 - [postcode] => AB10 7CD - [lng] => -158.063377 - [lat] => 79.575682 - [contributor] => - ) - - [582] => Array - ( - [id] => 584 - [title] => Facility 564 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 564 - [houseNumber] => 302 - [streetName] => Street 3 - [county] => County 1 - [town] => Town 28 - [postcode] => AB68 8CD - [lng] => 24.342689 - [lat] => 20.353329 - [contributor] => - ) - - [583] => Array - ( - [id] => 585 - [title] => Facility 565 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 565 - [houseNumber] => 524 - [streetName] => Street 26 - [county] => County 7 - [town] => Town 21 - [postcode] => AB67 1CD - [lng] => -71.394975 - [lat] => 82.937612 - [contributor] => - ) - - [584] => Array - ( - [id] => 586 - [title] => Facility 566 - [status] => - [category] => e-Scooters - [description] => Description for facility 566 - [houseNumber] => 3341 - [streetName] => Street 38 - [county] => County 3 - [town] => Town 8 - [postcode] => AB49 5CD - [lng] => -124.584013 - [lat] => -38.20608 - [contributor] => - ) - - [585] => Array - ( - [id] => 587 - [title] => Facility 567 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 567 - [houseNumber] => 609 - [streetName] => Street 47 - [county] => County 6 - [town] => Town 7 - [postcode] => AB26 6CD - [lng] => 95.929091 - [lat] => 19.767278 - [contributor] => - ) - - [586] => Array - ( - [id] => 588 - [title] => Facility 568 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 568 - [houseNumber] => 6829 - [streetName] => Street 6 - [county] => County 20 - [town] => Town 22 - [postcode] => AB89 4CD - [lng] => -40.6604 - [lat] => -49.085613 - [contributor] => - ) - - [587] => Array - ( - [id] => 589 - [title] => Facility 569 - [status] => - [category] => Green Roofs - [description] => Description for facility 569 - [houseNumber] => 7162 - [streetName] => Street 48 - [county] => County 10 - [town] => Town 8 - [postcode] => AB76 9CD - [lng] => -151.296054 - [lat] => 65.72638 - [contributor] => - ) - - [588] => Array - ( - [id] => 590 - [title] => Facility 570 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 570 - [houseNumber] => 9347 - [streetName] => Street 40 - [county] => County 5 - [town] => Town 26 - [postcode] => AB11 5CD - [lng] => 93.980533 - [lat] => 15.145576 - [contributor] => - ) - - [589] => Array - ( - [id] => 591 - [title] => Facility 571 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 571 - [houseNumber] => 2920 - [streetName] => Street 15 - [county] => County 14 - [town] => Town 39 - [postcode] => AB47 8CD - [lng] => -92.893386 - [lat] => 27.551127 - [contributor] => - ) - - [590] => Array - ( - [id] => 592 - [title] => Facility 572 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 572 - [houseNumber] => 3881 - [streetName] => Street 9 - [county] => County 13 - [town] => Town 35 - [postcode] => AB67 7CD - [lng] => 169.708107 - [lat] => 80.293207 - [contributor] => - ) - - [591] => Array - ( - [id] => 593 - [title] => Facility 573 - [status] => - [category] => e-Scooters - [description] => Description for facility 573 - [houseNumber] => 9175 - [streetName] => Street 1 - [county] => County 18 - [town] => Town 35 - [postcode] => AB68 1CD - [lng] => 118.258076 - [lat] => 39.733728 - [contributor] => - ) - - [592] => Array - ( - [id] => 594 - [title] => Facility 574 - [status] => - [category] => Recycling Bins - [description] => Description for facility 574 - [houseNumber] => 6172 - [streetName] => Street 7 - [county] => County 17 - [town] => Town 20 - [postcode] => AB21 1CD - [lng] => -31.402525 - [lat] => -83.160452 - [contributor] => - ) - - [593] => Array - ( - [id] => 595 - [title] => Facility 575 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 575 - [houseNumber] => 1313 - [streetName] => Street 1 - [county] => County 3 - [town] => Town 3 - [postcode] => AB32 8CD - [lng] => 89.00321 - [lat] => -88.135124 - [contributor] => - ) - - [594] => Array - ( - [id] => 596 - [title] => Facility 576 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 576 - [houseNumber] => 9753 - [streetName] => Street 50 - [county] => County 12 - [town] => Town 46 - [postcode] => AB67 6CD - [lng] => -52.685878 - [lat] => -8.076028 - [contributor] => - ) - - [595] => Array - ( - [id] => 597 - [title] => Facility 577 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 577 - [houseNumber] => 6404 - [streetName] => Street 32 - [county] => County 7 - [town] => Town 10 - [postcode] => AB10 2CD - [lng] => 170.397263 - [lat] => 19.683503 - [contributor] => - ) - - [596] => Array - ( - [id] => 598 - [title] => Facility 578 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 578 - [houseNumber] => 6893 - [streetName] => Street 14 - [county] => County 10 - [town] => Town 45 - [postcode] => AB82 5CD - [lng] => -58.516479 - [lat] => 71.033669 - [contributor] => - ) - - [597] => Array - ( - [id] => 599 - [title] => Facility 579 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 579 - [houseNumber] => 7862 - [streetName] => Street 42 - [county] => County 10 - [town] => Town 13 - [postcode] => AB58 6CD - [lng] => 87.06302 - [lat] => -32.340236 - [contributor] => - ) - - [598] => Array - ( - [id] => 600 - [title] => Facility 580 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 580 - [houseNumber] => 3654 - [streetName] => Street 34 - [county] => County 10 - [town] => Town 38 - [postcode] => AB57 4CD - [lng] => -63.112731 - [lat] => -13.310375 - [contributor] => - ) - - [599] => Array - ( - [id] => 601 - [title] => Facility 581 - [status] => - [category] => Recycling Bins - [description] => Description for facility 581 - [houseNumber] => 4599 - [streetName] => Street 12 - [county] => County 6 - [town] => Town 42 - [postcode] => AB15 9CD - [lng] => -51.029367 - [lat] => -41.461237 - [contributor] => - ) - - [600] => Array - ( - [id] => 602 - [title] => Facility 582 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 582 - [houseNumber] => 4927 - [streetName] => Street 24 - [county] => County 17 - [town] => Town 29 - [postcode] => AB17 6CD - [lng] => 115.685265 - [lat] => -7.259088 - [contributor] => - ) - - [601] => Array - ( - [id] => 603 - [title] => Facility 583 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 583 - [houseNumber] => 7274 - [streetName] => Street 33 - [county] => County 10 - [town] => Town 48 - [postcode] => AB43 4CD - [lng] => -115.410538 - [lat] => -64.848958 - [contributor] => - ) - - [602] => Array - ( - [id] => 604 - [title] => Facility 584 - [status] => - [category] => e-Scooters - [description] => Description for facility 584 - [houseNumber] => 3252 - [streetName] => Street 31 - [county] => County 7 - [town] => Town 12 - [postcode] => AB68 5CD - [lng] => 23.871044 - [lat] => -26.553518 - [contributor] => - ) - - [603] => Array - ( - [id] => 605 - [title] => Facility 585 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 585 - [houseNumber] => 4411 - [streetName] => Street 5 - [county] => County 12 - [town] => Town 10 - [postcode] => AB46 2CD - [lng] => 50.524638 - [lat] => -29.043049 - [contributor] => - ) - - [604] => Array - ( - [id] => 606 - [title] => Facility 586 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 586 - [houseNumber] => 7387 - [streetName] => Street 50 - [county] => County 10 - [town] => Town 47 - [postcode] => AB74 4CD - [lng] => -63.086041 - [lat] => -27.342839 - [contributor] => - ) - - [605] => Array - ( - [id] => 607 - [title] => Facility 587 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 587 - [houseNumber] => 3012 - [streetName] => Street 29 - [county] => County 5 - [town] => Town 46 - [postcode] => AB40 8CD - [lng] => 30.27721 - [lat] => -8.222099 - [contributor] => - ) - - [606] => Array - ( - [id] => 608 - [title] => Facility 588 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 588 - [houseNumber] => 7759 - [streetName] => Street 14 - [county] => County 2 - [town] => Town 10 - [postcode] => AB55 8CD - [lng] => -13.927168 - [lat] => 73.104384 - [contributor] => - ) - - [607] => Array - ( - [id] => 609 - [title] => Facility 589 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 589 - [houseNumber] => 6582 - [streetName] => Street 6 - [county] => County 17 - [town] => Town 17 - [postcode] => AB35 5CD - [lng] => -147.153312 - [lat] => 57.818608 - [contributor] => - ) - - [608] => Array - ( - [id] => 610 - [title] => Facility 590 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 590 - [houseNumber] => 9820 - [streetName] => Street 22 - [county] => County 18 - [town] => Town 44 - [postcode] => AB45 3CD - [lng] => -128.915812 - [lat] => 5.976343 - [contributor] => - ) - - [609] => Array - ( - [id] => 611 - [title] => Facility 591 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 591 - [houseNumber] => 9758 - [streetName] => Street 7 - [county] => County 8 - [town] => Town 7 - [postcode] => AB98 2CD - [lng] => 153.555457 - [lat] => 51.215446 - [contributor] => - ) - - [610] => Array - ( - [id] => 612 - [title] => Facility 592 - [status] => - [category] => Recycling Bins - [description] => Description for facility 592 - [houseNumber] => 651 - [streetName] => Street 38 - [county] => County 13 - [town] => Town 12 - [postcode] => AB13 1CD - [lng] => 110.733403 - [lat] => -60.384534 - [contributor] => - ) - - [611] => Array - ( - [id] => 613 - [title] => Facility 593 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 593 - [houseNumber] => 3843 - [streetName] => Street 20 - [county] => County 2 - [town] => Town 29 - [postcode] => AB74 8CD - [lng] => -58.994719 - [lat] => -33.941779 - [contributor] => - ) - - [612] => Array - ( - [id] => 614 - [title] => Facility 594 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 594 - [houseNumber] => 7835 - [streetName] => Street 26 - [county] => County 2 - [town] => Town 37 - [postcode] => AB14 1CD - [lng] => -129.684233 - [lat] => -45.442708 - [contributor] => - ) - - [613] => Array - ( - [id] => 615 - [title] => Facility 595 - [status] => - [category] => e-Scooters - [description] => Description for facility 595 - [houseNumber] => 8006 - [streetName] => Street 10 - [county] => County 3 - [town] => Town 9 - [postcode] => AB95 9CD - [lng] => -78.243784 - [lat] => -9.338361 - [contributor] => - ) - - [614] => Array - ( - [id] => 616 - [title] => Facility 596 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 596 - [houseNumber] => 4052 - [streetName] => Street 23 - [county] => County 5 - [town] => Town 14 - [postcode] => AB46 1CD - [lng] => 82.235173 - [lat] => 21.976221 - [contributor] => - ) - - [615] => Array - ( - [id] => 617 - [title] => Facility 597 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 597 - [houseNumber] => 4841 - [streetName] => Street 1 - [county] => County 17 - [town] => Town 48 - [postcode] => AB42 6CD - [lng] => -60.299266 - [lat] => -66.073559 - [contributor] => - ) - - [616] => Array - ( - [id] => 618 - [title] => Facility 598 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 598 - [houseNumber] => 8091 - [streetName] => Street 35 - [county] => County 13 - [town] => Town 17 - [postcode] => AB15 7CD - [lng] => -19.786464 - [lat] => 38.551628 - [contributor] => - ) - - [617] => Array - ( - [id] => 619 - [title] => Facility 599 - [status] => - [category] => Green Roofs - [description] => Description for facility 599 - [houseNumber] => 7430 - [streetName] => Street 41 - [county] => County 9 - [town] => Town 20 - [postcode] => AB66 5CD - [lng] => 90.506319 - [lat] => 27.77777 - [contributor] => - ) - - [618] => Array - ( - [id] => 620 - [title] => Facility 600 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 600 - [houseNumber] => 3924 - [streetName] => Street 21 - [county] => County 13 - [town] => Town 9 - [postcode] => AB91 4CD - [lng] => -122.704408 - [lat] => 15.868696 - [contributor] => - ) - - [619] => Array - ( - [id] => 621 - [title] => Facility 601 - [status] => - [category] => e-Scooters - [description] => Description for facility 601 - [houseNumber] => 5880 - [streetName] => Street 1 - [county] => County 1 - [town] => Town 26 - [postcode] => AB11 1CD - [lng] => 47.239824 - [lat] => -4.133056 - [contributor] => - ) - - [620] => Array - ( - [id] => 622 - [title] => Facility 602 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 602 - [houseNumber] => 8766 - [streetName] => Street 48 - [county] => County 18 - [town] => Town 3 - [postcode] => AB51 5CD - [lng] => 149.564885 - [lat] => -40.94254 - [contributor] => - ) - - [621] => Array - ( - [id] => 623 - [title] => Facility 603 - [status] => - [category] => Recycling Bins - [description] => Description for facility 603 - [houseNumber] => 6564 - [streetName] => Street 9 - [county] => County 18 - [town] => Town 24 - [postcode] => AB48 2CD - [lng] => -89.92072 - [lat] => 42.282012 - [contributor] => - ) - - [622] => Array - ( - [id] => 624 - [title] => Facility 604 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 604 - [houseNumber] => 3721 - [streetName] => Street 25 - [county] => County 17 - [town] => Town 18 - [postcode] => AB68 8CD - [lng] => 132.947405 - [lat] => -16.355277 - [contributor] => - ) - - [623] => Array - ( - [id] => 625 - [title] => Facility 605 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 605 - [houseNumber] => 9315 - [streetName] => Street 14 - [county] => County 9 - [town] => Town 24 - [postcode] => AB87 1CD - [lng] => 28.559229 - [lat] => 55.605123 - [contributor] => - ) - - [624] => Array - ( - [id] => 626 - [title] => Facility 606 - [status] => - [category] => e-Scooters - [description] => Description for facility 606 - [houseNumber] => 4268 - [streetName] => Street 27 - [county] => County 19 - [town] => Town 30 - [postcode] => AB44 5CD - [lng] => -11.320491 - [lat] => -57.136735 - [contributor] => - ) - - [625] => Array - ( - [id] => 627 - [title] => Facility 607 - [status] => - [category] => e-Scooters - [description] => Description for facility 607 - [houseNumber] => 6178 - [streetName] => Street 21 - [county] => County 18 - [town] => Town 19 - [postcode] => AB21 8CD - [lng] => -162.009871 - [lat] => 18.000716 - [contributor] => - ) - - [626] => Array - ( - [id] => 628 - [title] => Facility 608 - [status] => - [category] => Green Roofs - [description] => Description for facility 608 - [houseNumber] => 3967 - [streetName] => Street 29 - [county] => County 16 - [town] => Town 9 - [postcode] => AB32 8CD - [lng] => -164.689112 - [lat] => -55.045135 - [contributor] => - ) - - [627] => Array - ( - [id] => 629 - [title] => Facility 609 - [status] => - [category] => e-Scooters - [description] => Description for facility 609 - [houseNumber] => 9622 - [streetName] => Street 10 - [county] => County 1 - [town] => Town 49 - [postcode] => AB43 6CD - [lng] => -23.378001 - [lat] => -80.249088 - [contributor] => - ) - - [628] => Array - ( - [id] => 630 - [title] => Facility 610 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 610 - [houseNumber] => 4344 - [streetName] => Street 5 - [county] => County 4 - [town] => Town 33 - [postcode] => AB20 3CD - [lng] => 173.831329 - [lat] => 81.938488 - [contributor] => - ) - - [629] => Array - ( - [id] => 631 - [title] => Facility 611 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 611 - [houseNumber] => 4455 - [streetName] => Street 27 - [county] => County 10 - [town] => Town 29 - [postcode] => AB39 9CD - [lng] => 178.546413 - [lat] => 27.155467 - [contributor] => - ) - - [630] => Array - ( - [id] => 632 - [title] => Facility 612 - [status] => - [category] => Green Roofs - [description] => Description for facility 612 - [houseNumber] => 6482 - [streetName] => Street 7 - [county] => County 11 - [town] => Town 43 - [postcode] => AB77 4CD - [lng] => -151.318172 - [lat] => -23.091315 - [contributor] => - ) - - [631] => Array - ( - [id] => 633 - [title] => Facility 613 - [status] => - [category] => e-Scooters - [description] => Description for facility 613 - [houseNumber] => 8057 - [streetName] => Street 21 - [county] => County 8 - [town] => Town 8 - [postcode] => AB87 1CD - [lng] => -133.171827 - [lat] => -29.825566 - [contributor] => - ) - - [632] => Array - ( - [id] => 634 - [title] => Facility 614 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 614 - [houseNumber] => 626 - [streetName] => Street 6 - [county] => County 12 - [town] => Town 15 - [postcode] => AB30 6CD - [lng] => -145.204353 - [lat] => -88.901052 - [contributor] => - ) - - [633] => Array - ( - [id] => 635 - [title] => Facility 615 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 615 - [houseNumber] => 5912 - [streetName] => Street 42 - [county] => County 9 - [town] => Town 38 - [postcode] => AB74 5CD - [lng] => -149.511503 - [lat] => -58.028355 - [contributor] => - ) - - [634] => Array - ( - [id] => 636 - [title] => Facility 616 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 616 - [houseNumber] => 9846 - [streetName] => Street 35 - [county] => County 9 - [town] => Town 45 - [postcode] => AB11 7CD - [lng] => 119.990886 - [lat] => -67.62717 - [contributor] => - ) - - [635] => Array - ( - [id] => 637 - [title] => Facility 617 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 617 - [houseNumber] => 6357 - [streetName] => Street 17 - [county] => County 16 - [town] => Town 41 - [postcode] => AB80 6CD - [lng] => 19.314958 - [lat] => -79.265225 - [contributor] => - ) - - [636] => Array - ( - [id] => 638 - [title] => Facility 618 - [status] => - [category] => Recycling Bins - [description] => Description for facility 618 - [houseNumber] => 3176 - [streetName] => Street 1 - [county] => County 11 - [town] => Town 7 - [postcode] => AB62 7CD - [lng] => 98.977848 - [lat] => 12.555596 - [contributor] => - ) - - [637] => Array - ( - [id] => 639 - [title] => Facility 619 - [status] => - [category] => Green Roofs - [description] => Description for facility 619 - [houseNumber] => 1942 - [streetName] => Street 49 - [county] => County 3 - [town] => Town 37 - [postcode] => AB69 2CD - [lng] => 15.382834 - [lat] => 25.876652 - [contributor] => - ) - - [638] => Array - ( - [id] => 640 - [title] => Facility 620 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 620 - [houseNumber] => 7109 - [streetName] => Street 24 - [county] => County 13 - [town] => Town 38 - [postcode] => AB80 5CD - [lng] => -69.441405 - [lat] => 29.977792 - [contributor] => - ) - - [639] => Array - ( - [id] => 641 - [title] => Facility 621 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 621 - [houseNumber] => 4522 - [streetName] => Street 5 - [county] => County 2 - [town] => Town 6 - [postcode] => AB57 6CD - [lng] => -45.304909 - [lat] => -58.568642 - [contributor] => - ) - - [640] => Array - ( - [id] => 642 - [title] => Facility 622 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 622 - [houseNumber] => 7728 - [streetName] => Street 31 - [county] => County 19 - [town] => Town 49 - [postcode] => AB67 1CD - [lng] => -22.700529 - [lat] => 84.245201 - [contributor] => - ) - - [641] => Array - ( - [id] => 643 - [title] => Facility 623 - [status] => - [category] => Green Roofs - [description] => Description for facility 623 - [houseNumber] => 4756 - [streetName] => Street 1 - [county] => County 19 - [town] => Town 3 - [postcode] => AB75 9CD - [lng] => -167.983163 - [lat] => -56.386868 - [contributor] => - ) - - [642] => Array - ( - [id] => 644 - [title] => Facility 624 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 624 - [houseNumber] => 7235 - [streetName] => Street 25 - [county] => County 3 - [town] => Town 17 - [postcode] => AB94 3CD - [lng] => -113.376829 - [lat] => 38.20849 - [contributor] => - ) - - [643] => Array - ( - [id] => 645 - [title] => Facility 625 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 625 - [houseNumber] => 5917 - [streetName] => Street 31 - [county] => County 11 - [town] => Town 37 - [postcode] => AB67 6CD - [lng] => 61.253318 - [lat] => 22.531395 - [contributor] => - ) - - [644] => Array - ( - [id] => 646 - [title] => Facility 626 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 626 - [houseNumber] => 8830 - [streetName] => Street 11 - [county] => County 13 - [town] => Town 12 - [postcode] => AB69 2CD - [lng] => 47.322332 - [lat] => 35.560934 - [contributor] => - ) - - [645] => Array - ( - [id] => 647 - [title] => Facility 627 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 627 - [houseNumber] => 4510 - [streetName] => Street 10 - [county] => County 19 - [town] => Town 38 - [postcode] => AB61 4CD - [lng] => 151.029954 - [lat] => 33.001123 - [contributor] => - ) - - [646] => Array - ( - [id] => 648 - [title] => Facility 628 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 628 - [houseNumber] => 5400 - [streetName] => Street 15 - [county] => County 20 - [town] => Town 32 - [postcode] => AB67 7CD - [lng] => -150.362882 - [lat] => 5.020267 - [contributor] => - ) - - [647] => Array - ( - [id] => 649 - [title] => Facility 629 - [status] => - [category] => e-Scooters - [description] => Description for facility 629 - [houseNumber] => 4918 - [streetName] => Street 44 - [county] => County 12 - [town] => Town 12 - [postcode] => AB22 3CD - [lng] => -74.812987 - [lat] => 74.195713 - [contributor] => - ) - - [648] => Array - ( - [id] => 650 - [title] => Facility 630 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 630 - [houseNumber] => 1202 - [streetName] => Street 34 - [county] => County 17 - [town] => Town 17 - [postcode] => AB82 9CD - [lng] => 35.736389 - [lat] => -66.961755 - [contributor] => - ) - - [649] => Array - ( - [id] => 651 - [title] => Facility 631 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 631 - [houseNumber] => 851 - [streetName] => Street 49 - [county] => County 20 - [town] => Town 2 - [postcode] => AB55 2CD - [lng] => -86.461071 - [lat] => -60.879645 - [contributor] => - ) - - [650] => Array - ( - [id] => 652 - [title] => Facility 632 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 632 - [houseNumber] => 3701 - [streetName] => Street 11 - [county] => County 7 - [town] => Town 1 - [postcode] => AB11 3CD - [lng] => -27.645095 - [lat] => 36.390131 - [contributor] => - ) - - [651] => Array - ( - [id] => 653 - [title] => Facility 633 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 633 - [houseNumber] => 8958 - [streetName] => Street 15 - [county] => County 1 - [town] => Town 11 - [postcode] => AB58 6CD - [lng] => -28.064188 - [lat] => 59.032001 - [contributor] => - ) - - [652] => Array - ( - [id] => 654 - [title] => Facility 634 - [status] => - [category] => Recycling Bins - [description] => Description for facility 634 - [houseNumber] => 8185 - [streetName] => Street 39 - [county] => County 17 - [town] => Town 39 - [postcode] => AB75 4CD - [lng] => 81.778067 - [lat] => -64.833889 - [contributor] => - ) - - [653] => Array - ( - [id] => 655 - [title] => Facility 635 - [status] => - [category] => e-Scooters - [description] => Description for facility 635 - [houseNumber] => 7181 - [streetName] => Street 32 - [county] => County 18 - [town] => Town 43 - [postcode] => AB43 5CD - [lng] => -53.366047 - [lat] => 85.76331 - [contributor] => - ) - - [654] => Array - ( - [id] => 656 - [title] => Facility 636 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 636 - [houseNumber] => 3565 - [streetName] => Street 11 - [county] => County 1 - [town] => Town 17 - [postcode] => AB49 4CD - [lng] => -61.77768 - [lat] => -71.745011 - [contributor] => - ) - - [655] => Array - ( - [id] => 657 - [title] => Facility 637 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 637 - [houseNumber] => 399 - [streetName] => Street 3 - [county] => County 19 - [town] => Town 26 - [postcode] => AB49 3CD - [lng] => -98.867499 - [lat] => -46.100726 - [contributor] => - ) - - [656] => Array - ( - [id] => 658 - [title] => Facility 638 - [status] => - [category] => e-Scooters - [description] => Description for facility 638 - [houseNumber] => 5595 - [streetName] => Street 36 - [county] => County 15 - [town] => Town 15 - [postcode] => AB88 3CD - [lng] => 137.132851 - [lat] => -57.762497 - [contributor] => - ) - - [657] => Array - ( - [id] => 659 - [title] => Facility 639 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 639 - [houseNumber] => 7031 - [streetName] => Street 34 - [county] => County 1 - [town] => Town 10 - [postcode] => AB14 1CD - [lng] => -166.703903 - [lat] => -55.064792 - [contributor] => - ) - - [658] => Array - ( - [id] => 660 - [title] => Facility 640 - [status] => - [category] => Recycling Bins - [description] => Description for facility 640 - [houseNumber] => 8692 - [streetName] => Street 44 - [county] => County 6 - [town] => Town 4 - [postcode] => AB87 3CD - [lng] => -100.774782 - [lat] => -19.738634 - [contributor] => - ) - - [659] => Array - ( - [id] => 661 - [title] => Facility 641 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 641 - [houseNumber] => 3884 - [streetName] => Street 6 - [county] => County 3 - [town] => Town 25 - [postcode] => AB23 5CD - [lng] => 25.104687 - [lat] => 62.414999 - [contributor] => - ) - - [660] => Array - ( - [id] => 662 - [title] => Facility 642 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 642 - [houseNumber] => 7503 - [streetName] => Street 45 - [county] => County 18 - [town] => Town 15 - [postcode] => AB39 6CD - [lng] => -151.180038 - [lat] => 78.588843 - [contributor] => - ) - - [661] => Array - ( - [id] => 663 - [title] => Facility 643 - [status] => - [category] => e-Scooters - [description] => Description for facility 643 - [houseNumber] => 5028 - [streetName] => Street 7 - [county] => County 9 - [town] => Town 16 - [postcode] => AB44 4CD - [lng] => 113.271794 - [lat] => 23.805286 - [contributor] => - ) - - [662] => Array - ( - [id] => 664 - [title] => Facility 644 - [status] => - [category] => e-Scooters - [description] => Description for facility 644 - [houseNumber] => 6160 - [streetName] => Street 9 - [county] => County 18 - [town] => Town 4 - [postcode] => AB78 9CD - [lng] => 40.084861 - [lat] => -56.600346 - [contributor] => - ) - - [663] => Array - ( - [id] => 665 - [title] => Facility 645 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 645 - [houseNumber] => 8129 - [streetName] => Street 43 - [county] => County 11 - [town] => Town 41 - [postcode] => AB38 9CD - [lng] => 122.837879 - [lat] => -5.48285 - [contributor] => - ) - - [664] => Array - ( - [id] => 666 - [title] => Facility 646 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 646 - [houseNumber] => 3596 - [streetName] => Street 28 - [county] => County 12 - [town] => Town 13 - [postcode] => AB80 8CD - [lng] => 118.205031 - [lat] => 56.159225 - [contributor] => - ) - - [665] => Array - ( - [id] => 667 - [title] => Facility 647 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 647 - [houseNumber] => 64 - [streetName] => Street 26 - [county] => County 12 - [town] => Town 5 - [postcode] => AB61 7CD - [lng] => -98.202924 - [lat] => -24.732694 - [contributor] => - ) - - [666] => Array - ( - [id] => 668 - [title] => Facility 648 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 648 - [houseNumber] => 8673 - [streetName] => Street 16 - [county] => County 17 - [town] => Town 8 - [postcode] => AB24 6CD - [lng] => -147.330168 - [lat] => 58.708864 - [contributor] => - ) - - [667] => Array - ( - [id] => 669 - [title] => Facility 649 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 649 - [houseNumber] => 6608 - [streetName] => Street 35 - [county] => County 12 - [town] => Town 29 - [postcode] => AB50 1CD - [lng] => -10.220101 - [lat] => 24.019344 - [contributor] => - ) - - [668] => Array - ( - [id] => 670 - [title] => Facility 650 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 650 - [houseNumber] => 6772 - [streetName] => Street 45 - [county] => County 2 - [town] => Town 46 - [postcode] => AB13 5CD - [lng] => 12.764369 - [lat] => -51.822695 - [contributor] => - ) - - [669] => Array - ( - [id] => 671 - [title] => Facility 651 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 651 - [houseNumber] => 9980 - [streetName] => Street 43 - [county] => County 1 - [town] => Town 27 - [postcode] => AB44 5CD - [lng] => 2.148713 - [lat] => -23.730477 - [contributor] => - ) - - [670] => Array - ( - [id] => 672 - [title] => Facility 652 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 652 - [houseNumber] => 7034 - [streetName] => Street 9 - [county] => County 15 - [town] => Town 7 - [postcode] => AB46 2CD - [lng] => -137.900119 - [lat] => -81.788624 - [contributor] => - ) - - [671] => Array - ( - [id] => 673 - [title] => Facility 653 - [status] => - [category] => Recycling Bins - [description] => Description for facility 653 - [houseNumber] => 3518 - [streetName] => Street 13 - [county] => County 3 - [town] => Town 50 - [postcode] => AB32 1CD - [lng] => 115.609214 - [lat] => 10.518574 - [contributor] => - ) - - [672] => Array - ( - [id] => 674 - [title] => Facility 654 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 654 - [houseNumber] => 2012 - [streetName] => Street 48 - [county] => County 18 - [town] => Town 17 - [postcode] => AB55 5CD - [lng] => 49.825932 - [lat] => -21.098328 - [contributor] => - ) - - [673] => Array - ( - [id] => 675 - [title] => Facility 655 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 655 - [houseNumber] => 9637 - [streetName] => Street 35 - [county] => County 4 - [town] => Town 19 - [postcode] => AB81 9CD - [lng] => -159.864622 - [lat] => 21.076113 - [contributor] => - ) - - [674] => Array - ( - [id] => 676 - [title] => Facility 656 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 656 - [houseNumber] => 7105 - [streetName] => Street 35 - [county] => County 4 - [town] => Town 15 - [postcode] => AB26 2CD - [lng] => -96.134424 - [lat] => 39.774624 - [contributor] => - ) - - [675] => Array - ( - [id] => 677 - [title] => Facility 657 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 657 - [houseNumber] => 4762 - [streetName] => Street 21 - [county] => County 6 - [town] => Town 19 - [postcode] => AB86 1CD - [lng] => 16.501687 - [lat] => 25.199761 - [contributor] => - ) - - [676] => Array - ( - [id] => 678 - [title] => Facility 658 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 658 - [houseNumber] => 8535 - [streetName] => Street 4 - [county] => County 5 - [town] => Town 17 - [postcode] => AB49 9CD - [lng] => 34.86713 - [lat] => -68.043073 - [contributor] => - ) - - [677] => Array - ( - [id] => 679 - [title] => Facility 659 - [status] => - [category] => Recycling Bins - [description] => Description for facility 659 - [houseNumber] => 7471 - [streetName] => Street 18 - [county] => County 10 - [town] => Town 27 - [postcode] => AB20 6CD - [lng] => 11.587225 - [lat] => -73.352116 - [contributor] => - ) - - [678] => Array - ( - [id] => 680 - [title] => Facility 660 - [status] => - [category] => Green Roofs - [description] => Description for facility 660 - [houseNumber] => 5902 - [streetName] => Street 17 - [county] => County 6 - [town] => Town 27 - [postcode] => AB99 3CD - [lng] => 64.780916 - [lat] => 9.2463 - [contributor] => - ) - - [679] => Array - ( - [id] => 681 - [title] => Facility 661 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 661 - [houseNumber] => 3514 - [streetName] => Street 10 - [county] => County 7 - [town] => Town 17 - [postcode] => AB15 8CD - [lng] => 86.963233 - [lat] => -39.127377 - [contributor] => - ) - - [680] => Array - ( - [id] => 682 - [title] => Facility 662 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 662 - [houseNumber] => 1975 - [streetName] => Street 45 - [county] => County 7 - [town] => Town 45 - [postcode] => AB79 7CD - [lng] => 58.9594 - [lat] => 30.598793 - [contributor] => - ) - - [681] => Array - ( - [id] => 683 - [title] => Facility 663 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 663 - [houseNumber] => 6001 - [streetName] => Street 8 - [county] => County 5 - [town] => Town 1 - [postcode] => AB21 5CD - [lng] => 135.18017 - [lat] => -83.454568 - [contributor] => - ) - - [682] => Array - ( - [id] => 684 - [title] => Facility 664 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 664 - [houseNumber] => 5717 - [streetName] => Street 22 - [county] => County 17 - [town] => Town 6 - [postcode] => AB89 8CD - [lng] => 19.971021 - [lat] => 62.417439 - [contributor] => - ) - - [683] => Array - ( - [id] => 685 - [title] => Facility 665 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 665 - [houseNumber] => 1113 - [streetName] => Street 6 - [county] => County 10 - [town] => Town 44 - [postcode] => AB32 3CD - [lng] => -63.038179 - [lat] => -74.165393 - [contributor] => - ) - - [684] => Array - ( - [id] => 686 - [title] => Facility 666 - [status] => - [category] => Recycling Bins - [description] => Description for facility 666 - [houseNumber] => 742 - [streetName] => Street 44 - [county] => County 20 - [town] => Town 35 - [postcode] => AB33 3CD - [lng] => -40.118032 - [lat] => 46.232792 - [contributor] => - ) - - [685] => Array - ( - [id] => 687 - [title] => Facility 667 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 667 - [houseNumber] => 8780 - [streetName] => Street 18 - [county] => County 2 - [town] => Town 28 - [postcode] => AB53 8CD - [lng] => 14.953909 - [lat] => -33.399296 - [contributor] => - ) - - [686] => Array - ( - [id] => 688 - [title] => Facility 668 - [status] => - [category] => Recycling Bins - [description] => Description for facility 668 - [houseNumber] => 4504 - [streetName] => Street 39 - [county] => County 1 - [town] => Town 5 - [postcode] => AB53 6CD - [lng] => 5.472815 - [lat] => -40.345654 - [contributor] => - ) - - [687] => Array - ( - [id] => 689 - [title] => Facility 669 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 669 - [houseNumber] => 5128 - [streetName] => Street 8 - [county] => County 11 - [town] => Town 21 - [postcode] => AB41 2CD - [lng] => -49.572518 - [lat] => 77.407801 - [contributor] => - ) - - [688] => Array - ( - [id] => 690 - [title] => Facility 670 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 670 - [houseNumber] => 2988 - [streetName] => Street 16 - [county] => County 7 - [town] => Town 22 - [postcode] => AB50 5CD - [lng] => -88.146173 - [lat] => 6.750425 - [contributor] => - ) - - [689] => Array - ( - [id] => 691 - [title] => Facility 671 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 671 - [houseNumber] => 4985 - [streetName] => Street 1 - [county] => County 5 - [town] => Town 44 - [postcode] => AB24 5CD - [lng] => -25.876662 - [lat] => -82.67766 - [contributor] => - ) - - [690] => Array - ( - [id] => 692 - [title] => Facility 672 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 672 - [houseNumber] => 4664 - [streetName] => Street 49 - [county] => County 14 - [town] => Town 14 - [postcode] => AB52 2CD - [lng] => 144.797555 - [lat] => -78.293006 - [contributor] => - ) - - [691] => Array - ( - [id] => 693 - [title] => Facility 673 - [status] => - [category] => Green Roofs - [description] => Description for facility 673 - [houseNumber] => 1741 - [streetName] => Street 3 - [county] => County 18 - [town] => Town 47 - [postcode] => AB63 3CD - [lng] => -96.612588 - [lat] => 41.803354 - [contributor] => - ) - - [692] => Array - ( - [id] => 694 - [title] => Facility 674 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 674 - [houseNumber] => 3781 - [streetName] => Street 48 - [county] => County 19 - [town] => Town 39 - [postcode] => AB95 3CD - [lng] => 99.181065 - [lat] => -3.96782 - [contributor] => - ) - - [693] => Array - ( - [id] => 695 - [title] => Facility 675 - [status] => - [category] => Recycling Bins - [description] => Description for facility 675 - [houseNumber] => 3460 - [streetName] => Street 32 - [county] => County 11 - [town] => Town 43 - [postcode] => AB26 1CD - [lng] => -92.567756 - [lat] => 87.145913 - [contributor] => - ) - - [694] => Array - ( - [id] => 696 - [title] => Facility 676 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 676 - [houseNumber] => 6045 - [streetName] => Street 31 - [county] => County 20 - [town] => Town 47 - [postcode] => AB53 2CD - [lng] => 136.501837 - [lat] => 26.44794 - [contributor] => - ) - - [695] => Array - ( - [id] => 697 - [title] => Facility 677 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 677 - [houseNumber] => 8047 - [streetName] => Street 10 - [county] => County 9 - [town] => Town 44 - [postcode] => AB80 6CD - [lng] => 26.573138 - [lat] => -45.824307 - [contributor] => - ) - - [696] => Array - ( - [id] => 698 - [title] => Facility 678 - [status] => - [category] => Recycling Bins - [description] => Description for facility 678 - [houseNumber] => 6005 - [streetName] => Street 22 - [county] => County 14 - [town] => Town 38 - [postcode] => AB33 3CD - [lng] => 100.513602 - [lat] => 61.705566 - [contributor] => - ) - - [697] => Array - ( - [id] => 699 - [title] => Facility 679 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 679 - [houseNumber] => 3914 - [streetName] => Street 13 - [county] => County 7 - [town] => Town 4 - [postcode] => AB48 3CD - [lng] => -61.827378 - [lat] => -81.150923 - [contributor] => - ) - - [698] => Array - ( - [id] => 700 - [title] => Facility 680 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 680 - [houseNumber] => 5423 - [streetName] => Street 44 - [county] => County 4 - [town] => Town 9 - [postcode] => AB76 6CD - [lng] => -18.227626 - [lat] => -88.883115 - [contributor] => - ) - - [699] => Array - ( - [id] => 701 - [title] => Facility 681 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 681 - [houseNumber] => 6695 - [streetName] => Street 33 - [county] => County 2 - [town] => Town 6 - [postcode] => AB95 1CD - [lng] => 25.819397 - [lat] => -84.640501 - [contributor] => - ) - - [700] => Array - ( - [id] => 702 - [title] => Facility 682 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 682 - [houseNumber] => 2564 - [streetName] => Street 18 - [county] => County 6 - [town] => Town 26 - [postcode] => AB75 8CD - [lng] => -110.081849 - [lat] => -19.609927 - [contributor] => - ) - - [701] => Array - ( - [id] => 703 - [title] => Facility 683 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 683 - [houseNumber] => 4053 - [streetName] => Street 7 - [county] => County 2 - [town] => Town 7 - [postcode] => AB21 4CD - [lng] => 131.507177 - [lat] => -21.731257 - [contributor] => - ) - - [702] => Array - ( - [id] => 704 - [title] => Facility 684 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 684 - [houseNumber] => 3683 - [streetName] => Street 13 - [county] => County 17 - [town] => Town 41 - [postcode] => AB39 5CD - [lng] => 89.56578 - [lat] => -62.408089 - [contributor] => - ) - - [703] => Array - ( - [id] => 705 - [title] => Facility 685 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 685 - [houseNumber] => 9713 - [streetName] => Street 23 - [county] => County 14 - [town] => Town 34 - [postcode] => AB78 2CD - [lng] => -104.104072 - [lat] => -39.225199 - [contributor] => - ) - - [704] => Array - ( - [id] => 706 - [title] => Facility 686 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 686 - [houseNumber] => 8034 - [streetName] => Street 43 - [county] => County 20 - [town] => Town 30 - [postcode] => AB43 3CD - [lng] => -60.137542 - [lat] => -16.282446 - [contributor] => Benny - ) - - [705] => Array - ( - [id] => 707 - [title] => Facility 687 - [status] => - [category] => e-Scooters - [description] => Description for facility 687 - [houseNumber] => 9433 - [streetName] => Street 34 - [county] => County 20 - [town] => Town 22 - [postcode] => AB14 2CD - [lng] => 11.870115 - [lat] => 13.776641 - [contributor] => - ) - - [706] => Array - ( - [id] => 708 - [title] => Facility 688 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 688 - [houseNumber] => 2845 - [streetName] => Street 28 - [county] => County 3 - [town] => Town 37 - [postcode] => AB10 5CD - [lng] => -40.986083 - [lat] => 71.718293 - [contributor] => - ) - - [707] => Array - ( - [id] => 709 - [title] => Facility 689 - [status] => - [category] => Green Roofs - [description] => Description for facility 689 - [houseNumber] => 5966 - [streetName] => Street 30 - [county] => County 12 - [town] => Town 3 - [postcode] => AB94 2CD - [lng] => 38.315915 - [lat] => -35.257117 - [contributor] => - ) - - [708] => Array - ( - [id] => 710 - [title] => Facility 690 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 690 - [houseNumber] => 361 - [streetName] => Street 26 - [county] => County 10 - [town] => Town 49 - [postcode] => AB78 2CD - [lng] => 93.13785 - [lat] => -5.146796 - [contributor] => - ) - - [709] => Array - ( - [id] => 711 - [title] => Facility 691 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 691 - [houseNumber] => 7294 - [streetName] => Street 12 - [county] => County 5 - [town] => Town 49 - [postcode] => AB99 2CD - [lng] => 130.949424 - [lat] => 33.176789 - [contributor] => - ) - - [710] => Array - ( - [id] => 712 - [title] => Facility 692 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 692 - [houseNumber] => 5860 - [streetName] => Street 10 - [county] => County 5 - [town] => Town 37 - [postcode] => AB35 4CD - [lng] => -134.039006 - [lat] => 4.07717 - [contributor] => - ) - - [711] => Array - ( - [id] => 713 - [title] => Facility 693 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 693 - [houseNumber] => 2661 - [streetName] => Street 49 - [county] => County 20 - [town] => Town 8 - [postcode] => AB62 3CD - [lng] => -44.555558 - [lat] => -11.870936 - [contributor] => - ) - - [712] => Array - ( - [id] => 714 - [title] => Facility 694 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 694 - [houseNumber] => 6713 - [streetName] => Street 38 - [county] => County 18 - [town] => Town 8 - [postcode] => AB56 6CD - [lng] => -160.757614 - [lat] => 48.932262 - [contributor] => - ) - - [713] => Array - ( - [id] => 715 - [title] => Facility 695 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 695 - [houseNumber] => 4016 - [streetName] => Street 31 - [county] => County 6 - [town] => Town 13 - [postcode] => AB12 5CD - [lng] => 45.561524 - [lat] => 37.176964 - [contributor] => - ) - - [714] => Array - ( - [id] => 716 - [title] => Facility 696 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 696 - [houseNumber] => 7599 - [streetName] => Street 37 - [county] => County 14 - [town] => Town 25 - [postcode] => AB33 6CD - [lng] => 141.105752 - [lat] => -13.682754 - [contributor] => - ) - - [715] => Array - ( - [id] => 717 - [title] => Facility 697 - [status] => - [category] => e-Scooters - [description] => Description for facility 697 - [houseNumber] => 3470 - [streetName] => Street 42 - [county] => County 11 - [town] => Town 18 - [postcode] => AB95 4CD - [lng] => -147.684862 - [lat] => -53.964853 - [contributor] => - ) - - [716] => Array - ( - [id] => 718 - [title] => Facility 698 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 698 - [houseNumber] => 8719 - [streetName] => Street 50 - [county] => County 8 - [town] => Town 21 - [postcode] => AB64 3CD - [lng] => -46.82142 - [lat] => -18.14029 - [contributor] => - ) - - [717] => Array - ( - [id] => 719 - [title] => Facility 699 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 699 - [houseNumber] => 5378 - [streetName] => Street 1 - [county] => County 4 - [town] => Town 4 - [postcode] => AB77 1CD - [lng] => -35.998346 - [lat] => -40.389757 - [contributor] => - ) - - [718] => Array - ( - [id] => 720 - [title] => Facility 700 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 700 - [houseNumber] => 3522 - [streetName] => Street 3 - [county] => County 7 - [town] => Town 16 - [postcode] => AB99 1CD - [lng] => -91.993997 - [lat] => 68.586338 - [contributor] => - ) - - [719] => Array - ( - [id] => 721 - [title] => Facility 701 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 701 - [houseNumber] => 3719 - [streetName] => Street 12 - [county] => County 18 - [town] => Town 18 - [postcode] => AB89 9CD - [lng] => 69.760316 - [lat] => 26.524188 - [contributor] => - ) - - [720] => Array - ( - [id] => 722 - [title] => Facility 702 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 702 - [houseNumber] => 4783 - [streetName] => Street 31 - [county] => County 20 - [town] => Town 30 - [postcode] => AB43 4CD - [lng] => 144.485992 - [lat] => 11.572419 - [contributor] => - ) - - [721] => Array - ( - [id] => 723 - [title] => Facility 703 - [status] => - [category] => e-Scooters - [description] => Description for facility 703 - [houseNumber] => 9208 - [streetName] => Street 49 - [county] => County 11 - [town] => Town 10 - [postcode] => AB35 3CD - [lng] => 63.863764 - [lat] => -42.524684 - [contributor] => - ) - - [722] => Array - ( - [id] => 724 - [title] => Facility 704 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 704 - [houseNumber] => 3288 - [streetName] => Street 8 - [county] => County 3 - [town] => Town 38 - [postcode] => AB36 6CD - [lng] => 92.263315 - [lat] => 46.146249 - [contributor] => - ) - - [723] => Array - ( - [id] => 725 - [title] => Facility 705 - [status] => - [category] => Green Roofs - [description] => Description for facility 705 - [houseNumber] => 5407 - [streetName] => Street 36 - [county] => County 13 - [town] => Town 32 - [postcode] => AB94 6CD - [lng] => 59.587106 - [lat] => -60.254916 - [contributor] => Lee - ) - - [724] => Array - ( - [id] => 726 - [title] => Facility 706 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 706 - [houseNumber] => 4568 - [streetName] => Street 39 - [county] => County 2 - [town] => Town 48 - [postcode] => AB34 3CD - [lng] => -106.934956 - [lat] => 73.609085 - [contributor] => - ) - - [725] => Array - ( - [id] => 727 - [title] => Facility 707 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 707 - [houseNumber] => 1842 - [streetName] => Street 50 - [county] => County 14 - [town] => Town 3 - [postcode] => AB77 5CD - [lng] => -68.281269 - [lat] => 89.508211 - [contributor] => - ) - - [726] => Array - ( - [id] => 728 - [title] => Facility 708 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 708 - [houseNumber] => 9040 - [streetName] => Street 18 - [county] => County 9 - [town] => Town 6 - [postcode] => AB59 6CD - [lng] => 44.154286 - [lat] => 17.4939 - [contributor] => - ) - - [727] => Array - ( - [id] => 729 - [title] => Facility 709 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 709 - [houseNumber] => 6759 - [streetName] => Street 19 - [county] => County 4 - [town] => Town 39 - [postcode] => AB67 6CD - [lng] => 49.09763 - [lat] => -42.512086 - [contributor] => - ) - - [728] => Array - ( - [id] => 730 - [title] => Facility 710 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 710 - [houseNumber] => 5515 - [streetName] => Street 28 - [county] => County 1 - [town] => Town 33 - [postcode] => AB16 5CD - [lng] => 22.236419 - [lat] => -74.02118 - [contributor] => - ) - - [729] => Array - ( - [id] => 731 - [title] => Facility 711 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 711 - [houseNumber] => 7647 - [streetName] => Street 39 - [county] => County 5 - [town] => Town 9 - [postcode] => AB82 8CD - [lng] => -93.217242 - [lat] => 76.306831 - [contributor] => - ) - - [730] => Array - ( - [id] => 732 - [title] => Facility 712 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 712 - [houseNumber] => 1861 - [streetName] => Street 25 - [county] => County 12 - [town] => Town 24 - [postcode] => AB52 7CD - [lng] => -23.288307 - [lat] => -64.496461 - [contributor] => - ) - - [731] => Array - ( - [id] => 733 - [title] => Facility 713 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 713 - [houseNumber] => 5017 - [streetName] => Street 39 - [county] => County 15 - [town] => Town 17 - [postcode] => AB27 9CD - [lng] => -143.293366 - [lat] => -5.279248 - [contributor] => - ) - - [732] => Array - ( - [id] => 734 - [title] => Facility 714 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 714 - [houseNumber] => 667 - [streetName] => Street 47 - [county] => County 9 - [town] => Town 34 - [postcode] => AB67 4CD - [lng] => 4.21259 - [lat] => -76.583414 - [contributor] => - ) - - [733] => Array - ( - [id] => 735 - [title] => Facility 715 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 715 - [houseNumber] => 4184 - [streetName] => Street 32 - [county] => County 3 - [town] => Town 11 - [postcode] => AB94 2CD - [lng] => 25.78685 - [lat] => -64.045763 - [contributor] => - ) - - [734] => Array - ( - [id] => 736 - [title] => Facility 716 - [status] => - [category] => e-Scooters - [description] => Description for facility 716 - [houseNumber] => 707 - [streetName] => Street 44 - [county] => County 2 - [town] => Town 44 - [postcode] => AB14 6CD - [lng] => -95.546033 - [lat] => 20.421841 - [contributor] => - ) - - [735] => Array - ( - [id] => 737 - [title] => Facility 717 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 717 - [houseNumber] => 365 - [streetName] => Street 36 - [county] => County 14 - [town] => Town 42 - [postcode] => AB88 6CD - [lng] => 72.087095 - [lat] => 24.181638 - [contributor] => - ) - - [736] => Array - ( - [id] => 738 - [title] => Facility 718 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 718 - [houseNumber] => 783 - [streetName] => Street 4 - [county] => County 1 - [town] => Town 1 - [postcode] => AB43 2CD - [lng] => 96.136996 - [lat] => 52.490113 - [contributor] => - ) - - [737] => Array - ( - [id] => 739 - [title] => Facility 719 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 719 - [houseNumber] => 2958 - [streetName] => Street 17 - [county] => County 14 - [town] => Town 34 - [postcode] => AB65 5CD - [lng] => -171.319816 - [lat] => 39.169399 - [contributor] => - ) - - [738] => Array - ( - [id] => 740 - [title] => Facility 720 - [status] => - [category] => Recycling Bins - [description] => Description for facility 720 - [houseNumber] => 3897 - [streetName] => Street 9 - [county] => County 8 - [town] => Town 35 - [postcode] => AB52 9CD - [lng] => 106.282348 - [lat] => -53.839597 - [contributor] => - ) - - [739] => Array - ( - [id] => 741 - [title] => Facility 721 - [status] => - [category] => Green Roofs - [description] => Description for facility 721 - [houseNumber] => 7819 - [streetName] => Street 43 - [county] => County 9 - [town] => Town 44 - [postcode] => AB15 3CD - [lng] => -98.079864 - [lat] => 14.3042 - [contributor] => - ) - - [740] => Array - ( - [id] => 742 - [title] => Facility 722 - [status] => - [category] => Green Roofs - [description] => Description for facility 722 - [houseNumber] => 3314 - [streetName] => Street 39 - [county] => County 20 - [town] => Town 1 - [postcode] => AB68 1CD - [lng] => 166.537508 - [lat] => -51.313231 - [contributor] => - ) - - [741] => Array - ( - [id] => 743 - [title] => Facility 723 - [status] => - [category] => Green Roofs - [description] => Description for facility 723 - [houseNumber] => 5480 - [streetName] => Street 12 - [county] => County 3 - [town] => Town 7 - [postcode] => AB31 9CD - [lng] => 55.476088 - [lat] => -37.666673 - [contributor] => - ) - - [742] => Array - ( - [id] => 744 - [title] => Facility 724 - [status] => - [category] => e-Scooters - [description] => Description for facility 724 - [houseNumber] => 1677 - [streetName] => Street 3 - [county] => County 6 - [town] => Town 10 - [postcode] => AB29 9CD - [lng] => -150.149654 - [lat] => -29.440222 - [contributor] => - ) - - [743] => Array - ( - [id] => 745 - [title] => Facility 725 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 725 - [houseNumber] => 6012 - [streetName] => Street 30 - [county] => County 11 - [town] => Town 41 - [postcode] => AB40 4CD - [lng] => 38.580442 - [lat] => -32.276646 - [contributor] => - ) - - [744] => Array - ( - [id] => 746 - [title] => Facility 726 - [status] => - [category] => Green Roofs - [description] => Description for facility 726 - [houseNumber] => 5294 - [streetName] => Street 11 - [county] => County 19 - [town] => Town 41 - [postcode] => AB65 9CD - [lng] => 120.620503 - [lat] => -37.834746 - [contributor] => - ) - - [745] => Array - ( - [id] => 747 - [title] => Facility 727 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 727 - [houseNumber] => 3478 - [streetName] => Street 16 - [county] => County 3 - [town] => Town 36 - [postcode] => AB55 5CD - [lng] => -156.619695 - [lat] => -87.675868 - [contributor] => - ) - - [746] => Array - ( - [id] => 748 - [title] => Facility 728 - [status] => - [category] => Green Roofs - [description] => Description for facility 728 - [houseNumber] => 6404 - [streetName] => Street 29 - [county] => County 17 - [town] => Town 4 - [postcode] => AB85 4CD - [lng] => -96.752742 - [lat] => 49.055758 - [contributor] => - ) - - [747] => Array - ( - [id] => 749 - [title] => Facility 729 - [status] => - [category] => e-Scooters - [description] => Description for facility 729 - [houseNumber] => 942 - [streetName] => Street 34 - [county] => County 11 - [town] => Town 20 - [postcode] => AB43 1CD - [lng] => -49.162778 - [lat] => -35.299185 - [contributor] => - ) - - [748] => Array - ( - [id] => 750 - [title] => Facility 730 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 730 - [houseNumber] => 5482 - [streetName] => Street 10 - [county] => County 2 - [town] => Town 11 - [postcode] => AB76 5CD - [lng] => 150.876139 - [lat] => -74.936234 - [contributor] => - ) - - [749] => Array - ( - [id] => 751 - [title] => Facility 731 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 731 - [houseNumber] => 5802 - [streetName] => Street 1 - [county] => County 11 - [town] => Town 20 - [postcode] => AB24 8CD - [lng] => 19.533447 - [lat] => -22.487327 - [contributor] => - ) - - [750] => Array - ( - [id] => 752 - [title] => Facility 732 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 732 - [houseNumber] => 2079 - [streetName] => Street 47 - [county] => County 4 - [town] => Town 32 - [postcode] => AB52 8CD - [lng] => 65.765687 - [lat] => -1.156181 - [contributor] => - ) - - [751] => Array - ( - [id] => 753 - [title] => Facility 733 - [status] => - [category] => e-Scooters - [description] => Description for facility 733 - [houseNumber] => 8099 - [streetName] => Street 17 - [county] => County 1 - [town] => Town 27 - [postcode] => AB78 3CD - [lng] => 104.877547 - [lat] => 26.458973 - [contributor] => Admin - ) - - [752] => Array - ( - [id] => 754 - [title] => Facility 734 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 734 - [houseNumber] => 2827 - [streetName] => Street 45 - [county] => County 8 - [town] => Town 37 - [postcode] => AB51 7CD - [lng] => -16.739926 - [lat] => 68.517587 - [contributor] => - ) - - [753] => Array - ( - [id] => 755 - [title] => Facility 735 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 735 - [houseNumber] => 1549 - [streetName] => Street 33 - [county] => County 10 - [town] => Town 15 - [postcode] => AB21 1CD - [lng] => -29.130539 - [lat] => 31.09032 - [contributor] => - ) - - [754] => Array - ( - [id] => 756 - [title] => Facility 736 - [status] => - [category] => e-Scooters - [description] => Description for facility 736 - [houseNumber] => 893 - [streetName] => Street 41 - [county] => County 2 - [town] => Town 25 - [postcode] => AB75 1CD - [lng] => 129.196511 - [lat] => 24.330479 - [contributor] => - ) - - [755] => Array - ( - [id] => 757 - [title] => Facility 737 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 737 - [houseNumber] => 5805 - [streetName] => Street 2 - [county] => County 19 - [town] => Town 2 - [postcode] => AB28 1CD - [lng] => -41.305754 - [lat] => -74.384409 - [contributor] => - ) - - [756] => Array - ( - [id] => 758 - [title] => Facility 738 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 738 - [houseNumber] => 2690 - [streetName] => Street 25 - [county] => County 11 - [town] => Town 19 - [postcode] => AB89 6CD - [lng] => 6.797935 - [lat] => 26.283641 - [contributor] => - ) - - [757] => Array - ( - [id] => 759 - [title] => Facility 739 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 739 - [houseNumber] => 7142 - [streetName] => Street 12 - [county] => County 14 - [town] => Town 4 - [postcode] => AB22 6CD - [lng] => 73.730719 - [lat] => 73.624506 - [contributor] => - ) - - [758] => Array - ( - [id] => 760 - [title] => Facility 740 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 740 - [houseNumber] => 3455 - [streetName] => Street 33 - [county] => County 15 - [town] => Town 38 - [postcode] => AB17 7CD - [lng] => -77.22777 - [lat] => 7.387229 - [contributor] => - ) - - [759] => Array - ( - [id] => 761 - [title] => Facility 741 - [status] => - [category] => Green Roofs - [description] => Description for facility 741 - [houseNumber] => 4778 - [streetName] => Street 19 - [county] => County 9 - [town] => Town 33 - [postcode] => AB58 2CD - [lng] => -101.718139 - [lat] => -52.987192 - [contributor] => - ) - - [760] => Array - ( - [id] => 762 - [title] => Facility 742 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 742 - [houseNumber] => 6939 - [streetName] => Street 13 - [county] => County 11 - [town] => Town 40 - [postcode] => AB32 9CD - [lng] => 46.758227 - [lat] => -47.535614 - [contributor] => - ) - - [761] => Array - ( - [id] => 763 - [title] => Facility 743 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 743 - [houseNumber] => 4363 - [streetName] => Street 11 - [county] => County 9 - [town] => Town 32 - [postcode] => AB98 9CD - [lng] => 135.534271 - [lat] => -38.472775 - [contributor] => - ) - - [762] => Array - ( - [id] => 764 - [title] => Facility 744 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 744 - [houseNumber] => 1294 - [streetName] => Street 7 - [county] => County 16 - [town] => Town 50 - [postcode] => AB70 7CD - [lng] => -21.46432 - [lat] => 65.99831 - [contributor] => - ) - - [763] => Array - ( - [id] => 765 - [title] => Facility 745 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 745 - [houseNumber] => 4733 - [streetName] => Street 29 - [county] => County 5 - [town] => Town 39 - [postcode] => AB81 4CD - [lng] => -121.837869 - [lat] => -75.67585 - [contributor] => - ) - - [764] => Array - ( - [id] => 766 - [title] => Facility 746 - [status] => - [category] => e-Scooters - [description] => Description for facility 746 - [houseNumber] => 4104 - [streetName] => Street 37 - [county] => County 10 - [town] => Town 43 - [postcode] => AB78 7CD - [lng] => -67.778118 - [lat] => -42.966695 - [contributor] => - ) - - [765] => Array - ( - [id] => 767 - [title] => Facility 747 - [status] => - [category] => Green Roofs - [description] => Description for facility 747 - [houseNumber] => 3841 - [streetName] => Street 22 - [county] => County 1 - [town] => Town 42 - [postcode] => AB31 4CD - [lng] => -30.962798 - [lat] => 86.430312 - [contributor] => - ) - - [766] => Array - ( - [id] => 768 - [title] => Facility 748 - [status] => - [category] => e-Scooters - [description] => Description for facility 748 - [houseNumber] => 9476 - [streetName] => Street 37 - [county] => County 20 - [town] => Town 31 - [postcode] => AB27 3CD - [lng] => -22.515983 - [lat] => 50.939228 - [contributor] => - ) - - [767] => Array - ( - [id] => 769 - [title] => Facility 749 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 749 - [houseNumber] => 4187 - [streetName] => Street 22 - [county] => County 4 - [town] => Town 33 - [postcode] => AB79 9CD - [lng] => -95.489328 - [lat] => -80.254715 - [contributor] => - ) - - [768] => Array - ( - [id] => 770 - [title] => Facility 750 - [status] => - [category] => Green Roofs - [description] => Description for facility 750 - [houseNumber] => 4306 - [streetName] => Street 50 - [county] => County 3 - [town] => Town 50 - [postcode] => AB37 3CD - [lng] => 51.703733 - [lat] => -32.770432 - [contributor] => - ) - - [769] => Array - ( - [id] => 771 - [title] => Facility 751 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 751 - [houseNumber] => 6165 - [streetName] => Street 19 - [county] => County 20 - [town] => Town 49 - [postcode] => AB53 8CD - [lng] => 117.662925 - [lat] => -69.678717 - [contributor] => - ) - - [770] => Array - ( - [id] => 772 - [title] => Facility 752 - [status] => - [category] => e-Scooters - [description] => Description for facility 752 - [houseNumber] => 4416 - [streetName] => Street 37 - [county] => County 10 - [town] => Town 32 - [postcode] => AB49 7CD - [lng] => -151.10743 - [lat] => -33.666269 - [contributor] => - ) - - [771] => Array - ( - [id] => 773 - [title] => Facility 753 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 753 - [houseNumber] => 3113 - [streetName] => Street 35 - [county] => County 7 - [town] => Town 11 - [postcode] => AB27 7CD - [lng] => 86.085703 - [lat] => -57.417777 - [contributor] => - ) - - [772] => Array - ( - [id] => 774 - [title] => Facility 754 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 754 - [houseNumber] => 5558 - [streetName] => Street 37 - [county] => County 17 - [town] => Town 41 - [postcode] => AB99 1CD - [lng] => -176.582577 - [lat] => 80.242119 - [contributor] => - ) - - [773] => Array - ( - [id] => 775 - [title] => Facility 755 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 755 - [houseNumber] => 4887 - [streetName] => Street 26 - [county] => County 5 - [town] => Town 13 - [postcode] => AB92 1CD - [lng] => 62.542519 - [lat] => 70.842775 - [contributor] => - ) - - [774] => Array - ( - [id] => 776 - [title] => Facility 756 - [status] => - [category] => Green Roofs - [description] => Description for facility 756 - [houseNumber] => 7192 - [streetName] => Street 2 - [county] => County 9 - [town] => Town 50 - [postcode] => AB92 9CD - [lng] => 40.474997 - [lat] => -27.251395 - [contributor] => - ) - - [775] => Array - ( - [id] => 777 - [title] => Facility 757 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 757 - [houseNumber] => 1972 - [streetName] => Street 8 - [county] => County 6 - [town] => Town 35 - [postcode] => AB42 7CD - [lng] => 168.296483 - [lat] => -30.102717 - [contributor] => - ) - - [776] => Array - ( - [id] => 778 - [title] => Facility 758 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 758 - [houseNumber] => 3591 - [streetName] => Street 41 - [county] => County 19 - [town] => Town 39 - [postcode] => AB91 9CD - [lng] => -99.656245 - [lat] => -12.585342 - [contributor] => - ) - - [777] => Array - ( - [id] => 779 - [title] => Facility 759 - [status] => - [category] => Green Roofs - [description] => Description for facility 759 - [houseNumber] => 9629 - [streetName] => Street 22 - [county] => County 2 - [town] => Town 8 - [postcode] => AB94 9CD - [lng] => 157.715011 - [lat] => 54.553034 - [contributor] => - ) - - [778] => Array - ( - [id] => 780 - [title] => Facility 760 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 760 - [houseNumber] => 3434 - [streetName] => Street 31 - [county] => County 2 - [town] => Town 7 - [postcode] => AB74 9CD - [lng] => 45.514609 - [lat] => -33.62737 - [contributor] => - ) - - [779] => Array - ( - [id] => 781 - [title] => Facility 761 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 761 - [houseNumber] => 7537 - [streetName] => Street 40 - [county] => County 1 - [town] => Town 22 - [postcode] => AB11 9CD - [lng] => 178.482796 - [lat] => -7.995507 - [contributor] => - ) - - [780] => Array - ( - [id] => 782 - [title] => Facility 762 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 762 - [houseNumber] => 3393 - [streetName] => Street 34 - [county] => County 10 - [town] => Town 46 - [postcode] => AB75 5CD - [lng] => -103.140268 - [lat] => -19.504267 - [contributor] => - ) - - [781] => Array - ( - [id] => 783 - [title] => Facility 763 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 763 - [houseNumber] => 6248 - [streetName] => Street 7 - [county] => County 19 - [town] => Town 39 - [postcode] => AB62 8CD - [lng] => -102.63534 - [lat] => 83.133461 - [contributor] => - ) - - [782] => Array - ( - [id] => 784 - [title] => Facility 764 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 764 - [houseNumber] => 5100 - [streetName] => Street 15 - [county] => County 12 - [town] => Town 34 - [postcode] => AB24 1CD - [lng] => 101.750815 - [lat] => 53.766461 - [contributor] => - ) - - [783] => Array - ( - [id] => 785 - [title] => Facility 765 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 765 - [houseNumber] => 77 - [streetName] => Street 6 - [county] => County 19 - [town] => Town 26 - [postcode] => AB24 2CD - [lng] => 136.896239 - [lat] => -89.370139 - [contributor] => - ) - - [784] => Array - ( - [id] => 786 - [title] => Facility 766 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 766 - [houseNumber] => 9941 - [streetName] => Street 11 - [county] => County 2 - [town] => Town 40 - [postcode] => AB85 4CD - [lng] => -84.066112 - [lat] => 65.090323 - [contributor] => - ) - - [785] => Array - ( - [id] => 787 - [title] => Facility 767 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 767 - [houseNumber] => 5468 - [streetName] => Street 47 - [county] => County 1 - [town] => Town 31 - [postcode] => AB71 5CD - [lng] => -64.376066 - [lat] => -35.606608 - [contributor] => - ) - - [786] => Array - ( - [id] => 788 - [title] => Facility 768 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 768 - [houseNumber] => 1942 - [streetName] => Street 30 - [county] => County 19 - [town] => Town 29 - [postcode] => AB70 9CD - [lng] => 146.568986 - [lat] => 38.908459 - [contributor] => - ) - - [787] => Array - ( - [id] => 789 - [title] => Facility 769 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 769 - [houseNumber] => 3312 - [streetName] => Street 31 - [county] => County 2 - [town] => Town 40 - [postcode] => AB72 2CD - [lng] => 30.923782 - [lat] => 2.828302 - [contributor] => - ) - - [788] => Array - ( - [id] => 790 - [title] => Facility 770 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 770 - [houseNumber] => 5440 - [streetName] => Street 32 - [county] => County 17 - [town] => Town 50 - [postcode] => AB43 2CD - [lng] => -118.687075 - [lat] => -23.301142 - [contributor] => - ) - - [789] => Array - ( - [id] => 791 - [title] => Facility 771 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 771 - [houseNumber] => 18 - [streetName] => Street 21 - [county] => County 13 - [town] => Town 1 - [postcode] => AB73 4CD - [lng] => -21.636559 - [lat] => 54.959577 - [contributor] => - ) - - [790] => Array - ( - [id] => 792 - [title] => Facility 772 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 772 - [houseNumber] => 615 - [streetName] => Street 37 - [county] => County 6 - [town] => Town 38 - [postcode] => AB77 8CD - [lng] => -129.628936 - [lat] => -17.477444 - [contributor] => - ) - - [791] => Array - ( - [id] => 793 - [title] => Facility 773 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 773 - [houseNumber] => 6969 - [streetName] => Street 19 - [county] => County 20 - [town] => Town 48 - [postcode] => AB68 6CD - [lng] => 55.866597 - [lat] => -19.035378 - [contributor] => - ) - - [792] => Array - ( - [id] => 794 - [title] => Facility 774 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 774 - [houseNumber] => 1290 - [streetName] => Street 44 - [county] => County 4 - [town] => Town 43 - [postcode] => AB38 9CD - [lng] => 74.042131 - [lat] => -39.888009 - [contributor] => - ) - - [793] => Array - ( - [id] => 795 - [title] => Facility 775 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 775 - [houseNumber] => 9286 - [streetName] => Street 11 - [county] => County 17 - [town] => Town 47 - [postcode] => AB94 6CD - [lng] => 107.504307 - [lat] => -28.782829 - [contributor] => - ) - - [794] => Array - ( - [id] => 796 - [title] => Facility 776 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 776 - [houseNumber] => 1693 - [streetName] => Street 24 - [county] => County 14 - [town] => Town 22 - [postcode] => AB67 2CD - [lng] => -166.31746 - [lat] => 45.455656 - [contributor] => - ) - - [795] => Array - ( - [id] => 797 - [title] => Facility 777 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 777 - [houseNumber] => 3036 - [streetName] => Street 30 - [county] => County 5 - [town] => Town 44 - [postcode] => AB72 1CD - [lng] => -84.83011 - [lat] => -46.332527 - [contributor] => - ) - - [796] => Array - ( - [id] => 798 - [title] => Facility 778 - [status] => - [category] => e-Scooters - [description] => Description for facility 778 - [houseNumber] => 1046 - [streetName] => Street 2 - [county] => County 10 - [town] => Town 16 - [postcode] => AB82 4CD - [lng] => -54.868592 - [lat] => -3.768327 - [contributor] => - ) - - [797] => Array - ( - [id] => 799 - [title] => Facility 779 - [status] => - [category] => e-Scooters - [description] => Description for facility 779 - [houseNumber] => 9680 - [streetName] => Street 9 - [county] => County 13 - [town] => Town 12 - [postcode] => AB75 6CD - [lng] => -152.41152 - [lat] => -18.382938 - [contributor] => - ) - - [798] => Array - ( - [id] => 800 - [title] => Facility 780 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 780 - [houseNumber] => 2010 - [streetName] => Street 40 - [county] => County 10 - [town] => Town 6 - [postcode] => AB93 1CD - [lng] => 155.51994 - [lat] => -62.96983 - [contributor] => - ) - - [799] => Array - ( - [id] => 801 - [title] => Facility 781 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 781 - [houseNumber] => 4725 - [streetName] => Street 8 - [county] => County 1 - [town] => Town 49 - [postcode] => AB80 8CD - [lng] => 86.854093 - [lat] => 40.512578 - [contributor] => - ) - - [800] => Array - ( - [id] => 802 - [title] => Facility 782 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 782 - [houseNumber] => 9419 - [streetName] => Street 40 - [county] => County 10 - [town] => Town 27 - [postcode] => AB13 5CD - [lng] => -145.370289 - [lat] => -49.451931 - [contributor] => - ) - - [801] => Array - ( - [id] => 803 - [title] => Facility 783 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 783 - [houseNumber] => 6917 - [streetName] => Street 49 - [county] => County 14 - [town] => Town 17 - [postcode] => AB62 8CD - [lng] => 4.815978 - [lat] => -17.899796 - [contributor] => - ) - - [802] => Array - ( - [id] => 804 - [title] => Facility 784 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 784 - [houseNumber] => 2614 - [streetName] => Street 3 - [county] => County 16 - [town] => Town 15 - [postcode] => AB19 1CD - [lng] => 172.315016 - [lat] => 84.645515 - [contributor] => - ) - - [803] => Array - ( - [id] => 805 - [title] => Facility 785 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 785 - [houseNumber] => 3274 - [streetName] => Street 35 - [county] => County 5 - [town] => Town 44 - [postcode] => AB83 5CD - [lng] => -113.780334 - [lat] => -77.685879 - [contributor] => - ) - - [804] => Array - ( - [id] => 806 - [title] => Facility 786 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 786 - [houseNumber] => 444 - [streetName] => Street 33 - [county] => County 12 - [town] => Town 47 - [postcode] => AB90 6CD - [lng] => -135.532755 - [lat] => 63.183077 - [contributor] => - ) - - [805] => Array - ( - [id] => 807 - [title] => Facility 787 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 787 - [houseNumber] => 8746 - [streetName] => Street 15 - [county] => County 13 - [town] => Town 12 - [postcode] => AB22 8CD - [lng] => 39.791308 - [lat] => 33.898555 - [contributor] => - ) - - [806] => Array - ( - [id] => 808 - [title] => Facility 788 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 788 - [houseNumber] => 2317 - [streetName] => Street 19 - [county] => County 1 - [town] => Town 36 - [postcode] => AB25 2CD - [lng] => -168.42351 - [lat] => 63.656804 - [contributor] => - ) - - [807] => Array - ( - [id] => 809 - [title] => Facility 789 - [status] => - [category] => Recycling Bins - [description] => Description for facility 789 - [houseNumber] => 6624 - [streetName] => Street 3 - [county] => County 19 - [town] => Town 24 - [postcode] => AB47 7CD - [lng] => 111.100036 - [lat] => -89.204111 - [contributor] => - ) - - [808] => Array - ( - [id] => 810 - [title] => Facility 790 - [status] => - [category] => Green Roofs - [description] => Description for facility 790 - [houseNumber] => 9439 - [streetName] => Street 48 - [county] => County 4 - [town] => Town 3 - [postcode] => AB74 7CD - [lng] => -98.600307 - [lat] => -65.022288 - [contributor] => - ) - - [809] => Array - ( - [id] => 811 - [title] => Facility 791 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 791 - [houseNumber] => 4594 - [streetName] => Street 49 - [county] => County 13 - [town] => Town 33 - [postcode] => AB60 3CD - [lng] => -172.928351 - [lat] => -12.479783 - [contributor] => - ) - - [810] => Array - ( - [id] => 812 - [title] => Facility 792 - [status] => - [category] => e-Scooters - [description] => Description for facility 792 - [houseNumber] => 4932 - [streetName] => Street 24 - [county] => County 13 - [town] => Town 21 - [postcode] => AB95 1CD - [lng] => 147.364651 - [lat] => -74.407102 - [contributor] => - ) - - [811] => Array - ( - [id] => 813 - [title] => Facility 793 - [status] => - [category] => e-Scooters - [description] => Description for facility 793 - [houseNumber] => 4614 - [streetName] => Street 2 - [county] => County 11 - [town] => Town 19 - [postcode] => AB76 4CD - [lng] => 176.807515 - [lat] => -45.382752 - [contributor] => - ) - - [812] => Array - ( - [id] => 814 - [title] => Facility 794 - [status] => - [category] => e-Scooters - [description] => Description for facility 794 - [houseNumber] => 9564 - [streetName] => Street 22 - [county] => County 7 - [town] => Town 30 - [postcode] => AB34 4CD - [lng] => -118.149266 - [lat] => -0.326087 - [contributor] => - ) - - [813] => Array - ( - [id] => 815 - [title] => Facility 795 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 795 - [houseNumber] => 8962 - [streetName] => Street 30 - [county] => County 14 - [town] => Town 17 - [postcode] => AB46 1CD - [lng] => 64.221459 - [lat] => 83.013238 - [contributor] => - ) - - [814] => Array - ( - [id] => 816 - [title] => Facility 796 - [status] => - [category] => e-Scooters - [description] => Description for facility 796 - [houseNumber] => 4647 - [streetName] => Street 15 - [county] => County 4 - [town] => Town 20 - [postcode] => AB72 7CD - [lng] => -61.819946 - [lat] => 76.663938 - [contributor] => - ) - - [815] => Array - ( - [id] => 817 - [title] => Facility 797 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 797 - [houseNumber] => 4769 - [streetName] => Street 30 - [county] => County 6 - [town] => Town 45 - [postcode] => AB12 6CD - [lng] => 50.602247 - [lat] => -69.715103 - [contributor] => - ) - - [816] => Array - ( - [id] => 818 - [title] => Facility 798 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 798 - [houseNumber] => 9480 - [streetName] => Street 14 - [county] => County 16 - [town] => Town 16 - [postcode] => AB34 7CD - [lng] => 170.629592 - [lat] => 65.096688 - [contributor] => - ) - - [817] => Array - ( - [id] => 819 - [title] => Facility 799 - [status] => - [category] => e-Scooters - [description] => Description for facility 799 - [houseNumber] => 2573 - [streetName] => Street 28 - [county] => County 17 - [town] => Town 46 - [postcode] => AB33 7CD - [lng] => 1.519935 - [lat] => -63.419202 - [contributor] => - ) - - [818] => Array - ( - [id] => 820 - [title] => Facility 800 - [status] => - [category] => Recycling Bins - [description] => Description for facility 800 - [houseNumber] => 2971 - [streetName] => Street 24 - [county] => County 8 - [town] => Town 25 - [postcode] => AB75 8CD - [lng] => -20.433106 - [lat] => 30.976064 - [contributor] => - ) - - [819] => Array - ( - [id] => 821 - [title] => Facility 801 - [status] => - [category] => Green Roofs - [description] => Description for facility 801 - [houseNumber] => 6177 - [streetName] => Street 20 - [county] => County 15 - [town] => Town 41 - [postcode] => AB53 5CD - [lng] => -46.55191 - [lat] => -26.848536 - [contributor] => - ) - - [820] => Array - ( - [id] => 822 - [title] => Facility 802 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 802 - [houseNumber] => 7550 - [streetName] => Street 3 - [county] => County 6 - [town] => Town 5 - [postcode] => AB26 3CD - [lng] => 3.114985 - [lat] => 29.397732 - [contributor] => - ) - - [821] => Array - ( - [id] => 823 - [title] => Facility 803 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 803 - [houseNumber] => 5636 - [streetName] => Street 23 - [county] => County 16 - [town] => Town 17 - [postcode] => AB79 5CD - [lng] => -47.370403 - [lat] => -42.225184 - [contributor] => - ) - - [822] => Array - ( - [id] => 824 - [title] => Facility 804 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 804 - [houseNumber] => 102 - [streetName] => Street 40 - [county] => County 8 - [town] => Town 25 - [postcode] => AB59 8CD - [lng] => 73.100655 - [lat] => 14.556717 - [contributor] => - ) - - [823] => Array - ( - [id] => 825 - [title] => Facility 805 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 805 - [houseNumber] => 882 - [streetName] => Street 50 - [county] => County 7 - [town] => Town 45 - [postcode] => AB89 6CD - [lng] => -103.308311 - [lat] => -41.961688 - [contributor] => - ) - - [824] => Array - ( - [id] => 826 - [title] => Facility 806 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 806 - [houseNumber] => 8104 - [streetName] => Street 5 - [county] => County 17 - [town] => Town 39 - [postcode] => AB73 9CD - [lng] => 105.4883 - [lat] => 72.89944 - [contributor] => - ) - - [825] => Array - ( - [id] => 827 - [title] => Facility 807 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 807 - [houseNumber] => 5952 - [streetName] => Street 27 - [county] => County 1 - [town] => Town 25 - [postcode] => AB69 1CD - [lng] => -132.048787 - [lat] => -55.785009 - [contributor] => - ) - - [826] => Array - ( - [id] => 828 - [title] => Facility 808 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 808 - [houseNumber] => 4992 - [streetName] => Street 47 - [county] => County 11 - [town] => Town 36 - [postcode] => AB96 6CD - [lng] => -84.771254 - [lat] => 20.25543 - [contributor] => - ) - - [827] => Array - ( - [id] => 829 - [title] => Facility 809 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 809 - [houseNumber] => 5752 - [streetName] => Street 7 - [county] => County 20 - [town] => Town 42 - [postcode] => AB80 1CD - [lng] => -106.064001 - [lat] => -81.533567 - [contributor] => - ) - - [828] => Array - ( - [id] => 830 - [title] => Facility 810 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 810 - [houseNumber] => 1452 - [streetName] => Street 46 - [county] => County 20 - [town] => Town 44 - [postcode] => AB15 8CD - [lng] => 48.01191 - [lat] => 8.851479 - [contributor] => - ) - - [829] => Array - ( - [id] => 831 - [title] => Facility 811 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 811 - [houseNumber] => 3586 - [streetName] => Street 9 - [county] => County 10 - [town] => Town 5 - [postcode] => AB64 3CD - [lng] => -149.940807 - [lat] => 45.650348 - [contributor] => - ) - - [830] => Array - ( - [id] => 832 - [title] => Facility 812 - [status] => - [category] => e-Scooters - [description] => Description for facility 812 - [houseNumber] => 1998 - [streetName] => Street 7 - [county] => County 10 - [town] => Town 47 - [postcode] => AB40 1CD - [lng] => 103.557752 - [lat] => 14.033057 - [contributor] => - ) - - [831] => Array - ( - [id] => 833 - [title] => Facility 813 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 813 - [houseNumber] => 5236 - [streetName] => Street 1 - [county] => County 3 - [town] => Town 38 - [postcode] => AB61 8CD - [lng] => -175.646185 - [lat] => 78.371498 - [contributor] => - ) - - [832] => Array - ( - [id] => 834 - [title] => Facility 814 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 814 - [houseNumber] => 3153 - [streetName] => Street 9 - [county] => County 5 - [town] => Town 4 - [postcode] => AB32 7CD - [lng] => 128.690567 - [lat] => -65.364901 - [contributor] => - ) - - [833] => Array - ( - [id] => 835 - [title] => Facility 815 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 815 - [houseNumber] => 1325 - [streetName] => Street 29 - [county] => County 11 - [town] => Town 46 - [postcode] => AB86 9CD - [lng] => -109.719392 - [lat] => 74.449757 - [contributor] => - ) - - [834] => Array - ( - [id] => 836 - [title] => Facility 816 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 816 - [houseNumber] => 9996 - [streetName] => Street 22 - [county] => County 1 - [town] => Town 30 - [postcode] => AB93 1CD - [lng] => -152.062494 - [lat] => -14.34421 - [contributor] => - ) - - [835] => Array - ( - [id] => 837 - [title] => Facility 817 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 817 - [houseNumber] => 20 - [streetName] => Street 8 - [county] => County 2 - [town] => Town 8 - [postcode] => AB93 2CD - [lng] => 33.581762 - [lat] => 42.45457 - [contributor] => - ) - - [836] => Array - ( - [id] => 838 - [title] => Facility 818 - [status] => - [category] => e-Scooters - [description] => Description for facility 818 - [houseNumber] => 9816 - [streetName] => Street 16 - [county] => County 9 - [town] => Town 4 - [postcode] => AB23 3CD - [lng] => 52.847691 - [lat] => 67.30601 - [contributor] => - ) - - [837] => Array - ( - [id] => 839 - [title] => Facility 819 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 819 - [houseNumber] => 8610 - [streetName] => Street 26 - [county] => County 19 - [town] => Town 36 - [postcode] => AB59 9CD - [lng] => -168.756244 - [lat] => 25.462007 - [contributor] => - ) - - [838] => Array - ( - [id] => 840 - [title] => Facility 820 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 820 - [houseNumber] => 2482 - [streetName] => Street 29 - [county] => County 4 - [town] => Town 39 - [postcode] => AB22 9CD - [lng] => -111.770746 - [lat] => 21.927325 - [contributor] => - ) - - [839] => Array - ( - [id] => 841 - [title] => Facility 821 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 821 - [houseNumber] => 7510 - [streetName] => Street 4 - [county] => County 9 - [town] => Town 24 - [postcode] => AB44 7CD - [lng] => 51.42829 - [lat] => -8.643911 - [contributor] => - ) - - [840] => Array - ( - [id] => 842 - [title] => Facility 822 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 822 - [houseNumber] => 2718 - [streetName] => Street 22 - [county] => County 2 - [town] => Town 8 - [postcode] => AB62 1CD - [lng] => -0.547744 - [lat] => 29.07864 - [contributor] => - ) - - [841] => Array - ( - [id] => 843 - [title] => Facility 823 - [status] => - [category] => Recycling Bins - [description] => Description for facility 823 - [houseNumber] => 9991 - [streetName] => Street 32 - [county] => County 6 - [town] => Town 43 - [postcode] => AB96 8CD - [lng] => -5.224386 - [lat] => -81.275732 - [contributor] => - ) - - [842] => Array - ( - [id] => 844 - [title] => Facility 824 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 824 - [houseNumber] => 4777 - [streetName] => Street 6 - [county] => County 16 - [town] => Town 20 - [postcode] => AB77 9CD - [lng] => -75.8971 - [lat] => 34.543351 - [contributor] => - ) - - [843] => Array - ( - [id] => 845 - [title] => Facility 825 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 825 - [houseNumber] => 9436 - [streetName] => Street 19 - [county] => County 11 - [town] => Town 18 - [postcode] => AB28 6CD - [lng] => -114.896255 - [lat] => 75.342002 - [contributor] => - ) - - [844] => Array - ( - [id] => 846 - [title] => Facility 826 - [status] => - [category] => Recycling Bins - [description] => Description for facility 826 - [houseNumber] => 1215 - [streetName] => Street 31 - [county] => County 20 - [town] => Town 39 - [postcode] => AB60 2CD - [lng] => -65.287203 - [lat] => 55.591557 - [contributor] => - ) - - [845] => Array - ( - [id] => 847 - [title] => Facility 827 - [status] => - [category] => e-Scooters - [description] => Description for facility 827 - [houseNumber] => 5886 - [streetName] => Street 13 - [county] => County 7 - [town] => Town 48 - [postcode] => AB23 2CD - [lng] => 138.890977 - [lat] => 53.977609 - [contributor] => - ) - - [846] => Array - ( - [id] => 848 - [title] => Facility 828 - [status] => - [category] => Recycling Bins - [description] => Description for facility 828 - [houseNumber] => 3302 - [streetName] => Street 22 - [county] => County 10 - [town] => Town 41 - [postcode] => AB21 6CD - [lng] => 173.465932 - [lat] => 68.625512 - [contributor] => - ) - - [847] => Array - ( - [id] => 849 - [title] => Facility 829 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 829 - [houseNumber] => 1167 - [streetName] => Street 16 - [county] => County 10 - [town] => Town 47 - [postcode] => AB70 7CD - [lng] => -75.042922 - [lat] => 78.698632 - [contributor] => - ) - - [848] => Array - ( - [id] => 850 - [title] => Facility 830 - [status] => - [category] => Green Roofs - [description] => Description for facility 830 - [houseNumber] => 8234 - [streetName] => Street 30 - [county] => County 10 - [town] => Town 7 - [postcode] => AB37 6CD - [lng] => -4.17132 - [lat] => 45.551211 - [contributor] => - ) - - [849] => Array - ( - [id] => 851 - [title] => Facility 831 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 831 - [houseNumber] => 9498 - [streetName] => Street 22 - [county] => County 11 - [town] => Town 30 - [postcode] => AB28 1CD - [lng] => 57.465573 - [lat] => 72.066204 - [contributor] => - ) - - [850] => Array - ( - [id] => 852 - [title] => Facility 832 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 832 - [houseNumber] => 822 - [streetName] => Street 42 - [county] => County 17 - [town] => Town 23 - [postcode] => AB37 1CD - [lng] => 40.640888 - [lat] => -21.530465 - [contributor] => - ) - - [851] => Array - ( - [id] => 853 - [title] => Facility 833 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 833 - [houseNumber] => 6667 - [streetName] => Street 11 - [county] => County 2 - [town] => Town 25 - [postcode] => AB66 8CD - [lng] => -179.397271 - [lat] => 49.555275 - [contributor] => - ) - - [852] => Array - ( - [id] => 854 - [title] => Facility 834 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 834 - [houseNumber] => 8453 - [streetName] => Street 18 - [county] => County 4 - [town] => Town 10 - [postcode] => AB56 1CD - [lng] => 179.937771 - [lat] => -11.248382 - [contributor] => - ) - - [853] => Array - ( - [id] => 855 - [title] => Facility 835 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 835 - [houseNumber] => 876 - [streetName] => Street 26 - [county] => County 20 - [town] => Town 33 - [postcode] => AB62 9CD - [lng] => -134.5816 - [lat] => -43.143171 - [contributor] => - ) - - [854] => Array - ( - [id] => 856 - [title] => Facility 836 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 836 - [houseNumber] => 9874 - [streetName] => Street 6 - [county] => County 3 - [town] => Town 10 - [postcode] => AB27 9CD - [lng] => 46.372633 - [lat] => 26.229882 - [contributor] => - ) - - [855] => Array - ( - [id] => 857 - [title] => Facility 837 - [status] => - [category] => Recycling Bins - [description] => Description for facility 837 - [houseNumber] => 731 - [streetName] => Street 6 - [county] => County 3 - [town] => Town 17 - [postcode] => AB81 9CD - [lng] => -58.863645 - [lat] => 9.965817 - [contributor] => Benny - ) - - [856] => Array - ( - [id] => 858 - [title] => Facility 838 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 838 - [houseNumber] => 9952 - [streetName] => Street 30 - [county] => County 1 - [town] => Town 42 - [postcode] => AB51 9CD - [lng] => -43.112484 - [lat] => 73.033399 - [contributor] => - ) - - [857] => Array - ( - [id] => 859 - [title] => Facility 839 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 839 - [houseNumber] => 9264 - [streetName] => Street 16 - [county] => County 2 - [town] => Town 17 - [postcode] => AB34 5CD - [lng] => 59.534099 - [lat] => -11.082378 - [contributor] => - ) - - [858] => Array - ( - [id] => 860 - [title] => Facility 840 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 840 - [houseNumber] => 9397 - [streetName] => Street 38 - [county] => County 15 - [town] => Town 29 - [postcode] => AB56 4CD - [lng] => -33.057615 - [lat] => -74.901027 - [contributor] => - ) - - [859] => Array - ( - [id] => 861 - [title] => Facility 841 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 841 - [houseNumber] => 5746 - [streetName] => Street 34 - [county] => County 6 - [town] => Town 21 - [postcode] => AB67 6CD - [lng] => 164.105648 - [lat] => 50.424163 - [contributor] => - ) - - [860] => Array - ( - [id] => 862 - [title] => Facility 842 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 842 - [houseNumber] => 3514 - [streetName] => Street 23 - [county] => County 15 - [town] => Town 42 - [postcode] => AB49 1CD - [lng] => -106.382293 - [lat] => -13.158395 - [contributor] => - ) - - [861] => Array - ( - [id] => 863 - [title] => Facility 843 - [status] => - [category] => Recycling Bins - [description] => Description for facility 843 - [houseNumber] => 460 - [streetName] => Street 32 - [county] => County 19 - [town] => Town 10 - [postcode] => AB29 4CD - [lng] => 174.218505 - [lat] => -46.352372 - [contributor] => - ) - - [862] => Array - ( - [id] => 864 - [title] => Facility 844 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 844 - [houseNumber] => 2304 - [streetName] => Street 20 - [county] => County 19 - [town] => Town 41 - [postcode] => AB33 3CD - [lng] => 56.778664 - [lat] => -80.613207 - [contributor] => - ) - - [863] => Array - ( - [id] => 865 - [title] => Facility 845 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 845 - [houseNumber] => 4252 - [streetName] => Street 14 - [county] => County 6 - [town] => Town 6 - [postcode] => AB46 3CD - [lng] => 59.984912 - [lat] => -88.03929 - [contributor] => Admin - ) - - [864] => Array - ( - [id] => 866 - [title] => Facility 846 - [status] => - [category] => e-Scooters - [description] => Description for facility 846 - [houseNumber] => 448 - [streetName] => Street 9 - [county] => County 16 - [town] => Town 8 - [postcode] => AB88 2CD - [lng] => 65.441708 - [lat] => 1.083904 - [contributor] => - ) - - [865] => Array - ( - [id] => 867 - [title] => Facility 847 - [status] => - [category] => Recycling Bins - [description] => Description for facility 847 - [houseNumber] => 1962 - [streetName] => Street 40 - [county] => County 10 - [town] => Town 14 - [postcode] => AB52 4CD - [lng] => 120.67121 - [lat] => 35.010551 - [contributor] => - ) - - [866] => Array - ( - [id] => 868 - [title] => Facility 848 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 848 - [houseNumber] => 924 - [streetName] => Street 44 - [county] => County 17 - [town] => Town 45 - [postcode] => AB41 5CD - [lng] => -0.917265 - [lat] => -62.883257 - [contributor] => - ) - - [867] => Array - ( - [id] => 869 - [title] => Facility 849 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 849 - [houseNumber] => 9162 - [streetName] => Street 30 - [county] => County 12 - [town] => Town 6 - [postcode] => AB15 5CD - [lng] => 114.166066 - [lat] => -21.957008 - [contributor] => - ) - - [868] => Array - ( - [id] => 870 - [title] => Facility 850 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 850 - [houseNumber] => 9214 - [streetName] => Street 50 - [county] => County 19 - [town] => Town 4 - [postcode] => AB78 6CD - [lng] => 157.120169 - [lat] => -56.841871 - [contributor] => - ) - - [869] => Array - ( - [id] => 871 - [title] => Facility 851 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 851 - [houseNumber] => 1787 - [streetName] => Street 42 - [county] => County 2 - [town] => Town 18 - [postcode] => AB12 8CD - [lng] => -116.683594 - [lat] => -63.098738 - [contributor] => - ) - - [870] => Array - ( - [id] => 872 - [title] => Facility 852 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 852 - [houseNumber] => 920 - [streetName] => Street 18 - [county] => County 6 - [town] => Town 48 - [postcode] => AB75 6CD - [lng] => -87.645145 - [lat] => -73.31423 - [contributor] => - ) - - [871] => Array - ( - [id] => 873 - [title] => Facility 853 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 853 - [houseNumber] => 5393 - [streetName] => Street 48 - [county] => County 15 - [town] => Town 13 - [postcode] => AB16 8CD - [lng] => 147.79496 - [lat] => 24.075783 - [contributor] => - ) - - [872] => Array - ( - [id] => 874 - [title] => Facility 854 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 854 - [houseNumber] => 5559 - [streetName] => Street 48 - [county] => County 2 - [town] => Town 5 - [postcode] => AB81 6CD - [lng] => 129.359217 - [lat] => -83.781878 - [contributor] => - ) - - [873] => Array - ( - [id] => 875 - [title] => Facility 855 - [status] => - [category] => Recycling Bins - [description] => Description for facility 855 - [houseNumber] => 517 - [streetName] => Street 26 - [county] => County 11 - [town] => Town 48 - [postcode] => AB45 2CD - [lng] => -41.679902 - [lat] => 59.265789 - [contributor] => - ) - - [874] => Array - ( - [id] => 876 - [title] => Facility 856 - [status] => - [category] => Recycling Bins - [description] => Description for facility 856 - [houseNumber] => 5691 - [streetName] => Street 9 - [county] => County 11 - [town] => Town 31 - [postcode] => AB44 8CD - [lng] => 72.075014 - [lat] => -42.040234 - [contributor] => - ) - - [875] => Array - ( - [id] => 877 - [title] => Facility 857 - [status] => - [category] => e-Scooters - [description] => Description for facility 857 - [houseNumber] => 2649 - [streetName] => Street 15 - [county] => County 18 - [town] => Town 28 - [postcode] => AB30 2CD - [lng] => -20.058352 - [lat] => -48.17866 - [contributor] => - ) - - [876] => Array - ( - [id] => 878 - [title] => Facility 858 - [status] => - [category] => e-Scooters - [description] => Description for facility 858 - [houseNumber] => 1447 - [streetName] => Street 42 - [county] => County 10 - [town] => Town 43 - [postcode] => AB36 8CD - [lng] => -52.402699 - [lat] => -65.041203 - [contributor] => - ) - - [877] => Array - ( - [id] => 879 - [title] => Facility 859 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 859 - [houseNumber] => 142 - [streetName] => Street 48 - [county] => County 14 - [town] => Town 29 - [postcode] => AB71 3CD - [lng] => -18.318012 - [lat] => -57.780475 - [contributor] => - ) - - [878] => Array - ( - [id] => 880 - [title] => Facility 860 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 860 - [houseNumber] => 9939 - [streetName] => Street 37 - [county] => County 2 - [town] => Town 19 - [postcode] => AB37 4CD - [lng] => 156.149686 - [lat] => -63.438491 - [contributor] => - ) - - [879] => Array - ( - [id] => 881 - [title] => Facility 861 - [status] => - [category] => Recycling Bins - [description] => Description for facility 861 - [houseNumber] => 8558 - [streetName] => Street 49 - [county] => County 7 - [town] => Town 19 - [postcode] => AB96 2CD - [lng] => -132.813968 - [lat] => -45.377434 - [contributor] => - ) - - [880] => Array - ( - [id] => 882 - [title] => Facility 862 - [status] => - [category] => e-Scooters - [description] => Description for facility 862 - [houseNumber] => 1962 - [streetName] => Street 19 - [county] => County 3 - [town] => Town 21 - [postcode] => AB10 6CD - [lng] => 124.373642 - [lat] => -60.382615 - [contributor] => Benny - ) - - [881] => Array - ( - [id] => 883 - [title] => Facility 863 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 863 - [houseNumber] => 7719 - [streetName] => Street 29 - [county] => County 12 - [town] => Town 16 - [postcode] => AB10 9CD - [lng] => -64.686284 - [lat] => -88.151266 - [contributor] => - ) - - [882] => Array - ( - [id] => 884 - [title] => Facility 864 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 864 - [houseNumber] => 3003 - [streetName] => Street 26 - [county] => County 11 - [town] => Town 25 - [postcode] => AB64 9CD - [lng] => -166.499977 - [lat] => -71.295814 - [contributor] => - ) - - [883] => Array - ( - [id] => 885 - [title] => Facility 865 - [status] => - [category] => e-Scooters - [description] => Description for facility 865 - [houseNumber] => 5132 - [streetName] => Street 43 - [county] => County 17 - [town] => Town 29 - [postcode] => AB23 3CD - [lng] => 121.559517 - [lat] => -23.503859 - [contributor] => - ) - - [884] => Array - ( - [id] => 886 - [title] => Facility 866 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 866 - [houseNumber] => 3623 - [streetName] => Street 11 - [county] => County 12 - [town] => Town 18 - [postcode] => AB77 2CD - [lng] => 37.783213 - [lat] => 57.721354 - [contributor] => - ) - - [885] => Array - ( - [id] => 887 - [title] => Facility 867 - [status] => - [category] => Recycling Bins - [description] => Description for facility 867 - [houseNumber] => 4598 - [streetName] => Street 44 - [county] => County 7 - [town] => Town 31 - [postcode] => AB17 4CD - [lng] => -123.825083 - [lat] => 48.706427 - [contributor] => - ) - - [886] => Array - ( - [id] => 888 - [title] => Facility 868 - [status] => - [category] => Green Roofs - [description] => Description for facility 868 - [houseNumber] => 8944 - [streetName] => Street 5 - [county] => County 14 - [town] => Town 16 - [postcode] => AB88 7CD - [lng] => 1.406022 - [lat] => -39.631435 - [contributor] => - ) - - [887] => Array - ( - [id] => 889 - [title] => Facility 869 - [status] => - [category] => Green Roofs - [description] => Description for facility 869 - [houseNumber] => 9355 - [streetName] => Street 24 - [county] => County 14 - [town] => Town 46 - [postcode] => AB90 9CD - [lng] => -116.133626 - [lat] => -23.659566 - [contributor] => - ) - - [888] => Array - ( - [id] => 890 - [title] => Facility 870 - [status] => - [category] => e-Scooters - [description] => Description for facility 870 - [houseNumber] => 5865 - [streetName] => Street 3 - [county] => County 2 - [town] => Town 32 - [postcode] => AB77 7CD - [lng] => 91.046548 - [lat] => -77.700956 - [contributor] => - ) - - [889] => Array - ( - [id] => 891 - [title] => Facility 871 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 871 - [houseNumber] => 8281 - [streetName] => Street 9 - [county] => County 3 - [town] => Town 23 - [postcode] => AB80 1CD - [lng] => 138.525973 - [lat] => 36.425954 - [contributor] => - ) - - [890] => Array - ( - [id] => 892 - [title] => Facility 872 - [status] => - [category] => e-Scooters - [description] => Description for facility 872 - [houseNumber] => 7561 - [streetName] => Street 14 - [county] => County 16 - [town] => Town 7 - [postcode] => AB88 1CD - [lng] => -100.261 - [lat] => -50.609456 - [contributor] => - ) - - [891] => Array - ( - [id] => 893 - [title] => Facility 873 - [status] => - [category] => Recycling Bins - [description] => Description for facility 873 - [houseNumber] => 6002 - [streetName] => Street 47 - [county] => County 3 - [town] => Town 5 - [postcode] => AB46 1CD - [lng] => 135.31012 - [lat] => 13.420456 - [contributor] => - ) - - [892] => Array - ( - [id] => 894 - [title] => Facility 874 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 874 - [houseNumber] => 2175 - [streetName] => Street 17 - [county] => County 5 - [town] => Town 10 - [postcode] => AB78 6CD - [lng] => -3.972472 - [lat] => 3.234852 - [contributor] => - ) - - [893] => Array - ( - [id] => 895 - [title] => Facility 875 - [status] => - [category] => Green Roofs - [description] => Description for facility 875 - [houseNumber] => 7333 - [streetName] => Street 8 - [county] => County 4 - [town] => Town 44 - [postcode] => AB17 6CD - [lng] => -74.595259 - [lat] => -19.747448 - [contributor] => - ) - - [894] => Array - ( - [id] => 896 - [title] => Facility 876 - [status] => - [category] => e-Scooters - [description] => Description for facility 876 - [houseNumber] => 2876 - [streetName] => Street 12 - [county] => County 6 - [town] => Town 22 - [postcode] => AB52 2CD - [lng] => 125.189013 - [lat] => -24.759537 - [contributor] => - ) - - [895] => Array - ( - [id] => 897 - [title] => Facility 877 - [status] => - [category] => Green Roofs - [description] => Description for facility 877 - [houseNumber] => 2280 - [streetName] => Street 26 - [county] => County 14 - [town] => Town 45 - [postcode] => AB20 1CD - [lng] => 125.355637 - [lat] => 22.734195 - [contributor] => - ) - - [896] => Array - ( - [id] => 898 - [title] => Facility 878 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 878 - [houseNumber] => 8243 - [streetName] => Street 23 - [county] => County 15 - [town] => Town 26 - [postcode] => AB60 4CD - [lng] => 10.544167 - [lat] => -37.546914 - [contributor] => - ) - - [897] => Array - ( - [id] => 899 - [title] => Facility 879 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 879 - [houseNumber] => 1006 - [streetName] => Street 44 - [county] => County 1 - [town] => Town 32 - [postcode] => AB87 1CD - [lng] => -86.23024 - [lat] => -22.287916 - [contributor] => - ) - - [898] => Array - ( - [id] => 900 - [title] => Facility 880 - [status] => - [category] => Green Roofs - [description] => Description for facility 880 - [houseNumber] => 181 - [streetName] => Street 31 - [county] => County 15 - [town] => Town 28 - [postcode] => AB62 6CD - [lng] => -80.410523 - [lat] => 2.584124 - [contributor] => - ) - - [899] => Array - ( - [id] => 901 - [title] => Facility 881 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 881 - [houseNumber] => 4460 - [streetName] => Street 15 - [county] => County 1 - [town] => Town 17 - [postcode] => AB87 6CD - [lng] => 46.366243 - [lat] => 63.690865 - [contributor] => - ) - - [900] => Array - ( - [id] => 902 - [title] => Facility 882 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 882 - [houseNumber] => 8301 - [streetName] => Street 31 - [county] => County 3 - [town] => Town 46 - [postcode] => AB41 8CD - [lng] => -137.049439 - [lat] => 34.604061 - [contributor] => - ) - - [901] => Array - ( - [id] => 903 - [title] => Facility 883 - [status] => - [category] => e-Scooters - [description] => Description for facility 883 - [houseNumber] => 6269 - [streetName] => Street 25 - [county] => County 3 - [town] => Town 19 - [postcode] => AB63 6CD - [lng] => -30.709613 - [lat] => -54.340026 - [contributor] => - ) - - [902] => Array - ( - [id] => 904 - [title] => Facility 884 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 884 - [houseNumber] => 907 - [streetName] => Street 38 - [county] => County 3 - [town] => Town 28 - [postcode] => AB86 1CD - [lng] => -56.960816 - [lat] => 21.989606 - [contributor] => - ) - - [903] => Array - ( - [id] => 905 - [title] => Facility 885 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 885 - [houseNumber] => 1123 - [streetName] => Street 10 - [county] => County 2 - [town] => Town 8 - [postcode] => AB45 7CD - [lng] => -52.709792 - [lat] => 69.334503 - [contributor] => - ) - - [904] => Array - ( - [id] => 906 - [title] => Facility 886 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 886 - [houseNumber] => 3300 - [streetName] => Street 4 - [county] => County 13 - [town] => Town 32 - [postcode] => AB53 1CD - [lng] => -91.16603 - [lat] => 70.999738 - [contributor] => - ) - - [905] => Array - ( - [id] => 907 - [title] => Facility 887 - [status] => - [category] => Recycling Bins - [description] => Description for facility 887 - [houseNumber] => 9490 - [streetName] => Street 12 - [county] => County 11 - [town] => Town 25 - [postcode] => AB49 6CD - [lng] => 166.371668 - [lat] => -73.742918 - [contributor] => - ) - - [906] => Array - ( - [id] => 908 - [title] => Facility 888 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 888 - [houseNumber] => 8743 - [streetName] => Street 46 - [county] => County 9 - [town] => Town 31 - [postcode] => AB87 8CD - [lng] => 127.397774 - [lat] => -68.527767 - [contributor] => - ) - - [907] => Array - ( - [id] => 909 - [title] => Facility 889 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 889 - [houseNumber] => 5647 - [streetName] => Street 14 - [county] => County 20 - [town] => Town 34 - [postcode] => AB95 9CD - [lng] => 8.416586 - [lat] => -79.591804 - [contributor] => - ) - - [908] => Array - ( - [id] => 910 - [title] => Facility 890 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 890 - [houseNumber] => 9639 - [streetName] => Street 17 - [county] => County 6 - [town] => Town 29 - [postcode] => AB56 5CD - [lng] => -37.002918 - [lat] => 66.482237 - [contributor] => - ) - - [909] => Array - ( - [id] => 911 - [title] => Facility 891 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 891 - [houseNumber] => 3727 - [streetName] => Street 15 - [county] => County 15 - [town] => Town 1 - [postcode] => AB20 7CD - [lng] => -104.639445 - [lat] => -1.031935 - [contributor] => - ) - - [910] => Array - ( - [id] => 912 - [title] => Facility 892 - [status] => - [category] => e-Scooters - [description] => Description for facility 892 - [houseNumber] => 3279 - [streetName] => Street 14 - [county] => County 19 - [town] => Town 22 - [postcode] => AB99 3CD - [lng] => -53.111417 - [lat] => 50.956769 - [contributor] => - ) - - [911] => Array - ( - [id] => 913 - [title] => Facility 893 - [status] => - [category] => Green Roofs - [description] => Description for facility 893 - [houseNumber] => 1785 - [streetName] => Street 6 - [county] => County 19 - [town] => Town 11 - [postcode] => AB19 6CD - [lng] => 169.274967 - [lat] => 25.267081 - [contributor] => - ) - - [912] => Array - ( - [id] => 914 - [title] => Facility 894 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 894 - [houseNumber] => 1149 - [streetName] => Street 3 - [county] => County 6 - [town] => Town 25 - [postcode] => AB31 7CD - [lng] => -60.513789 - [lat] => 44.086432 - [contributor] => - ) - - [913] => Array - ( - [id] => 915 - [title] => Facility 895 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 895 - [houseNumber] => 8457 - [streetName] => Street 14 - [county] => County 14 - [town] => Town 28 - [postcode] => AB26 6CD - [lng] => -6.306065 - [lat] => 32.317963 - [contributor] => - ) - - [914] => Array - ( - [id] => 916 - [title] => Facility 896 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 896 - [houseNumber] => 4776 - [streetName] => Street 39 - [county] => County 10 - [town] => Town 38 - [postcode] => AB43 3CD - [lng] => 125.097355 - [lat] => -83.80537 - [contributor] => - ) - - [915] => Array - ( - [id] => 917 - [title] => Facility 897 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 897 - [houseNumber] => 3604 - [streetName] => Street 46 - [county] => County 20 - [town] => Town 15 - [postcode] => AB92 8CD - [lng] => 140.101856 - [lat] => 78.819814 - [contributor] => - ) - - [916] => Array - ( - [id] => 918 - [title] => Facility 898 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 898 - [houseNumber] => 8520 - [streetName] => Street 50 - [county] => County 10 - [town] => Town 39 - [postcode] => AB68 7CD - [lng] => -72.566984 - [lat] => 72.895759 - [contributor] => - ) - - [917] => Array - ( - [id] => 919 - [title] => Facility 899 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 899 - [houseNumber] => 9285 - [streetName] => Street 36 - [county] => County 2 - [town] => Town 4 - [postcode] => AB81 6CD - [lng] => 115.02533 - [lat] => -59.317136 - [contributor] => - ) - - [918] => Array - ( - [id] => 920 - [title] => Facility 900 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 900 - [houseNumber] => 8770 - [streetName] => Street 28 - [county] => County 8 - [town] => Town 1 - [postcode] => AB12 2CD - [lng] => -72.904545 - [lat] => -58.350708 - [contributor] => - ) - - [919] => Array - ( - [id] => 921 - [title] => Facility 901 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 901 - [houseNumber] => 6148 - [streetName] => Street 21 - [county] => County 18 - [town] => Town 43 - [postcode] => AB98 2CD - [lng] => 156.831168 - [lat] => 56.328467 - [contributor] => - ) - - [920] => Array - ( - [id] => 922 - [title] => Facility 902 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 902 - [houseNumber] => 8852 - [streetName] => Street 44 - [county] => County 1 - [town] => Town 28 - [postcode] => AB62 9CD - [lng] => -54.224473 - [lat] => 29.479004 - [contributor] => - ) - - [921] => Array - ( - [id] => 923 - [title] => Facility 903 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 903 - [houseNumber] => 3961 - [streetName] => Street 28 - [county] => County 11 - [town] => Town 21 - [postcode] => AB21 7CD - [lng] => 84.336834 - [lat] => -24.512752 - [contributor] => - ) - - [922] => Array - ( - [id] => 924 - [title] => Facility 904 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 904 - [houseNumber] => 916 - [streetName] => Street 36 - [county] => County 12 - [town] => Town 42 - [postcode] => AB59 9CD - [lng] => -17.780658 - [lat] => 1.163307 - [contributor] => - ) - - [923] => Array - ( - [id] => 925 - [title] => Facility 905 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 905 - [houseNumber] => 2978 - [streetName] => Street 42 - [county] => County 15 - [town] => Town 18 - [postcode] => AB63 9CD - [lng] => -140.703482 - [lat] => -7.804315 - [contributor] => - ) - - [924] => Array - ( - [id] => 926 - [title] => Facility 906 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 906 - [houseNumber] => 5136 - [streetName] => Street 3 - [county] => County 10 - [town] => Town 9 - [postcode] => AB73 3CD - [lng] => -40.198736 - [lat] => 45.908725 - [contributor] => - ) - - [925] => Array - ( - [id] => 927 - [title] => Facility 907 - [status] => - [category] => Recycling Bins - [description] => Description for facility 907 - [houseNumber] => 6947 - [streetName] => Street 15 - [county] => County 16 - [town] => Town 47 - [postcode] => AB50 3CD - [lng] => -159.711489 - [lat] => 88.844875 - [contributor] => - ) - - [926] => Array - ( - [id] => 928 - [title] => Facility 908 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 908 - [houseNumber] => 120 - [streetName] => Street 19 - [county] => County 13 - [town] => Town 20 - [postcode] => AB34 8CD - [lng] => -67.114179 - [lat] => 18.678435 - [contributor] => - ) - - [927] => Array - ( - [id] => 929 - [title] => Facility 909 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 909 - [houseNumber] => 781 - [streetName] => Street 47 - [county] => County 13 - [town] => Town 34 - [postcode] => AB44 7CD - [lng] => -112.020275 - [lat] => 41.192796 - [contributor] => - ) - - [928] => Array - ( - [id] => 930 - [title] => Facility 910 - [status] => - [category] => Recycling Bins - [description] => Description for facility 910 - [houseNumber] => 38 - [streetName] => Street 9 - [county] => County 12 - [town] => Town 13 - [postcode] => AB41 7CD - [lng] => -68.938736 - [lat] => 64.35579 - [contributor] => - ) - - [929] => Array - ( - [id] => 931 - [title] => Facility 911 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 911 - [houseNumber] => 9822 - [streetName] => Street 47 - [county] => County 6 - [town] => Town 34 - [postcode] => AB62 7CD - [lng] => -71.938057 - [lat] => 33.127721 - [contributor] => - ) - - [930] => Array - ( - [id] => 932 - [title] => Facility 912 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 912 - [houseNumber] => 6193 - [streetName] => Street 28 - [county] => County 4 - [town] => Town 43 - [postcode] => AB16 3CD - [lng] => 4.435369 - [lat] => -66.724142 - [contributor] => - ) - - [931] => Array - ( - [id] => 933 - [title] => Facility 913 - [status] => - [category] => e-Scooters - [description] => Description for facility 913 - [houseNumber] => 4392 - [streetName] => Street 15 - [county] => County 15 - [town] => Town 20 - [postcode] => AB41 6CD - [lng] => 8.814869 - [lat] => 31.443233 - [contributor] => - ) - - [932] => Array - ( - [id] => 934 - [title] => Facility 914 - [status] => - [category] => e-Scooters - [description] => Description for facility 914 - [houseNumber] => 544 - [streetName] => Street 27 - [county] => County 1 - [town] => Town 33 - [postcode] => AB74 3CD - [lng] => 160.718175 - [lat] => 67.564605 - [contributor] => - ) - - [933] => Array - ( - [id] => 935 - [title] => Facility 915 - [status] => - [category] => Green Roofs - [description] => Description for facility 915 - [houseNumber] => 1829 - [streetName] => Street 34 - [county] => County 14 - [town] => Town 15 - [postcode] => AB85 8CD - [lng] => 170.823229 - [lat] => -55.141972 - [contributor] => - ) - - [934] => Array - ( - [id] => 936 - [title] => Facility 916 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 916 - [houseNumber] => 5791 - [streetName] => Street 16 - [county] => County 4 - [town] => Town 9 - [postcode] => AB84 6CD - [lng] => 144.149782 - [lat] => -9.674345 - [contributor] => - ) - - [935] => Array - ( - [id] => 937 - [title] => Facility 917 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 917 - [houseNumber] => 7770 - [streetName] => Street 11 - [county] => County 11 - [town] => Town 33 - [postcode] => AB38 6CD - [lng] => 36.493114 - [lat] => -82.756686 - [contributor] => - ) - - [936] => Array - ( - [id] => 938 - [title] => Facility 918 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 918 - [houseNumber] => 717 - [streetName] => Street 28 - [county] => County 18 - [town] => Town 2 - [postcode] => AB30 2CD - [lng] => -179.395764 - [lat] => 64.01375 - [contributor] => - ) - - [937] => Array - ( - [id] => 939 - [title] => Facility 919 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 919 - [houseNumber] => 8975 - [streetName] => Street 13 - [county] => County 8 - [town] => Town 35 - [postcode] => AB75 9CD - [lng] => -78.08936 - [lat] => 9.088396 - [contributor] => - ) - - [938] => Array - ( - [id] => 940 - [title] => Facility 920 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 920 - [houseNumber] => 155 - [streetName] => Street 39 - [county] => County 15 - [town] => Town 27 - [postcode] => AB83 9CD - [lng] => -139.15919 - [lat] => -48.006784 - [contributor] => - ) - - [939] => Array - ( - [id] => 941 - [title] => Facility 921 - [status] => - [category] => e-Scooters - [description] => Description for facility 921 - [houseNumber] => 5481 - [streetName] => Street 35 - [county] => County 10 - [town] => Town 48 - [postcode] => AB34 8CD - [lng] => -162.755593 - [lat] => 80.010398 - [contributor] => - ) - - [940] => Array - ( - [id] => 942 - [title] => Facility 922 - [status] => - [category] => Recycling Bins - [description] => Description for facility 922 - [houseNumber] => 2010 - [streetName] => Street 35 - [county] => County 17 - [town] => Town 48 - [postcode] => AB21 8CD - [lng] => -55.61745 - [lat] => 10.06815 - [contributor] => - ) - - [941] => Array - ( - [id] => 943 - [title] => Facility 923 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 923 - [houseNumber] => 5301 - [streetName] => Street 47 - [county] => County 19 - [town] => Town 6 - [postcode] => AB39 4CD - [lng] => 12.675754 - [lat] => -79.167134 - [contributor] => - ) - - [942] => Array - ( - [id] => 944 - [title] => Facility 924 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 924 - [houseNumber] => 9621 - [streetName] => Street 30 - [county] => County 1 - [town] => Town 2 - [postcode] => AB75 1CD - [lng] => -82.79325 - [lat] => 82.76494 - [contributor] => - ) - - [943] => Array - ( - [id] => 945 - [title] => Facility 925 - [status] => - [category] => e-Scooters - [description] => Description for facility 925 - [houseNumber] => 3953 - [streetName] => Street 17 - [county] => County 7 - [town] => Town 12 - [postcode] => AB58 8CD - [lng] => 75.49906 - [lat] => -73.986364 - [contributor] => - ) - - [944] => Array - ( - [id] => 946 - [title] => Facility 926 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 926 - [houseNumber] => 8254 - [streetName] => Street 47 - [county] => County 3 - [town] => Town 17 - [postcode] => AB50 7CD - [lng] => -59.160183 - [lat] => 11.73285 - [contributor] => - ) - - [945] => Array - ( - [id] => 947 - [title] => Facility 927 - [status] => - [category] => Green Roofs - [description] => Description for facility 927 - [houseNumber] => 5557 - [streetName] => Street 29 - [county] => County 9 - [town] => Town 47 - [postcode] => AB36 4CD - [lng] => 138.639444 - [lat] => 66.714981 - [contributor] => - ) - - [946] => Array - ( - [id] => 948 - [title] => Facility 928 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 928 - [houseNumber] => 4242 - [streetName] => Street 24 - [county] => County 6 - [town] => Town 40 - [postcode] => AB64 1CD - [lng] => -112.050921 - [lat] => 32.918392 - [contributor] => Lee - ) - - [947] => Array - ( - [id] => 949 - [title] => Facility 929 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 929 - [houseNumber] => 6996 - [streetName] => Street 43 - [county] => County 11 - [town] => Town 43 - [postcode] => AB64 6CD - [lng] => -93.293598 - [lat] => 25.386986 - [contributor] => - ) - - [948] => Array - ( - [id] => 950 - [title] => Facility 930 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 930 - [houseNumber] => 6196 - [streetName] => Street 3 - [county] => County 1 - [town] => Town 27 - [postcode] => AB92 7CD - [lng] => -52.498966 - [lat] => -21.574658 - [contributor] => - ) - - [949] => Array - ( - [id] => 951 - [title] => Facility 931 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 931 - [houseNumber] => 1776 - [streetName] => Street 2 - [county] => County 19 - [town] => Town 28 - [postcode] => AB96 7CD - [lng] => 22.089947 - [lat] => 69.785857 - [contributor] => - ) - - [950] => Array - ( - [id] => 952 - [title] => Facility 932 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 932 - [houseNumber] => 5378 - [streetName] => Street 44 - [county] => County 16 - [town] => Town 30 - [postcode] => AB41 1CD - [lng] => 91.354256 - [lat] => 65.988813 - [contributor] => - ) - - [951] => Array - ( - [id] => 953 - [title] => Facility 933 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 933 - [houseNumber] => 1438 - [streetName] => Street 36 - [county] => County 15 - [town] => Town 42 - [postcode] => AB93 6CD - [lng] => -93.567048 - [lat] => 70.194778 - [contributor] => - ) - - [952] => Array - ( - [id] => 954 - [title] => Facility 934 - [status] => - [category] => e-Scooters - [description] => Description for facility 934 - [houseNumber] => 3069 - [streetName] => Street 1 - [county] => County 13 - [town] => Town 26 - [postcode] => AB48 3CD - [lng] => -122.158879 - [lat] => -16.219835 - [contributor] => - ) - - [953] => Array - ( - [id] => 955 - [title] => Facility 935 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 935 - [houseNumber] => 8657 - [streetName] => Street 2 - [county] => County 10 - [town] => Town 16 - [postcode] => AB77 5CD - [lng] => 102.677563 - [lat] => 88.085884 - [contributor] => - ) - - [954] => Array - ( - [id] => 956 - [title] => Facility 936 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 936 - [houseNumber] => 1861 - [streetName] => Street 20 - [county] => County 11 - [town] => Town 13 - [postcode] => AB47 7CD - [lng] => 109.724796 - [lat] => 31.992199 - [contributor] => - ) - - [955] => Array - ( - [id] => 957 - [title] => Facility 937 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 937 - [houseNumber] => 7595 - [streetName] => Street 4 - [county] => County 11 - [town] => Town 24 - [postcode] => AB27 5CD - [lng] => -16.822115 - [lat] => -23.409937 - [contributor] => - ) - - [956] => Array - ( - [id] => 958 - [title] => Facility 938 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 938 - [houseNumber] => 1215 - [streetName] => Street 34 - [county] => County 13 - [town] => Town 28 - [postcode] => AB85 5CD - [lng] => 159.053437 - [lat] => -56.082464 - [contributor] => - ) - - [957] => Array - ( - [id] => 959 - [title] => Facility 939 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 939 - [houseNumber] => 7444 - [streetName] => Street 33 - [county] => County 4 - [town] => Town 2 - [postcode] => AB53 8CD - [lng] => 152.299175 - [lat] => 67.186923 - [contributor] => - ) - - [958] => Array - ( - [id] => 960 - [title] => Facility 940 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 940 - [houseNumber] => 416 - [streetName] => Street 12 - [county] => County 17 - [town] => Town 9 - [postcode] => AB31 5CD - [lng] => 149.545881 - [lat] => -3.271128 - [contributor] => - ) - - [959] => Array - ( - [id] => 961 - [title] => Facility 941 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 941 - [houseNumber] => 324 - [streetName] => Street 48 - [county] => County 13 - [town] => Town 27 - [postcode] => AB20 3CD - [lng] => 143.6888 - [lat] => 56.014911 - [contributor] => - ) - - [960] => Array - ( - [id] => 962 - [title] => Facility 942 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 942 - [houseNumber] => 4401 - [streetName] => Street 23 - [county] => County 4 - [town] => Town 39 - [postcode] => AB32 2CD - [lng] => -94.73758 - [lat] => -24.574796 - [contributor] => - ) - - [961] => Array - ( - [id] => 963 - [title] => Facility 943 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 943 - [houseNumber] => 3848 - [streetName] => Street 32 - [county] => County 11 - [town] => Town 18 - [postcode] => AB85 1CD - [lng] => -149.79273 - [lat] => -66.169904 - [contributor] => - ) - - [962] => Array - ( - [id] => 964 - [title] => Facility 944 - [status] => - [category] => e-Scooters - [description] => Description for facility 944 - [houseNumber] => 7537 - [streetName] => Street 2 - [county] => County 11 - [town] => Town 12 - [postcode] => AB29 1CD - [lng] => -0.983719 - [lat] => 18.335084 - [contributor] => - ) - - [963] => Array - ( - [id] => 965 - [title] => Facility 945 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 945 - [houseNumber] => 7271 - [streetName] => Street 24 - [county] => County 12 - [town] => Town 31 - [postcode] => AB83 6CD - [lng] => -123.943243 - [lat] => -66.819387 - [contributor] => - ) - - [964] => Array - ( - [id] => 966 - [title] => Facility 946 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 946 - [houseNumber] => 3531 - [streetName] => Street 40 - [county] => County 10 - [town] => Town 34 - [postcode] => AB49 8CD - [lng] => 5.156815 - [lat] => -37.687761 - [contributor] => - ) - - [965] => Array - ( - [id] => 967 - [title] => Facility 947 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 947 - [houseNumber] => 4501 - [streetName] => Street 18 - [county] => County 11 - [town] => Town 4 - [postcode] => AB97 4CD - [lng] => 163.133922 - [lat] => 77.988281 - [contributor] => - ) - - [966] => Array - ( - [id] => 968 - [title] => Facility 948 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 948 - [houseNumber] => 9425 - [streetName] => Street 25 - [county] => County 16 - [town] => Town 41 - [postcode] => AB16 9CD - [lng] => -80.035448 - [lat] => -58.003254 - [contributor] => - ) - - [967] => Array - ( - [id] => 969 - [title] => Facility 949 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 949 - [houseNumber] => 6735 - [streetName] => Street 1 - [county] => County 2 - [town] => Town 45 - [postcode] => AB65 8CD - [lng] => -1.378535 - [lat] => -72.609296 - [contributor] => - ) - - [968] => Array - ( - [id] => 970 - [title] => Facility 950 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 950 - [houseNumber] => 5587 - [streetName] => Street 7 - [county] => County 10 - [town] => Town 2 - [postcode] => AB76 3CD - [lng] => -170.798647 - [lat] => -68.910432 - [contributor] => Benny - ) - - [969] => Array - ( - [id] => 971 - [title] => Facility 951 - [status] => - [category] => Recycling Bins - [description] => Description for facility 951 - [houseNumber] => 1727 - [streetName] => Street 42 - [county] => County 17 - [town] => Town 2 - [postcode] => AB10 3CD - [lng] => -72.685987 - [lat] => -35.932673 - [contributor] => - ) - - [970] => Array - ( - [id] => 972 - [title] => Facility 952 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 952 - [houseNumber] => 2151 - [streetName] => Street 46 - [county] => County 12 - [town] => Town 47 - [postcode] => AB86 2CD - [lng] => 68.42817 - [lat] => -6.564026 - [contributor] => - ) - - [971] => Array - ( - [id] => 973 - [title] => Facility 953 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 953 - [houseNumber] => 4413 - [streetName] => Street 31 - [county] => County 2 - [town] => Town 4 - [postcode] => AB64 4CD - [lng] => -123.520311 - [lat] => 62.494033 - [contributor] => - ) - - [972] => Array - ( - [id] => 974 - [title] => Facility 954 - [status] => - [category] => Recycling Bins - [description] => Description for facility 954 - [houseNumber] => 3377 - [streetName] => Street 4 - [county] => County 8 - [town] => Town 23 - [postcode] => AB88 1CD - [lng] => 156.017831 - [lat] => -69.188192 - [contributor] => - ) - - [973] => Array - ( - [id] => 975 - [title] => Facility 955 - [status] => - [category] => e-Scooters - [description] => Description for facility 955 - [houseNumber] => 2859 - [streetName] => Street 25 - [county] => County 4 - [town] => Town 17 - [postcode] => AB25 5CD - [lng] => 3.721862 - [lat] => 61.924024 - [contributor] => - ) - - [974] => Array - ( - [id] => 976 - [title] => Facility 956 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 956 - [houseNumber] => 4289 - [streetName] => Street 28 - [county] => County 2 - [town] => Town 11 - [postcode] => AB65 8CD - [lng] => 109.268225 - [lat] => -31.624986 - [contributor] => - ) - - [975] => Array - ( - [id] => 977 - [title] => Facility 957 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 957 - [houseNumber] => 5551 - [streetName] => Street 33 - [county] => County 6 - [town] => Town 46 - [postcode] => AB14 7CD - [lng] => -128.438274 - [lat] => 40.438416 - [contributor] => - ) - - [976] => Array - ( - [id] => 978 - [title] => Facility 958 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 958 - [houseNumber] => 1933 - [streetName] => Street 43 - [county] => County 6 - [town] => Town 4 - [postcode] => AB53 1CD - [lng] => 103.852211 - [lat] => 43.547459 - [contributor] => - ) - - [977] => Array - ( - [id] => 979 - [title] => Facility 959 - [status] => - [category] => Recycling Bins - [description] => Description for facility 959 - [houseNumber] => 8310 - [streetName] => Street 21 - [county] => County 9 - [town] => Town 34 - [postcode] => AB64 5CD - [lng] => 89.148337 - [lat] => 38.935431 - [contributor] => - ) - - [978] => Array - ( - [id] => 980 - [title] => Facility 960 - [status] => - [category] => Public Water Refill Stations - [description] => Description for facility 960 - [houseNumber] => 3592 - [streetName] => Street 20 - [county] => County 19 - [town] => Town 33 - [postcode] => AB51 2CD - [lng] => 162.816112 - [lat] => 54.736433 - [contributor] => - ) - - [979] => Array - ( - [id] => 981 - [title] => Facility 961 - [status] => - [category] => Battery Recycling Points - [description] => Description for facility 961 - [houseNumber] => 3479 - [streetName] => Street 3 - [county] => County 20 - [town] => Town 36 - [postcode] => AB64 4CD - [lng] => -28.356555 - [lat] => -89.448934 - [contributor] => - ) - - [980] => Array - ( - [id] => 982 - [title] => Facility 962 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 962 - [houseNumber] => 1461 - [streetName] => Street 40 - [county] => County 5 - [town] => Town 41 - [postcode] => AB41 6CD - [lng] => 101.621589 - [lat] => 16.491999 - [contributor] => - ) - - [981] => Array - ( - [id] => 983 - [title] => Facility 963 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 963 - [houseNumber] => 3445 - [streetName] => Street 18 - [county] => County 13 - [town] => Town 37 - [postcode] => AB41 9CD - [lng] => 12.139427 - [lat] => 23.930445 - [contributor] => - ) - - [982] => Array - ( - [id] => 984 - [title] => Facility 964 - [status] => - [category] => Solar-Powered Benches - [description] => Description for facility 964 - [houseNumber] => 2529 - [streetName] => Street 13 - [county] => County 1 - [town] => Town 9 - [postcode] => AB76 3CD - [lng] => -109.368531 - [lat] => 9.22697 - [contributor] => - ) - - [983] => Array - ( - [id] => 985 - [title] => Facility 965 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 965 - [houseNumber] => 9219 - [streetName] => Street 43 - [county] => County 6 - [town] => Town 43 - [postcode] => AB39 4CD - [lng] => 36.907566 - [lat] => -29.650194 - [contributor] => - ) - - [984] => Array - ( - [id] => 986 - [title] => Facility 966 - [status] => - [category] => Green Roofs - [description] => Description for facility 966 - [houseNumber] => 1485 - [streetName] => Street 42 - [county] => County 4 - [town] => Town 45 - [postcode] => AB74 4CD - [lng] => -104.368404 - [lat] => 26.502713 - [contributor] => - ) - - [985] => Array - ( - [id] => 987 - [title] => Facility 967 - [status] => - [category] => Recycling Bins - [description] => Description for facility 967 - [houseNumber] => 5392 - [streetName] => Street 30 - [county] => County 19 - [town] => Town 34 - [postcode] => AB99 5CD - [lng] => -20.606369 - [lat] => -89.457152 - [contributor] => - ) - - [986] => Array - ( - [id] => 988 - [title] => Facility 968 - [status] => - [category] => Bike Share Stations - [description] => Description for facility 968 - [houseNumber] => 8842 - [streetName] => Street 5 - [county] => County 4 - [town] => Town 46 - [postcode] => AB82 2CD - [lng] => -90.367542 - [lat] => -11.37144 - [contributor] => - ) - - [987] => Array - ( - [id] => 989 - [title] => Facility 969 - [status] => - [category] => Recycling Bins - [description] => Description for facility 969 - [houseNumber] => 17 - [streetName] => Street 6 - [county] => County 2 - [town] => Town 4 - [postcode] => AB97 6CD - [lng] => -140.371764 - [lat] => -2.610249 - [contributor] => Admin - ) - - [988] => Array - ( - [id] => 990 - [title] => Facility 970 - [status] => - [category] => e-Scooters - [description] => Description for facility 970 - [houseNumber] => 9107 - [streetName] => Street 30 - [county] => County 10 - [town] => Town 17 - [postcode] => AB80 8CD - [lng] => 150.640303 - [lat] => 88.126314 - [contributor] => - ) - - [989] => Array - ( - [id] => 991 - [title] => Facility 971 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 971 - [houseNumber] => 2816 - [streetName] => Street 36 - [county] => County 8 - [town] => Town 36 - [postcode] => AB70 4CD - [lng] => 9.087684 - [lat] => -68.653935 - [contributor] => - ) - - [990] => Array - ( - [id] => 992 - [title] => Facility 972 - [status] => - [category] => Recycling Bins - [description] => Description for facility 972 - [houseNumber] => 5963 - [streetName] => Street 32 - [county] => County 9 - [town] => Town 16 - [postcode] => AB56 7CD - [lng] => 63.153062 - [lat] => -30.687621 - [contributor] => - ) - - [991] => Array - ( - [id] => 993 - [title] => Facility 973 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 973 - [houseNumber] => 1911 - [streetName] => Street 46 - [county] => County 1 - [town] => Town 47 - [postcode] => AB42 9CD - [lng] => 122.603315 - [lat] => 28.909825 - [contributor] => - ) - - [992] => Array - ( - [id] => 994 - [title] => Facility 974 - [status] => - [category] => Waste Oil Collection Points - [description] => Description for facility 974 - [houseNumber] => 285 - [streetName] => Street 29 - [county] => County 16 - [town] => Town 4 - [postcode] => AB60 5CD - [lng] => 83.361544 - [lat] => -53.354336 - [contributor] => - ) - - [993] => Array - ( - [id] => 995 - [title] => Facility 975 - [status] => - [category] => Community Compost Bins - [description] => Description for facility 975 - [houseNumber] => 9797 - [streetName] => Street 3 - [county] => County 2 - [town] => Town 39 - [postcode] => AB60 4CD - [lng] => 43.211708 - [lat] => 22.993977 - [contributor] => - ) - - [994] => Array - ( - [id] => 996 - [title] => Facility 976 - [status] => - [category] => Public EV Charging Stations - [description] => Description for facility 976 - [houseNumber] => 8593 - [streetName] => Street 41 - [county] => County 15 - [town] => Town 24 - [postcode] => AB88 1CD - [lng] => -126.549723 - [lat] => 78.361279 - [contributor] => - ) - - [995] => Array - ( - [id] => 997 - [title] => Facility 977 - [status] => - [category] => e-Scooters - [description] => Description for facility 977 - [houseNumber] => 4555 - [streetName] => Street 17 - [county] => County 13 - [town] => Town 17 - [postcode] => AB72 5CD - [lng] => -152.037173 - [lat] => 35.186385 - [contributor] => - ) - - [996] => Array - ( - [id] => 998 - [title] => Facility 978 - [status] => - [category] => Recycling Bins - [description] => Description for facility 978 - [houseNumber] => 4524 - [streetName] => Street 29 - [county] => County 18 - [town] => Town 26 - [postcode] => AB47 9CD - [lng] => -30.526604 - [lat] => 29.643661 - [contributor] => - ) - - [997] => Array - ( - [id] => 999 - [title] => Facility 979 - [status] => - [category] => e-Scooters - [description] => Description for facility 979 - [houseNumber] => 8301 - [streetName] => Street 41 - [county] => County 2 - [town] => Town 33 - [postcode] => AB19 7CD - [lng] => 55.971686 - [lat] => -46.182994 - [contributor] => - ) - - [998] => Array - ( - [id] => 1000 - [title] => Facility 980 - [status] => - [category] => e-Scooters - [description] => Description for facility 980 - [houseNumber] => 6554 - [streetName] => Street 34 - [county] => County 9 - [town] => Town 47 - [postcode] => AB84 4CD - [lng] => -32.972548 - [lat] => 18.353928 - [contributor] => - ) - -) diff --git a/public/js/apiClient.js b/public/js/apiClient.js index 234c8f6..e13d472 100644 --- a/public/js/apiClient.js +++ b/public/js/apiClient.js @@ -6,9 +6,8 @@ * * The client uses JWT tokens for authentication, which are automatically * included in requests via the fetchAuth function provided by the simpleAuth service. - * - * NOTE: For authentication (login, logout, token validation), please use the simpleAuth - * service directly instead of this API client. + * + * Similar to AuthService.php, great pain and countless tears. And learning woooo!!!!!!!! */ class ApiClient { /** diff --git a/public/js/mapHandler.js b/public/js/mapHandler.js index d407607..4804bd9 100644 --- a/public/js/mapHandler.js +++ b/public/js/mapHandler.js @@ -28,6 +28,63 @@ document.addEventListener('DOMContentLoaded', function() { // Get facilities data from sessionStorage facilities = JSON.parse(sessionStorage.getItem('facilityData') || '[]'); + // Add location found handler + map.on('locationfound', function(e) { + try { + const { lat, lng } = e.latlng; + + // Update the map directly with the coordinates + updateMapLocation({ lat, lng }, currentRadius); + + // Remove overlay once we have a valid location + const overlay = document.getElementById('mapOverlay'); + if (overlay) { + overlay.classList.add('hidden'); + } + + // Get postcode from coordinates + fetch(`https://api.postcodes.io/postcodes?lon=${lng}&lat=${lat}`) + .then(response => response.json()) + .then(data => { + if (data.status === 200 && data.result && data.result.length > 0) { + const postcode = data.result[0].postcode; + const postcodeInput = document.getElementById('postcode'); + if (postcodeInput) { + postcodeInput.value = postcode; + } + } + }) + .catch(error => { + console.error('Error getting postcode:', error); + }); + } catch (error) { + console.error('Error processing location:', error); + alert('Error getting your location: ' + error.message); + } + }); + + // Add location error handler + map.on('locationerror', function(e) { + console.error('Geolocation error:', e); + let message = 'Error getting your location: '; + + switch(e.code) { + case 1: // PERMISSION_DENIED + message += 'Please enable location access in your browser settings.'; + break; + case 2: // POSITION_UNAVAILABLE + message += 'Location information is unavailable.'; + break; + case 3: // TIMEOUT + message += 'Location request timed out.'; + break; + default: + message += 'An unknown error occurred.'; + } + + alert(message); + }); + // Set up form handlers setupFormHandlers(); @@ -35,6 +92,84 @@ document.addEventListener('DOMContentLoaded', function() { setupHeaderSearchHandler(); }); +/** + * Get postcode from coordinates using postcodes.io API + * @param {number} lat - Latitude + * @param {number} lng - Longitude + * @returns {Promise} The postcode + */ +async function getPostcodeFromCoordinates(lat, lng) { + try { + const response = await fetch(`https://api.postcodes.io/postcodes?lon=${lng}&lat=${lat}`); + if (!response.ok) { + throw new Error('Could not find postcode for coordinates'); + } + + const data = await response.json(); + if (data.status === 200 && data.result && data.result.length > 0) { + return data.result[0].postcode; + } + + throw new Error('No postcode found for coordinates'); + } catch (error) { + console.error('Error getting postcode from coordinates:', error); + throw error; + } +} + +/** + * Handle geolocation success + * @param {GeolocationPosition} position - The position object + */ +async function handleGeolocationSuccess(position) { + try { + const { latitude, longitude } = position.coords; + + // Get postcode from coordinates + const postcode = await getPostcodeFromCoordinates(latitude, longitude); + + // Update the postcode input + const postcodeInput = document.getElementById('postcode'); + if (postcodeInput) { + postcodeInput.value = postcode; + + // Submit the form to update the map + const postcodeForm = document.getElementById('postcodeForm'); + if (postcodeForm) { + postcodeForm.dispatchEvent(new Event('submit')); + } + } + } catch (error) { + console.error('Error processing geolocation:', error); + alert('Error getting your location: ' + error.message); + } +} + +/** + * Handle geolocation error + * @param {GeolocationPositionError} error - The error object + */ +function handleGeolocationError(error) { + console.error('Geolocation error:', error); + let message = 'Error getting your location: '; + + switch(error.code) { + case error.PERMISSION_DENIED: + message += 'Please enable location access in your browser settings.'; + break; + case error.POSITION_UNAVAILABLE: + message += 'Location information is unavailable.'; + break; + case error.TIMEOUT: + message += 'Location request timed out.'; + break; + default: + message += 'An unknown error occurred.'; + } + + alert(message); +} + /** * Set up form handlers for postcode and radius inputs */ @@ -43,6 +178,24 @@ function setupFormHandlers() { const radiusSelect = document.getElementById('radius'); if (postcodeForm) { + // Add geolocation functionality to the search button + const searchButton = postcodeForm.querySelector('button[type="submit"]'); + if (searchButton) { + searchButton.onclick = (e) => { + // If the postcode input is empty, use geolocation + const postcodeInput = document.getElementById('postcode'); + if (!postcodeInput.value.trim()) { + e.preventDefault(); + map.locate({ + setView: false, + enableHighAccuracy: true, + timeout: 10000, + maximumAge: 0 + }); + } + }; + } + postcodeForm.addEventListener('submit', async function(e) { e.preventDefault(); @@ -51,12 +204,7 @@ function setupFormHandlers() { // Show loading state const submitButton = this.querySelector('button[type="submit"]'); - const originalButtonContent = `Search...`; submitButton.disabled = true; - submitButton.innerHTML = ` - - Searching... - `; // Validate postcode format first if (!isValidPostcode(postcode)) { @@ -92,7 +240,6 @@ function setupFormHandlers() { } finally { // Always reset button state submitButton.disabled = false; - submitButton.innerHTML = originalButtonContent; } }); } diff --git a/test-admin.js b/test-admin.js deleted file mode 100644 index 6f727c3..0000000 --- a/test-admin.js +++ /dev/null @@ -1 +0,0 @@ -console.log('Testing admin check:'); console.log('User with accessLevel 1:', simpleAuth.isAdmin.call({isAuthenticated: () => true, user: {accessLevel: 1}})); console.log('User with accessLevel 0:', simpleAuth.isAdmin.call({isAuthenticated: () => true, user: {accessLevel: 0}}));