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