diff --git a/src/_main_/utils/common.py b/src/_main_/utils/common.py index 694bd5637..39890b6b1 100644 --- a/src/_main_/utils/common.py +++ b/src/_main_/utils/common.py @@ -4,8 +4,6 @@ import pytz from django.utils import timezone from datetime import datetime, timedelta -#import cv2 -from datetime import datetime from dateutil import tz from sentry_sdk import capture_message import base64 diff --git a/src/carbon_calculator/CCDefaults.py b/src/carbon_calculator/CCDefaults.py index 15b91e138..5780ffc3e 100644 --- a/src/carbon_calculator/CCDefaults.py +++ b/src/carbon_calculator/CCDefaults.py @@ -1,80 +1,83 @@ from fileinput import filename from .models import CalcDefault -#from .calcUsers import CalcUserLocality from datetime import datetime -import time -import timeit +from django.utils import timezone import csv -from pathlib import Path # python3 only + +current_tz = timezone.get_current_timezone() def getLocality(inputs): - id = inputs.get("user_id","") + community = inputs.get("community","") - #userID = inputs.get("user_id","") locality = "default" -# if id != "": -# loc = CalcUserLocality(id) -# if loc: -# locality = loc -# -# elif community != "": if community != "": locality = community return locality -def getDefault(locality, variable, date=None): - return CCD.getDefault(CCD,locality, variable, date) +def localized_time(time_string): + time = datetime.strptime(time_string, '%Y-%m-%d %H:%M') + return current_tz.localize(time) -class CCD(): +def getDefault(locality, variable, date=None, default=None): + return CCD.getDefault(CCD,locality, variable, date, default=default) + +def removeDuplicates(): + # assuming which duplicate is removed doesn't matter... + for row in CalcDefault.objects.all().reverse(): + if CalcDefault.objects.filter(variable=row.variable, locality=row.locality, valid_date=row.valid_date).count() > 1: + row.delete() + +class CCD(): DefaultsByLocality = {"default":{}} # the class variable - try: - cq = CalcDefault.objects.all() - for c in cq: - # valid date is 0 if not specified - date = '2000-01-01' - if c.valid_date != None: - date = c.valid_date - - if c.locality not in DefaultsByLocality: - DefaultsByLocality[c.locality] = {} - if c.variable not in DefaultsByLocality[c.locality]: - DefaultsByLocality[c.locality][c.variable] = {"valid_dates":[date], "values":[c.value]} - else: - # already one value for this parameter, order by dates - f = False - for i in range(len(DefaultsByLocality[c.locality][c.variable]["values"])): - valid_date = DefaultsByLocality[c.locality][c.variable]["valid_dates"][i] - if date < valid_date: - # insert value at this point - f = True - DefaultsByLocality[c.locality][c.variable]["valid_dates"].insert(i,date) - DefaultsByLocality[c.locality][c.variable]["values"].insert(i,c.value) - break - elif date == valid_date: - # multiple values with one date - print('CCDefaults: multiple values with same valid date') - f = True - break - - # if not inserted into list, append to the end - if not f: - DefaultsByLocality[c.locality][c.variable]["valid_dates"].append(date) - DefaultsByLocality[c.locality][c.variable]["values"].append(c.value) - - - except Exception as e: - print(str(e)) - print("CalcDefault initialization skipped") - - def __init__(self): - print("CCD __init__ called") - - - def getDefault(self, locality, variable, date): + + # This initialization routine runs when database ready to access + # Purpose: load Carbon Calculator constants into DefaultByLocality for routine access + # For each variable, there is a list of values for different localities and valid_dates, ordered by date + def ready(self): + self.DefaultsByLocality = {"default":{}} # the class variable + try: + cq = CalcDefault.objects.all() + for c in cq: + # valid date is 0 if not specified + date = '2000-01-01' + if c.valid_date != None: + date = c.valid_date + + if c.locality not in self.DefaultsByLocality: + self.DefaultsByLocality[c.locality] = {} + if c.variable not in self.DefaultsByLocality[c.locality]: + self.DefaultsByLocality[c.locality][c.variable] = {"valid_dates":[date], "values":[c.value]} + else: + # already one value for this parameter, order by dates + found = False + for i in range(len(self.DefaultsByLocality[c.locality][c.variable]["values"])): + valid_date = self.DefaultsByLocality[c.locality][c.variable]["valid_dates"][i] + if date < valid_date: + # insert value at this point + found = True + self.DefaultsByLocality[c.locality][c.variable]["valid_dates"].insert(i,date) + self.DefaultsByLocality[c.locality][c.variable]["values"].insert(i,c.value) + break + elif date == valid_date: + # multiple values with one date; skip + found = True + break + + # if not inserted into list, append to the end + if not found: + self.DefaultsByLocality[c.locality][c.variable]["valid_dates"].append(date) + self.DefaultsByLocality[c.locality][c.variable]["values"].append(c.value) + + + except Exception as e: + print(str(e)) + print("CalcDefault initialization skipped") + + def getDefault(self, locality, variable, date, default=None): if locality not in self.DefaultsByLocality: locality = "default" if variable in self.DefaultsByLocality[locality]: @@ -91,6 +94,8 @@ def getDefault(self, locality, variable, date): return value # no defaults found. Signal this as an error. + if default: + return default raise Exception('Carbon Calculator error: value for "'+variable+'" not found in CalcDefaults') def exportDefaults(self,fileName): @@ -119,78 +124,86 @@ def exportDefaults(self,fileName): if csvfile: csvfile.close() return status + def importDefaults(self,fileName): csvfile = None + print("Updating Carbon Calculator constant values.") + removeDuplicates() try: status = True with open(fileName, newline='') as csvfile: - inputlist = csv.reader(csvfile) - first = True - for item in inputlist: - if first: - t = {} - for i in range(len(item)): - it = item[i] - if i == 0: - it = 'Variable' - t[it] = i - first = False + reader = csv.reader(csvfile) + + # dictionary of column indices by heading + column_index = {} + headers = next(reader, None) + for index in range(len(headers)): + heading = headers[index] if index!=0 else 'Variable' + column_index[heading] = index + + num = 0 + for item in reader: + if len(item)<6 or item[0] == '' or item[1] == '': + continue + + variable = item[column_index["Variable"]] + locality = item[column_index["Locality"]] + valid_date = item[column_index["Valid Date"]] + value = eval(item[column_index["Value"]]) + reference = item[column_index["Reference"]] + updated = localized_time(item[column_index["Updated"]]) + + if not valid_date or valid_date=="": + valid_date = '2000-01-01' + + #valid_date = datetime.date(valid_date) + valid_date = datetime.strptime(valid_date, "%Y-%m-%d").date() + + # update the default value for this variable, localith and valid_date + qs, created = CalcDefault.objects.update_or_create( + variable=variable, + locality=locality, + valid_date=valid_date, + defaults={ + 'value':value, + 'reference':reference, + 'updated':updated + }) + if created: + num += 1 + + if not locality in self.DefaultsByLocality: + self.DefaultsByLocality[locality] = {} + + if not variable in self.DefaultsByLocality[locality]: + self.DefaultsByLocality[locality][variable] = {} + + self.DefaultsByLocality[locality][variable]["valid_dates"] = [valid_date] + self.DefaultsByLocality[locality][variable]["values"] = [value] else: - if len(item)<6 or item[0] == '' or item[1] == '': - continue - variable = item[t["Variable"]] - locality = item[t["Locality"]] - valid_date = item[t["Valid Date"]] - value = eval(item[t["Value"]]) - reference = item[t["Reference"]] - updated = item[t["Updated"]] - - if not valid_date or valid_date=="": - valid_date = '2000-01-01' - - #valid_date = datetime.date(valid_date) - valid_date = datetime.strptime(valid_date, "%Y-%m-%d").date() - - #qs = CalcDefault.objects.filter(variable=variable, locality=locality) - #if qs: - # qs[0].delete() - - cd = CalcDefault(variable=variable, - locality=locality, - value=value, - reference=reference, - valid_date = valid_date, - updated=updated) - cd.save() - - if not locality in self.DefaultsByLocality: - self.DefaultsByLocality[locality] = {} - - if not variable in self.DefaultsByLocality[locality]: - self.DefaultsByLocality[locality][variable] = {} - - self.DefaultsByLocality[locality][variable]["valid_dates"] = [valid_date] - self.DefaultsByLocality[locality][variable]["values"] = [value] - else: - f = False - var = self.DefaultsByLocality[locality][variable] - for i in range(len(var["valid_dates"])): - compdate = var["valid_dates"][i] - if type(compdate)==type('str'): - compdate = datetime.strptime(compdate, "%Y-%m-%d").date() - if valid_date < compdate: - var["valid_dates"].insert(i,valid_date) - var["values"].insert(i,value) - f = True - break - elif valid_date == compdate: - var["values"][i] = value - f = True - break - if not f: - var["valid_dates"].append(valid_date) - var["values"].append(value) - + f = False + var = self.DefaultsByLocality[locality][variable] + for i in range(len(var["valid_dates"])): + compdate = var["valid_dates"][i] + if type(compdate)==type('str'): + compdate = datetime.strptime(compdate, "%Y-%m-%d").date() + if valid_date < compdate: + var["valid_dates"].insert(i,valid_date) + var["values"].insert(i,value) + f = True + break + elif valid_date == compdate: + var["values"][i] = value + f = True + break + if not f: + var["valid_dates"].append(valid_date) + var["values"].append(value) + if num>0: + msg = "Imported %d Carbon Calculator Defaults" % num + else: + msg = "Carbon Calculator default values updated" + print(msg) status = True except Exception as error: print("Error importing Carbon Calculator Defaults from CSV file") diff --git a/src/carbon_calculator/carbonCalculator.py b/src/carbon_calculator/carbonCalculator.py index d82053900..157e34c8e 100644 --- a/src/carbon_calculator/carbonCalculator.py +++ b/src/carbon_calculator/carbonCalculator.py @@ -4,11 +4,10 @@ #imports import os import pytz -from datetime import datetime -from .models import Action, Question, CarbonCalculatorMedia, CalcDefault, Version -#from django.utils import timezone -from _main_.settings import BASE_DIR - +from datetime import datetime, date +from .models import Action, Question, CarbonCalculatorMedia, Version +from _main_.settings import BASE_DIR, RUN_SERVER_LOCALLY +import time from io import BytesIO from django.core.files.uploadedfile import InMemoryUploadedFile from django.utils.text import slugify @@ -27,15 +26,12 @@ from .transportation import EvalReplaceCar, EvalReduceMilesDriven, EvalEliminateCar, EvalReduceFlights, EvalOffsetFlights from .foodWaste import EvalLowCarbonDiet, EvalReduceWaste, EvalCompost from .landscaping import EvalReduceLawnSize, EvalReduceLawnCare, EvalRakeOrElecBlower, EvalElectricMower -#from .calcUsers import ExportCalcUsers, CalcUserUpdate -CALCULATOR_VERSION = "4.0.1" +CALCULATOR_VERSION = "4.0.2" QUESTIONS_DATA = BASE_DIR + "/carbon_calculator/content/Questions.csv" ACTIONS_DATA = BASE_DIR + "/carbon_calculator/content/Actions.csv" DEFAULTS_DATA = BASE_DIR + "/carbon_calculator/content/defaults.csv" -#QUESTIONS_DATA = "/carbon_calculator/content/Questions.csv" -#ACTIONS_DATA = "/carbon_calculator/content/Actions.csv" -#DEFAULTS_DATA = "/carbon_calculator/content/Defaults.csv" +TOKEN_POINTS = 15 def fileDateTime(path): # file modification @@ -60,14 +56,15 @@ def versionCheck(): fileDateTime(ACTIONS_DATA), fileDateTime(DEFAULTS_DATA)) + today = str(date.today()) if version.version != CALCULATOR_VERSION: version.version = CALCULATOR_VERSION - version.note = "Calculator version update on "+str(datetime.today()) + version.note = "Calculator version update on "+today print(version.note) version.save() return False # reload data elif version.updated_on < files_updated: - version.note = "Calculator data update on "+str(datetime.today()) + version.note = "Calculator data update on "+today print(version.note) version.save() return False # reload data @@ -119,11 +116,13 @@ def SavePic2Media(picURL): def AverageImpact(action, date=None, locality="default"): averageName = action.name + '_average_points' - return getDefault(locality, averageName, date) + impact = getDefault(locality, averageName, date, default=TOKEN_POINTS) + return impact class CarbonCalculator: def __init__(self, reset=False) : - #fails on initial migration during test + + start = time.time() try: print("Initializing Carbon Calculator, version "+CALCULATOR_VERSION) @@ -190,6 +189,10 @@ def __init__(self, reset=False) : theInstance = theClass(name) self.allActions[name] = theInstance + end = time.time() + if RUN_SERVER_LOCALLY: + print("Carbon Calculator initialization time: "+str(end - start)+" seconds") + except Exception as e: print(str(e)) print("Calculator initialization skipped") @@ -292,39 +295,47 @@ def ImportQuestions(self, questionsFile): if item[0] == '': continue - qs = Question.objects.filter(name=item[0]) - if qs: - qs[0].delete() - skip = [[],[],[],[],[],[]] for i in range(6): ii = 5+2*i if item[ii]!='' : skip[i] = item[ii].split(",") - question = Question(name=item[0], - category=item[1], - question_text=item[2], - question_type=item[3], - response_1=item[4], skip_1=skip[0], - response_2=item[6], skip_2=skip[1], - response_3=item[8], skip_3=skip[2], - response_4=item[10], skip_4=skip[3], - response_5=item[12], skip_5=skip[4], - response_6=item[14], skip_6=skip[5]) - #print('Importing Question ',question.name,': ',question.question_text) - + minimum_value = maximum_value = typical_value = None if len(item)>19: if len(item[16]): - question.minimum_value = eval(item[16]) + minimum_value = eval(item[16]) if len(item[17])>0: - question.maximum_value = eval(item[17]) + maximum_value = eval(item[17]) if len(item[18])>0: - question.typical_value = eval(item[18]) + typical_value = eval(item[18]) + + # update the unique Question with this name + qs, created = Question.objects.update_or_create( + name=item[0], + defaults={ + 'category':item[1], + 'question_text':item[2], + 'question_type':item[3], + 'response_1':item[4], 'skip_1':skip[0], + 'response_2':item[6], 'skip_2':skip[1], + 'response_3':item[8], 'skip_3':skip[2], + 'response_4':item[10], 'skip_4':skip[3], + 'response_5':item[12], 'skip_5':skip[4], + 'response_6':item[14], 'skip_6':skip[5], + 'minimum_value':minimum_value, + 'maximum_value':maximum_value, + 'typical_value':typical_value + } + ) + + if created: + num += 1 - question.save() - num+=1 - msg = "Imported %d Carbon Calculator Questions" % num + if num>0: + msg = "Imported %d Carbon Calculator Questions" % num + else: + msg = "Updated Carbon Calculator Questions from import" print(msg) csvfile.close() return True @@ -336,38 +347,43 @@ def ImportQuestions(self, questionsFile): def ImportActions(self, actionsFile): try: with open(actionsFile, newline='') as csvfile: - inputlist = csv.reader(csvfile) - first = True + reader = csv.reader(csvfile) num = 0 - for item in inputlist: - if first: - t = {} - for i in range(len(item)): - t[item[i]] = i - first = False - else: - name = item[0] - if name == '': - continue - qs = Action.objects.filter(name=name) - if qs: - qs[0].delete() - - picture = None - if len(item)>=4 and name!='': - picture = SavePic2Media(item[t["Picture"]]) - action = Action(name=item[0], - title = item[t["Title"]], - description=item[t["Description"]], - helptext=item[t["Helptext"]], - category=item[t["Category"]], - average_points=int(eval(item[t["Avg points"]])), - questions=item[t["Questions"]].split(","), - picture = picture) - action.save() - - msg = "Imported %d Carbon Calculator Actions" % num + # dictionary of column indices by heading + column_index = {} + headers = next(reader, None) + for index in range(len(headers)): + heading = headers[index] if index!=0 else 'Name' + column_index[heading] = index + + for item in reader: + name = item[0] + if name == '': + continue + avg_points = item[column_index["Avg points"]] + defaults = { + 'title':item[column_index["Title"]], + 'description':item[column_index["Description"]], + 'helptext':item[column_index["Helptext"]], + 'category':item[column_index["Category"]], + 'average_points': int(eval(avg_points)) if avg_points else TOKEN_POINTS, + 'questions':item[column_index["Questions"]].split(",") + } + + # update the unique Action with this name + qs, created = Action.objects.update_or_create( + name=name, + defaults=defaults + ) + + if created: + num += 1 + + if num: + msg = "Imported %d Carbon Calculator Actions" % num + else: + msg = "Updated Carbon Calculator Actions from import" print(msg) csvfile.close() return True @@ -400,9 +416,10 @@ def __init__(self,name): self.savings = 0 self.text = "" # "Explanation for the calculated results." self.picture = "" -# + + def Query(self): status, actionInfo = QuerySingleAction(self.name) - if status == VALID_QUERY: + if not self.id and status == VALID_QUERY: self.id = actionInfo["id"] self.title = actionInfo["title"] self.description = actionInfo["description"] @@ -412,8 +429,6 @@ def __init__(self,name): self.picture = actionInfo["picture"] self.initialized = True - def Query(self): - status, actionInfo = QuerySingleAction(self.name) return {"status":status, "action":actionInfo} def Eval(self, inputs): diff --git a/src/carbon_calculator/content/Actions.csv b/src/carbon_calculator/content/Actions.csv index 78e71c63b..6b0f9b4ac 100644 --- a/src/carbon_calculator/content/Actions.csv +++ b/src/carbon_calculator/content/Actions.csv @@ -1,38 +1,83 @@ -Action Name,Title,Description,Category,Helptext,Avg points,Questions,Picture,Information,Stations -energy_fair,Sustainability Event,"Attend energy or sustainability fair, to find ways to take sustainable action.",Activism & Education,Attending an energy fair is a great way to get started lowering energy use.,15.0,"attend_fair,own_rent,fuel_assistance,activity_group",,"Although the action in itself does not lead to emission savings, it leads to a small point allocation because we know you will do something!","Welcome_1,Welcome_CCH,All_Actions_ME" -energy_audit,Home Energy Audit,"Sign up for an energy audit, offered free from MassSave and most local utilities",Home Energy,"An energy audit can tell you the condition of your home and its heating and other systems, and help you address the issues found.",100.0,"energy_audit_recently,heating_fuel,electric_utility",,Taking the step to get an energy audit generally leads to a medium level of emissions savings; follow through with the recommended measures to earn a higher point score.,"Heating_Cooling_1,Heating_Cooling_CCH,All_Actions_ME" -prog_thermostats,Programmable Thermostats,Install programmable thermostats,Home Energy,Installing and using a programmable thermostat typically saves 15% from your heating bill.,421.0,"have_pstats,pstats_programmed,heating_fuel",,,"Heating_Cooling_1,All_Actions_ME" -weatherization,Weatherize Your Home,Insulate or air-seal a home,Home Energy,Weatherizing (insulating and air-sealing) your home typically saves 15% from your heating bill.,3281.0,"weatherized,heating_fuel",,,"Heating_Cooling_1,Heating_Cooling_CCH,All_Actions_ME" -community_solar,Community Solar,Sign up for community solar,"Home Energy,Solar",Joining a community solar project can save on your electric bill and lower greenhouse gas emissions.,3714.0,"monthly_elec,electric_utility",,,"Solar_1,Solar_CCH,All_Actions_ME" -renewable_elec,Renewable Electricity,Switch to renewable electricity,"Home Energy,Solar",Choosing renewable electricity reduces or eliminates greenhouse gas emissions from the power you use.,3714.0,"monthly_elec,electric_utility",,,"Electricity_Use_1,All_Actions_ME" -led_lighting,Install LED Lighting,Install LED light bulbs,Home Energy,Swapping out incandescent bulbs for LEDs reduces their electricity consumption by 88%.,300.0,"bulbs_incandescent,bulbs_replace_leds",,,"Electricity_Use_1,Electricity_CCH,All_Actions_ME" -heating_assessment,Heating System Assessment,Request a heating system assessment,Home Energy,Getting a heating system assessment can help find the best path for saving energy and reducing emissions.,1000.0,"heating_fuel,heating_system_type,heating_system_age,air_conditioning_type,air_conditioning_age",,,"Heating_Cooling_1,Heating_Cooling_CCH,All_Actions_ME" -efficient_fossil,Efficient Fossil Heating,Replace boiler or furnace with a high efficiency system,Home Energy,Replacing an old boiler or furnace with efficient models can save 10-15% of your heating bill.,1000.0,"heating_fuel,heating_system_type,heating_system_age",,,All_Actions_ME -air_source_hp,Air-Source Heat Pump,Install an air-source heat pump ,Home Energy,"Heating and cooling with air-source heat pumps reduces emissions greatly, and can improve comfort and save energy costs.",6000.0,"heating_fuel,heating_system_type,heating_system_age,air_conditioning_type,air_conditioning_age",,,"Heating_Cooling_1,Heating_Cooling_CCH,All_Actions_ME" -ground_source_hp,Ground-Source Heat Pump,Install a ground-source heat pump ,Home Energy,"Heating and cooling with a ground-source heat pump reduces emissions greatly, and can improve comfort and save energy costs.",8000.0,"heating_fuel,heating_system_type,heating_system_age,air_conditioning_type,air_conditioning_age",,,All_Actions_ME -hw_assessment,Hot Water Assessment,Request a hot water assessment,Home Energy,A hot water assessment can help find out the best options for replacing a water heater to save money and reduce emissions.,500.0,"water_heater_type,water_heater_age",,,"Water_Heating_1,All_Actions_ME" -hp_water_heater,Heat Pump Water Heater,Install a heat pump water heater,Home Energy,"A heat pump water heater uses about 1/3 the energy of an electric or fossil water heater, reducing emissions and saving money.",1500.0,"water_heater_type,water_heater_age",,,"Water_Heating_1,All_Actions_ME" -solar_assessment,Solar Assessment,Request a solar assessment,Solar,Getting a solar assessment can help you plan for a solar PV or solar hot water system to reduce emissions and lower cost.,1200.0,solar_potential,,,"Solar_1,Solar_CCH,All_Actions_ME" -install_solarPV,Install Solar PV Array,Install a solar PV array,Solar,"Installing a solar PV array can reduce your carbon footprint dramatically, and save considerable money over time.",6000.0,solar_potential,,,"Solar_1,Solar_CCH,All_Actions_ME" -install_solarHW,Install Solar Hot Water,Install a solar hot water system,"Solar,Home Energy",A solar hot water system saves considerable money and emissions.,2000.0,solar_potential,,,"Solar_1,Water_Heating_1,Solar_CCH,All_Actions_ME" -energystar_fridge,Upgrade Refrigerator to EnergyStar,Replace refrigerator with an EnergyStar model,Home Energy,Replacing a refrigerator with an EnergyStar model can save a lot of energy and money over time.,170.0,refrigerator_age,,,"Electricity_Use_1,All_Actions_ME" -energystar_washer,Upgrade Washer to EnergyStar,Replace washing machine with an EnergyStar model,Home Energy,Replacing a washer with an EnergyStar model can save a lot of energy and money over time.,850.0,"washer_age,washer_energystar,washer_loads",,,"Electricity_Use_1,All_Actions_ME" -induction_stove,Induction Stove,Install an induction stove in place of electric or gas,Home Energy,An induction stove is both efficiency and great for cooking.,235.0,stove_type,,,All_Actions_ME -hp_dryer,Heat Pump Dryer,Replace clothes dryer with a heat pump dryer,Home Energy,A heat pump dryer uses much less energy than a gas or electric dryer.,935.0,"dryer_type,dryer_loads",,,All_Actions_ME -coldwater_wash,Cold Water Wash,Wash clothes using cold or warm water,Home Energy,"Washing clothes in warm or cold water saves energy and money, and works as well as hot.",300.0,washer_loads,,,"Electricity_Use_1,All_Actions_ME" -line_dry,Line Dry Clothes,Dry laundry on rack or clothes line,Home Energy,Drying laundry on the line saves energy and money compared with a clothes dryer.,600.0,"washer_loads,dryer_type,fraction_line_dry",,,"Electricity_Use_1,Electricity_CCH,All_Actions_ME" -fridge_pickup,Unused Refrigerator Pickup,Request a pickup for unused refrigerator,Home Energy,"Having an old, inefficient refrigerator taken away and disposed of properly saves space and keeps it from being used.",600.0,"extra_refrigerator,extra_refrigerator_age,unplug_refrigerator",,,"Electricity_CCH,All_Actions_ME" -smart_power_strip,Smart Power Strip,Install and use a smart power strip,Home Energy,A smart power strip can save on parasitic loads by shutting off devices when they aren't being used.,150.0,smart_power_strips,,,All_Actions_ME -electricity_monitor,Electricity Monitor,Make use of an electricity monitor,Home Energy,Using an electricity monitor to find out where power is used is a good first step to conserving it.,300.0,install_electricity_monitor,,,"Electricity_Use_1,All_Actions_ME" -replace_car,Replace Car,Replace your primary vehicle,Transportation,Replacing an inefficient car with electric or hybrid can greatly lower your carbon footprint.,7121.0,"car_type,car_annual_miles,car_mpg,car_new_type",,,"Transportation_1,Transportation_CCH,All_Actions_ME" -reduce_car_miles,Reduce Car Miles,Reduce miles driven for your primary vehicle,Transportation,Reducing the amount you drive in favor of ridesharing or public transport saves money and reduces emissions.,2057.0,"car_type,car_annual_miles,car_mpg,reduce_mileage_percent,transportation_public,transportation_public_amount,commute_bike_walk,commute_bike_walk_amount,telecommute,telecommute_amount",,,"Transportation_1,Transportation_CCH,All_Actions_ME" -eliminate_car,Eliminate Car,Eliminate a vehicle,Transportation,Getting rid of a car in favor of ridesharing or public transport saves money and reduces emissions.,8870.0,"car_type,car_annual_miles,car_mpg",,,All_Actions_ME -reduce_flights,Reduce Flights,Reduce the amount you fly,Transportation,"Reducing the amount you fly has a big impact towards lowering emissions, and saves you money.",2000.0,"flights_amount,transportation_flights",,,"Transportation_1,All_Actions_ME" -offset_flights,Offset Flights,Purchase carbon offsets for flights taken,Transportation,Purchasing flight offsets can reduce your carbon footprint and support efforts to restore the climate.,2000.0,"flights_amount,offset_flights",,,"Transportation_1,All_Actions_ME" -low_carbon_diet,Low Carbon Diet,Adopt a lower carbon diet,Food,Adopting a diet with less or no meat lowers emissions and can improve your health.,1000.0,"eating_switch_meals,family_size,meat_frequency,eating_switch_meals_amount",,,"Eating_1,Eating_CCH,All_Actions_ME" -reduce_waste,Reduce Waste,Reduce waste in consumption and packaging,Waste & Recycling,Reducing packaging and unnecessary consumption saves money and lowers your impact.,100.0,"reduce_waste,reuse_containers,buy_sell_used,buy_bulk,buy_recycled",,,"Reduce_Reuse_1,Reduce_Reuse_CCH,All_Actions_ME" -compost,Compost,Compost food waste,Waste & Recycling,"Composting food waste reduces emissions, turning garbage into valuable organic matter.",100.0,compost_pickup,,,"Reduce_Reuse_1,Reduce_Reuse_CCH,All_Actions_ME" -reduce_lawn_size,Reduce Lawn Size,Reduce the size of your lawn,"""Land, Soil & Water""",Reducing your lawn size can save money and reduce emissions and time.,500.0,"lawn_size,reduce_lawn_size,mower_type,mowing_frequency",,,"Yard_Landscaping_1,All_Actions_ME" -reduce_lawn_care,Reduce Lawn Care,"Reduce mowing, fertilizing or other lawn care","""Land, Soil & Water""","Mowing, fertilizing or watering your lawn less reduces emissions and saves money.",300.0,"lawn_size,lawn_service,mowing_frequency,mower_type,fertilizer,fertilizer_applications",,,"Yard_Landscaping_1,All_Actions_ME" -electric_mower,Electric Mower,Replace gasoline mower with electric,"""Land, Soil & Water""","Switching from gasoline to electric mower reduces pollution, noise and emissions.",500.0,"lawn_size,mower_type,mower_switch",,,"Yard_Landscaping_1,All_Actions_ME" -rake_elec_blower,Rake or Electric Blower,Replace gasoline blower with rake or electric,"""Land, Soil & Water""",Raking or using an electric instead of gasoline blower reduces pollution and noise.,300.0,"leaf_cleanup_gas_blower,leaf_cleanup_blower_switch",,,"Yard_Landscaping_1,All_Actions_ME" \ No newline at end of file +Action Name,Title,Description,Where&When,Category,Subcategory,Helptext,Avg points,Questions,Picture,Information,Stations +energy_fair,Sustainability event,"Attend energy or sustainability fair, to find ways to take sustainable action",Multiple,Activism & Education,Activism,Attending an energy fair is a great way to get started lowering energy use.,15.0,"attend_fair,own_rent,fuel_assistance,activity_group",,"Although the action in itself does not lead to emission savings, it leads to a small point allocation because we know you will do something!","Welcome_1,Welcome_CCH,All_Actions_ME" +activism,Activism,"Voter registration, petition, protest, organize",Multiple,Activism & Education,Activism,,,,,, +campaign,Publicity campaign,Execute a local publicity campaign on a climate or sustainability issue,Multiple,Activism & Education,Activism,,,,,, +local_decision,Local decisions,Vote in local elections or participate in a local town meeting or government decision-making,Multiple,Activism & Education,Activism,,,,,, +investing,Investing,Take financial action to benefit the climate.,Annual,Activism & Education,Investing,,,,,, +get_involved,Get involved,Join a group,Multiple,Activism & Education,Activism,,,,,, +carbon_footprint,Carbon footprint,Calculate your carbon footprint.,Multiple,Activism & Education,Education,,,,,, +market_green_home,Market my green home,"If selling your home, market your clean energy investments in the property",Home actions,Activism & Education,Marketing Green Home,,,,,, +local_govt,Your local government,"Tell your local government your climate and sustainability values through an email, petition, attend a meeting, etc.",Multiple,Activism & Education,Activism,,,,,, +sustain_school,Education,Promote sustainability in schools,Multiple,Activism & Education,Education,,,,,, +learn,Learn about sustainability,"Learning about climate, environment and sustainability",Multiple,Activism & Education,Education,,,,,, +environmental_stewardship,Protect the environment,Get involved with environmental stewardship organizations or activities,Multiple,Activism & Education,Activism,,,,,, +environmental_justice,Environmental justice,Get involved in environmental justice and equity,Behavioral,Activism & Education,Activism,,,,,, +activities_for_kids,Activities for kids,Fun environmental sustainable activities for children,Multiple,Activism & Education,Education,,,,,, +help_community,Help our community effort,Get involved with the group hosting this website,Behavioral,Activism & Education,Activism,,,,,, +renewable_elec,Renewable electricity,Switch to renewable electricity,Annual,Electricity and Solar,Renewable grid,Choosing renewable electricity reduces or eliminates greenhouse gas emissions from the power you use.,3714.0,"monthly_elec,electric_utility",,,"Electricity_Use_1,All_Actions_ME" +community_solar,Community solar,Sign up for community solar,Annual,Electricity and Solar,Solar,Joining a community solar project can save on your electric bill and lower greenhouse gas emissions.,3714.0,"monthly_elec,electric_utility",,,"Solar_1,Solar_CCH,All_Actions_ME" +install_solarPV,Install solar PV,Install a solar PV array,Home actions,Electricity and Solar,Solar,"Installing a solar PV array can reduce your carbon footprint dramatically, and save considerable money over time.",5494.0,solar_potential,,,"Solar_1,Solar_CCH,All_Actions_ME" +solar_assessment,Solar assessment,Request a solar assessment,Home actions,Electricity and Solar,Solar,Getting a solar assessment can help you plan for a solar PV or solar hot water system to reduce emissions and lower cost.,15.0,solar_potential,,,"Solar_1,Solar_CCH,All_Actions_ME" +EV_charger,EV charger,Install an EV charger,Home actions,Electricity and Solar,Time of use,,,,,, +opt_up_RE,Opt-up renewable electricity,Opt up to purchase more renewable electricity,Annual,Electricity and Solar,Renewable grid,,,,,, +muni_aggregation,Municipal aggregation,Your community has community choice electricity,Home actions,Electricity and Solar,Renewable grid,,,,,, +shave_peak,Shave the peak,Reduce peak electric loads.,"Behavioral,Daily",Electricity and Solar,Time of use,,,,,, +battery,Battery storage,Battery storage for your home or business,Home actions,Electricity and Solar,Renewable grid,,,,,, +low_carbon_diet,Low carbon diet,Adopt a lower carbon diet,"Behavioral,Daily",Food,Low carbon diet,Adopting a diet with less or no meat lowers emissions and can improve your health.,1417.0,"eating_switch_meals,family_size,meat_frequency,eating_switch_meals_amount",,,"Eating_1,Eating_CCH,All_Actions_ME" +eat_locally,Eat locally,Join a CSA or grow your own food,"Behavioral,Monthly",Food,Eat local,Eating locally sourced food has many benefits for community resiliency and reducing emissions,42.5,,,,All_Actions_ME +grow_local,Grow local,Grow food in a yard or community garden plot,Annual,Food,Grow local,,,,,, +energy_audit,Home energy audit,"Sign up for an energy audit, offered free from MassSave and local utilities",Home actions,Home Energy,Audits & assessments,"An energy audit can tell you the condition of your home and its heating and other systems, and help you address the issues found.",15.0,"energy_audit_recently,heating_fuel,electric_utility",,Taking the step to get an energy audit generally leads to a medium level of emissions savings; follow through with the recommended measures to earn a higher point score.,"Heating_Cooling_1,Heating_Cooling_CCH,All_Actions_ME" +prog_thermostats,Thermostats,Install smart or programmable thermostats,"Home actions,Multiple",Home Energy,Heating / cooling,Installing and using a programmable thermostat typically saves 15% from your heating bill.,421.0,"have_pstats,pstats_programmed,heating_fuel",,,"Heating_Cooling_1,All_Actions_ME" +hp_water_heater,Heat pump water heater,Install a heat pump water heater,Home actions,Home Energy,Heating / cooling,"A heat pump water heater uses about 1/3 the energy of an electric or fossil water heater, reducing emissions and saving money.",879.0,"water_heater_type,water_heater_age",,,"Water_Heating_1,All_Actions_ME" +coldwater_wash,Cold water wash,Wash clothes using cold or warm water,"Behavioral,Weekly",Home Energy,Home energy use,"Washing clothes in warm or cold water saves energy and money, and works as well as hot.",68.0,washer_loads,,,"Electricity_Use_1,All_Actions_ME" +led_lighting,LED lighting,Install LED light bulbs,"Home actions,Multiple",Home Energy,Lights / plug load,Swapping out incandescent bulbs for LEDs reduces their electricity consumption by 88%.,624.0,"bulbs_incandescent,bulbs_replace_leds",,,"Electricity_Use_1,Electricity_CCH,All_Actions_ME" +smart_power_strip,Smart power strip,Install and use a smart power strip,"Home actions,Multiple",Home Energy,Lights / plug load,A smart power strip can save on parasitic loads by shutting off devices when they aren't being used.,92.0,smart_power_strips,,,All_Actions_ME +air_source_hp,Air source heat pump,Install an air-source heat pump ,"Home actions,Multiple",Home Energy,Heating / cooling,"Heating and cooling with air-source heat pumps reduces emissions greatly, and can improve comfort and save energy costs.",7119.0,"heating_fuel,heating_system_type,heating_system_age,air_conditioning_type,air_conditioning_age",,,"Heating_Cooling_1,Heating_Cooling_CCH,All_Actions_ME" +line_dry,Line dry clothes,Dry laundry on rack or clothes line,"Behavioral,Weekly",Home Energy,Home energy use,Drying laundry on the line saves energy and money compared with a clothes dryer.,223.0,"washer_loads,dryer_type,fraction_line_dry",,,"Electricity_Use_1,Electricity_CCH,All_Actions_ME" +energystar_washer,Replace washer,Replace washing machine with an EnergyStar model,Home actions,Home Energy,Appliances,Replacing a washer with an EnergyStar model can save a lot of energy and money over time.,148.0,"washer_age,washer_energystar,washer_loads",,,"Electricity_Use_1,All_Actions_ME" +hw_assessment,Hot water assessment,Request a hot water assessment,Home actions,Home Energy,Audits & assessments,A hot water assessment can help find out the best options for replacing a water heater to save money and reduce emissions.,15.0,"water_heater_type,water_heater_age",,,"Water_Heating_1,All_Actions_ME" +heating_assessment,Heating system assessment,Request a heating system assessment,Home actions,Home Energy,Audits & assessments,Getting a heating system assessment can help find the best path for saving energy and reducing emissions.,15.0,"heating_fuel,heating_system_type,heating_system_age,air_conditioning_type,air_conditioning_age",,,"Heating_Cooling_1,Heating_Cooling_CCH,All_Actions_ME" +weatherization,Weatherize,Insulate or air-seal a home,Home actions,Home Energy,Building envelope,Weatherizing (insulating and air-sealing) your home typically saves 15% from your heating bill.,3281.0,"weatherized,heating_fuel",,,"Heating_Cooling_1,Heating_Cooling_CCH,All_Actions_ME" +electricity_monitor,Electricity monitor,Make use of an electricity monitor,"Home actions,Monthly",Home Energy,Home energy use,Using an electricity monitor to find out where power is used is a good first step to conserving it.,111.0,install_electricity_monitor,,,"Electricity_Use_1,All_Actions_ME" +install_solarHW,Solar hot water,Install a solar hot water system,Home actions,Home Energy,Heating / cooling,A solar hot water system saves considerable money and emissions.,708.0,solar_potential,,,"Solar_1,Water_Heating_1,Solar_CCH,All_Actions_ME" +fridge_pickup,Eliminate refrigerator,Have your unused refrigerator picked up for disposal,Home actions,Home Energy,Appliances,"Having an old, inefficient refrigerator taken away and disposed of properly saves space and keeps it from being used.",591.0,"extra_refrigerator,extra_refrigerator_age,unplug_refrigerator",,,"Electricity_CCH,All_Actions_ME" +hp_dryer,Heat pump dryer,Replace clothes dryer with a heat pump dryer,Home actions,Home Energy,Appliances,A heat pump dryer uses much less energy than a gas or electric dryer.,245.0,"dryer_type,dryer_loads",,,All_Actions_ME +efficient_fossil,Efficient fossil heat,Replace boiler or furnace with a high efficiency system,Home actions,Home Energy,Heating / cooling,Replacing an old boiler or furnace with efficient models can save 10-15% of your heating bill.,1146.0,"heating_fuel,heating_system_type,heating_system_age",,,All_Actions_ME +energystar_fridge,Replace refrigerator,Replace refrigerator with an EnergyStar model,Home actions,Home Energy,Appliances,Replacing a refrigerator with an EnergyStar model can save a lot of energy and money over time.,442.0,refrigerator_age,,,"Electricity_Use_1,All_Actions_ME" +ground_source_hp,Ground source heat pump,Install a ground-source heat pump ,Home actions,Home Energy,Heating / cooling,"Heating and cooling with a ground-source heat pump reduces emissions greatly, and can improve comfort and save energy costs.",11573.0,"heating_fuel,heating_system_type,heating_system_age,air_conditioning_type,air_conditioning_age",,,All_Actions_ME +induction_stove,Induction stove,Install an induction stove in place of electric or gas,Home actions,Home Energy,Appliances,An induction stove is both efficiency and great for cooking.,42.0,stove_type,,,All_Actions_ME +efficient_renovations,Renovations,Install high efficiency measures when renovating a house,Home actions,Home Energy,Building envelope,,,,,, +solar_oven,Solar oven,Build or install a solar oven,Home actions,Home Energy,Appliances,,,,,, +coaching,Coaching,Receive help from a coach on a home energy decision,Home actions,Home Energy,Audits & assessments,,,,,, +windows,Windows,Replace or improve windows,Home actions,Home Energy,Building envelope,,,,,, +savings_for_renters,Savings for renters,Find out about saving energy in your rental home,Home actions,Home Energy,Home energy use,,,,,, +conserve_electricity,Conserve electricity,Reduce electricity use in your home,Behavioral,Home Energy,Home energy use,,,,,, +zero_emissions,Zero emissions pledge,Pledge to reduce emissions in your home,Once only,Home Energy,Home energy use,,,,,, +electric_mower,Electric mower,Replace gasoline mower with electric,Home actions,Land and Water,Equipment,"Switching from gasoline to electric mower reduces pollution, noise and emissions.",369.0,"lawn_size,mower_type,mower_switch",,,"Yard_Landscaping_1,All_Actions_ME" +reduce_lawn_care,Reduce lawn care,"Reduce mowing, fertilizing or other lawn care","Behavioral,Weekly",Land and Water,Yard,"Mowing, fertilizing or watering your lawn less reduces emissions and saves money.",241.0,"lawn_size,lawn_service,mowing_frequency,mower_type,fertilizer,fertilizer_applications",,,"Yard_Landscaping_1,All_Actions_ME" +reduce_lawn_size,Reduce lawn size,Reduce the size of your lawn,Home actions,Land and Water,Yard,Reducing your lawn size can save money and reduce emissions and time.,96.0,"lawn_size,reduce_lawn_size,mower_type,mowing_frequency",,,"Yard_Landscaping_1,All_Actions_ME" +rake_elec_blower,Rake or electric blower,Replace gasoline blower with rake or electric,"Behavioral,Weekly",Land and Water,Equipment,Raking or using an electric instead of gasoline blower reduces pollution and noise.,71.0,"leaf_cleanup_gas_blower,leaf_cleanup_blower_switch",,,"Yard_Landscaping_1,All_Actions_ME" +plant_trees,Plant trees,Plant one or more trees,Multiple,Land and Water,Community,Trees can sequester CO2 in the soil if they reach maturity,60.0,how_many_trees,,,"Yard_Landscaping_1,All_Actions_ME" +showerheads,Showerheads,Install low-flow showerheads,"Home actions,Multiple",Land and Water,Water conservation,,,,,, +rain_barrel,Rain barrel,Install a rain barrel,Home actions,Land and Water,Water conservation,,,,,, +reduce_watering,Reduce watering during drought,Reduce watering during drought,"Behavioral,Weekly",Land and Water,Water conservation,,,,,, +light_pollution,Reduce light pollution,Reduce light pollution,Multiple,Land and Water,Light pollution,,,,,, +plant_native,Plant native,Plant native plants to help pollinators,Multiple,Land and Water,Yard,,,,,, +open_space,Open space,"Protect or restore an open space, river or forest.",Multiple,Land and Water,Community,,,,,, +conserve_water,Conserve water at home,Reduce water use any way you can,Behavioral,Land and Water,Water conservation,,,,,, +community_cleanup,Clean-up Litter,Pick up and dispose of litter in your community,Behavioral,Land and Water,Community,,,,,, +replace_car,Replace vehicle,Replace your primary vehicle,Vehicle actions,Transportation,Vehicles,Replacing an inefficient car with electric or hybrid can greatly lower your carbon footprint.,5820.0,"car_type,car_annual_miles,car_mpg,car_new_type",,,"Transportation_1,Transportation_CCH,All_Actions_ME" +eliminate_car,Eliminate vehicle,Eliminate a vehicle,Vehicle actions,Transportation,Vehicles,Getting rid of a car in favor of ridesharing or public transport saves money and reduces emissions.,8429.0,"car_type,car_annual_miles,car_mpg",,,All_Actions_ME +offset_flights,Offset flights,Purchase carbon offsets for flights taken,"Behavioral,Monthly",Transportation,Flights,Purchasing flight offsets can reduce your carbon footprint and support efforts to restore the climate.,1847.0,"flights_amount,offset_flights",,,"Transportation_1,All_Actions_ME" +reduce_flights,Reduce fllights,Reduce the amount you fly,"Behavioral,Monthly",Transportation,Flights,"Reducing the amount you fly has a big impact towards lowering emissions, and saves you money.",1847.0,"flights_amount,transportation_flights",,,"Transportation_1,All_Actions_ME" +reduce_car_miles,Reduce car miles,Reduce miles driven for your primary vehicle,"Behavioral,Weekly",Transportation,Vehicles,Reducing the amount you drive in favor of ridesharing or public transport saves money and reduces emissions.,1686.0,"car_type,car_annual_miles,car_mpg,reduce_mileage_percent,transportation_public,transportation_public_amount,commute_bike_walk,commute_bike_walk_amount,telecommute,telecommute_amount",,,"Transportation_1,Transportation_CCH,All_Actions_ME" +buy_e_bike,Purchase e-bike,Buy an e-bike for local errands,"Behavioral,Daily",Transportation,Alternative transit,,,,,, +public_transit,Public transit,Take public transportation,"Behavioral,Daily",Transportation,Alternative transit,,,,,, +people_power,Cycle or walk,Walk or bike for transportation,"Behavioral,Daily",Transportation,Alternative transit,,,,,, +reduce_pollution,Reduce vehicle pollution,Reduce pollution from your car or other vehicles,Behavioral,Transportation,Vehicles,,,,,, +compost,Compost,Compost food waste,"Behavioral,Weekly",Waste,Reuse and recycling,"Composting food waste reduces emissions, turning garbage into valuable organic matter.",189.0,compost_pickup,,,"Reduce_Reuse_1,Reduce_Reuse_CCH,All_Actions_ME" +reduce_waste,Reduce waste,Reduce waste in consumption and packaging,"Behavioral,Weekly",Waste,Reduce purchasing,Reducing packaging and unnecessary consumption saves money and lowers your impact.,481.0,"reduce_waste,reuse_containers,buy_sell_used,buy_bulk,buy_recycled",,,"Reduce_Reuse_1,Reduce_Reuse_CCH,All_Actions_ME" +avoid_purchase,Avoid a purchase,Avoid a purchase,"Behavioral,Daily",Waste,Reduce purchasing,,,,,, +borrow_buy_used,Buy used or borrow,Buy used or borrow,"Behavioral,Daily",Waste,Reduce purchasing,,,,,, +swap_donate,Swap or donate,Donate or swap items,"Behavioral,Daily",Waste,Donate,,,,,, +recycling,Recycle everything,Recycle whatever you can,Behavioral,Waste,Reuse and recycling,,,,,, \ No newline at end of file diff --git a/src/carbon_calculator/content/all-actions-update.csv b/src/carbon_calculator/content/all-actions-update.csv new file mode 100644 index 000000000..a5851e6d0 --- /dev/null +++ b/src/carbon_calculator/content/all-actions-update.csv @@ -0,0 +1,2230 @@ +Community,Live,Action,Impact,Cost,Category,Carbon Calculator Action +Cooler Greenfield,Yes,Become a Playwright,Medium,0,Activism & Education,activism +Jewish Climate Action Network -- JCAN-MA,Yes,Dayenu: A Jewish Call to Climate Action,Medium,0,Activism & Education,activism +Energize Wayland,No,Declare a Climate Emergency!,Medium,0,Activism & Education,activism +Energize Wayland,Yes,Expand your activism with an app,Low,0,Activism & Education,activism +Energize Wayland,No,Mobilize for a better future! ,Medium,0,Activism & Education,activism +Fairmount Indigo Collab.,No,Petition: Equitable & Accessible Transit,Low,0,Activism & Education,activism +Demo 2023,Yes,Refer a Friend ,Low,0,Activism & Education,activism +Fairmount Indigo Collab.,No,Tell Gov. Baker to Sign the Climate Bill,High,0,Activism & Education,activism +Cooler Communities,No,Your Voice for the Climate Age 12+,High,0,Activism & Education,activism +Cooler Communities,No,Finding Edible Plants - All Ages,Low,0,Activism & Education,activities_for_kids +Cooler GCVS,Yes,Make Exploding Seed Balls,Medium,$,"Land, Soil & Water",activities_for_kids +Cooler Northampton,Yes,Make Exploding Seed Balls,Medium,$,Food,activities_for_kids +Energize Framingham,No,Summer Scavenger Hunt,Low,0,Activism & Education,activities_for_kids +Ellen Test,Yes,Dual Fuel Heat Pump,Medium,$$$,Home Energy,air_source_hp +Sustainable Sherborn,Yes,Energy-Efficient Heating and Cooling,High,$$,Home Energy,air_source_hp +Solarize Eastie,No,Get Hot & Cool with Mini-Split-Green Eastie,High,$$$,Home Energy,air_source_hp +Green Pepperell,No,Get Hot & Cool with Mini-Split-PepperellMA,High,$$$,Home Energy,air_source_hp +MassEnergizeDemo,Yes,Get Hot & Cool with Mini-Splits,High,$$$,Home Energy,air_source_hp +Sustainable Middlesex,Yes,Get Hot & Cool with Mini-Splits,High,$$$,Home Energy,air_source_hp +MassEnergizeDemo,Yes,Get Hot & Cool with Mini-Splits,High,$$$,Home Energy,air_source_hp +Sustainable Middlesex,Yes,Get Hot & Cool with Mini-Splits,High,$$$,Home Energy,air_source_hp +Melrose Climate Action,No,Get Hot & Cool with Mini-Splits-MelroseMA,High,$$$,Home Energy,air_source_hp +Energize Lexington,Yes,Get Hot! Get Cool: Heat Pumps Do Both! ,High,$$$,Home Energy,air_source_hp +Cooler Greenfield,Yes,Getting Off Fossil Fuels,High,$$$,Home Energy,air_source_hp +Ellen Test,Yes,Green Heating & AC - Heat Pumps ,High,$$$,Home Energy,air_source_hp +Energize Boxborough,Yes,Green Heating & Cooling ,High,$$$,Home Energy,air_source_hp +Sustainable Medfield,Yes,Green Heating & Cooling with Heat Pumps,High,$$$,Home Energy,air_source_hp +Energize Franklin,Yes,Green Heating and AC,High,$$$,Home Energy,air_source_hp +Energize Wayland,Yes,Green heating and AC,High,$$$,Home Energy,air_source_hp +Jewish Climate Action Network -- JCAN-MA,Yes,Green Heating and AC,High,$$$,Home Energy,air_source_hp +Jewish Climate Action Network -- JCAN-MA,No,Green heating and AC,High,$$$,Home Energy,air_source_hp +Training,Yes,Green heating and AC,High,$$$,Home Energy,air_source_hp +Sustainable Milton,Yes,Green Heating and AC,High,$$$,Home Energy,air_source_hp +Wayland,Yes,Green Heating and AC,High,$$$,Home Energy,air_source_hp +Energize Franklin,Yes,Green Heating and AC,High,$$$,Home Energy,air_source_hp +Energize Wayland,Yes,Green heating and AC,High,$$$,Home Energy,air_source_hp +Jewish Climate Action Network -- JCAN-MA,Yes,Green Heating and AC,High,$$$,Home Energy,air_source_hp +Jewish Climate Action Network -- JCAN-MA,No,Green heating and AC,High,$$$,Home Energy,air_source_hp +Sustainable Milton,Yes,Green Heating and AC,High,$$$,Home Energy,air_source_hp +Training,Yes,Green heating and AC,High,$$$,Home Energy,air_source_hp +MassEnergizeDemo,Yes,Green Heating and AC copy,High,$$$,Home Energy,air_source_hp +Melrose Climate Action,Yes,Green Heating and Cooling: Heat Pumps,High,$$$,Home Energy,air_source_hp +Energize Acton,Yes,Heat & Cool: Heat Pumps ,High,$$$,Home Energy,air_source_hp +Energize Acton,Yes,Heat & Cool: Heat Pumps ,High,$$$,Home Energy,air_source_hp +Energize Framingham,Yes,Heat and Cool with Mini-Split Heat Pumps,High,$$$,Home Energy,air_source_hp +Cooler Communities,Yes,Heat Pumps,Medium,$,Home Energy,air_source_hp +Cooler GCVS,Yes,Heat Pumps,Medium,$,Home Energy,air_source_hp +Cooler Northampton,Yes,Heat Pumps,Medium,$,Home Energy,air_source_hp +Hampshire Regional HS,Yes,Heat Pumps,High,$$,Home Energy,air_source_hp +Cooler Communities,Yes,Heat Pumps,Medium,$,Home Energy,air_source_hp +Cooler GCVS,Yes,Heat Pumps,Medium,$,Home Energy,air_source_hp +Cooler Northampton,Yes,Heat Pumps,Medium,$,Home Energy,air_source_hp +Hampshire Regional HS,Yes,Heat Pumps,High,$$,Home Energy,air_source_hp +Kaat's Test Community,No,Heat Pumps ,High,$$$,Home Energy,air_source_hp +AimeeTest1x2,Yes,Heat Pumps are Hard,High,$$$,Home Energy,air_source_hp +Framingham Demo,Yes,Heat Pumps are Hard Copy 939,High,$$$,Home Energy,air_source_hp +Cooler Springfield,No,Heat Pumps Springfield,High,$$$,Home Energy,air_source_hp +Cooler SICS,No,Heat Pumps-SICS,High,$$$,Home Energy,air_source_hp +Solarize Eastie,No,Heating & Cooling with Heat Pump-Green Eastie,High,$$,Home Energy,air_source_hp +Green Pepperell,Yes,Heating & Cooling with Heat Pumps,High,$$,Home Energy,air_source_hp +HarvardEnergize,Yes,Heating & Cooling with Heat Pumps,High,$$,Home Energy,air_source_hp +Sustainable Middlesex,Yes,Heating & Cooling with Heat Pumps,High,$$,Home Energy,air_source_hp +HarvardEnergize,Yes,Heating & Cooling with Heat Pumps,High,$$,Home Energy,air_source_hp +Sustainable Middlesex,Yes,Heating & Cooling with Heat Pumps,High,$$,Home Energy,air_source_hp +Green Pepperell,Yes,Heating & Cooling with Heat Pumps,High,$$,Home Energy,air_source_hp +Melrose Climate Action,No,Heating & Cooling with Heat Pumps-MelroseMA,High,$$,Home Energy,air_source_hp +EnergizeNewburyport,Yes,Heating and Cooling with Heat Pumps,High,$$$,Home Energy,air_source_hp +EnergizeNewburyport,Yes,Heating and Cooling with Heat Pumps,High,$$$,Home Energy,air_source_hp +Energize Natick,Yes,hratpumps!,High,$$$,Home Energy,air_source_hp +EcoNatick,Yes,HUGE Heat Pump rebates!,High,$$,Home Energy,air_source_hp +EcoNatick,Yes,HUGE Heat Pump rebates!,High,$$,Home Energy,air_source_hp +Cooler Concord,Yes,Install a Heat Pump for Heating and AC,High,$$$,Home Energy,air_source_hp +Cooler Concord,Yes,Install a Heat Pump for Heating and AC,High,$$$,Home Energy,air_source_hp +Energize Littleton,Yes,Install Mini-Splits Heat Pump-LittnMA,High,$$$,Home Energy,air_source_hp +Energize Littleton,Yes,Install Mini-Splits-Cop-LittnMA,High,$$$,Home Energy,air_source_hp +Bedford,No,Mini-Split Heat Pumps Are For You,High,$$$,Home Energy,air_source_hp +Nowhere,Yes,Mini-Split Heat Pumps in Concord!,High,$$$,Home Energy,air_source_hp +Cooler Communities,No,Stay Warm - Keep Cool = Heat Pumps,High,$$,Home Energy,air_source_hp +Cooler Communities,No,Stay Warm - Keep Cool = Heat Pumps,High,$$,Home Energy,air_source_hp +LexCAN Toolkit,Yes,Switch to Clean Heating & Cooling ,High,$$,Home Energy,air_source_hp +Green Newton,Yes,Update Heating & Cooling,High,$$$,Home Energy,air_source_hp +Green Newton,Yes,Update Heating & Cooling,High,$$$,Home Energy,air_source_hp +Demo 2023,Yes,Update Heating and Cooling,High,$$$,Home Energy,air_source_hp +Demo 2023,Yes,Update Heating and Cooling,High,$$$,Home Energy,air_source_hp +Global Climate Corps,Yes,Update Heating and Cooling-Copy,High,$$$,Home Energy,air_source_hp +Global Climate Corps,Yes,Update Heating and Cooling-Copy,High,$$$,Home Energy,air_source_hp +Energize Lincoln,No,Use heatpump-LincolnMA,High,$$$,Home Energy,air_source_hp +Sustainable Medfield,Yes, Sustainable Household Goods,Low,$,Waste & Recycling,avoid_purchase +Green Newton,Yes,"""Buy Less Stuff"" Challenge",High,0,Waste & Recycling,avoid_purchase +Sustainable Medfield,Yes,Borrow from the Unusual Items Collection,Low,0,Waste & Recycling,avoid_purchase +Energize Acton,Yes,Buy Less Stuff,Medium,$,Waste & Recycling,avoid_purchase +Energize Boxborough,Yes,Buy Less Stuff,Low,0,Waste & Recycling,avoid_purchase +Energize Wayland,Yes,Buy Less Stuff,Medium,$,Waste & Recycling,avoid_purchase +Jewish Climate Action Network -- JCAN-MA,Yes,Buy Less Stuff,Low,0,Waste & Recycling,avoid_purchase +EnergizeNewburyport,No,Buy Less Stuff...Share More,Medium,0,Waste & Recycling,avoid_purchase +Energize Lexington,Yes,Buy Secondhand Clothing ,Low,0,Waste & Recycling,avoid_purchase +Sustainable Sherborn,Yes,Buying Less Stuff,High,0,Waste & Recycling,avoid_purchase +Energize Lexington,Yes,Repair it,Low,0,Waste & Recycling,avoid_purchase +EcoNatick,No,Repair it-MW,Low,0,Waste & Recycling,avoid_purchase +Sustainable Medfield,Yes,“3 Months of Less” Challenge,Medium,0,Waste & Recycling,avoid_purchases +Sustainable Medfield,Yes,Borrow from the Unusual Items Collection,Low,0,Waste & Recycling,avoid_purchases +Energize Wayland,Yes,Home Battery Storage,Medium,$$,Home Energy,battery +HarvardEnergize,Yes,E-Bikes,Medium,$$,Transportation,buy_e_bike +Sustainable Sherborn,Yes,Electrifying your Ride,High,$$$,Transportation,buy_e_bike +EcoNatick,No,Calculate ur Carbon Footprint 6668-EcoNatick,Low,0,Activism & Education,carbon_footprint +Demo 2023,Yes,Calculate Your Carbon Footprint,Low,0,Activism & Education,carbon_footprint +Energize Acton,Yes,Calculate Your Carbon Footprint,Low,0,Activism & Education,carbon_footprint +Energize Boxborough,Yes,Calculate your Carbon Footprint,Low,0,Activism & Education,carbon_footprint +Energize Franklin,Yes,Calculate Your Carbon Footprint,Low,0,Activism & Education,carbon_footprint +Sustainable Medfield,Yes,Calculate Your Carbon Footprint,Low,0,Activism & Education,carbon_footprint +Sustainable Milton,Yes,Calculate your Carbon Footprint,Low,0,Activism & Education,carbon_footprint +Sustainable Medfield,Yes,Calculate Your Carbon Footprint,Low,0,Activism & Education,carbon_footprint +Cooler Concord,Yes,Calculate your Carbon Footprint!,Low,0,Activism & Education,carbon_footprint +Melrose Climate Action,Yes,Calculate Your Carbon Footprint!,Low,0,Activism & Education,carbon_footprint +Melrose Climate Action,Yes,Calculate Your Carbon Footprint!,Low,0,Activism & Education,carbon_footprint +MassEnergizeDemo,No,Calculate your Carbon Footprint! ,Low,0,Activism & Education,carbon_footprint +Pioneer Valley Schools,Yes,Calculate your Carbon Footprint! ,Low,0,Activism & Education,carbon_footprint +Sustainable Sherborn,Yes,Calculating Your Carbon Footprint,Low,0,Activism & Education,carbon_footprint +Energize Lexington,Yes,Cool Climate Carbon Calculator,Low,0,Activism & Education,carbon_footprint +LexCAN Toolkit,Yes,Cool Climate Carbon Calculator,Low,0,Activism & Education,carbon_footprint +Cooler Springfield,Yes,Shrink My Carbon Footprint,Low,0,Activism & Education,carbon_footprint +Agawam,Yes,What's Your Carbon Footprint? Age 14+,Low,0,Activism & Education,carbon_footprint +Jewish Climate Action Network -- JCAN-MA,Yes,What's Your Carbon Footprint? Age 14+,Low,0,Activism & Education,carbon_footprint +Energize Wayland,No,Annual roadside trash Clean Up!,Low,0,Waste & Recycling,cleanup_community +Agawam,Yes,Clean Up Agawam,Low,0,Waste & Recycling,cleanup_community +Solarize Eastie,No,Clean Up Your Communit-Green Eastie,Low,0,Activism & Education,cleanup_community +Green Pepperell,No,Clean Up Your Communit-PepperellMA,Low,0,Activism & Education,cleanup_community +Sustainable Middlesex,Yes,Clean Up Your Community,Low,0,Activism & Education,cleanup_community +Melrose Climate Action,No,Clean Up Your Community-MelroseMA,Low,0,Activism & Education,cleanup_community +Hampshire Regional HS,No,Clean Up Your Community-westhampton,Low,0,Activism & Education,cleanup_community +EcoNatick,Yes,Keep Natick Beautiful,Low,0,Waste & Recycling,cleanup_community +Agawam,Yes,"Litter Free Agawam, Age 4+",Low,0,Waste & Recycling,cleanup_community +EcoNatick,No,Litter-Free Natick,Low,0,Waste & Recycling,cleanup_community +Energize Framingham,No,Participate in a Framingham Clean-Up! ,Low,0,Activism & Education,cleanup_community +Kaat's Test Community,No,Wayland Cleans Up!,Low,$$,Transportation,cleanup_community +Sustainable Sherborn,Yes,Consulting with a Sherborn Energy Coach,Low,0,Home Energy,coaching +Energize Wayland,No,Annual roadside trash Clean Up!,Low,0,Waste & Recycling,community_cleanup +Agawam,Yes,Clean Up Agawam,Low,0,Waste & Recycling,community_cleanup +Solarize Eastie,Yes,Clean Up Your Communit-Green Eastie,Low,0,Activism & Education,community_cleanup +Sustainable Middlesex,Yes,Clean Up Your Community,Low,0,Activism & Education,community_cleanup +Sustainable Medfield,Yes,Help our Planet by Deleting Emails,Low,0,Waste & Recycling,community_cleanup +Agawam,Yes,"Litter Free Agawam, Age 4+",Low,0,Waste & Recycling,community_cleanup +EcoNatick,No,Litter-Free Natick,Low,0,Waste & Recycling,community_cleanup +Energize Framingham,No,Participate in a Framingham Clean-Up! ,Low,0,Activism & Education,community_cleanup +Agawam,Yes,Pick Up the Poop Pledge Age 6+,Low,0,Waste & Recycling,community_cleanup +MassEnergizeDemo,Yes,An action you want to show up next,Medium,0,Solar,community_solar +Solarize Eastie,No,Community Sola-Green Eastie,Medium,0,Solar,community_solar +Green Pepperell,No,Community Sola-PepperellMA,Medium,0,Solar,community_solar +Demo 2023,Yes,Community Solar,Medium,0,Solar,community_solar +Sustainable Milton,Yes,Community Solar,Medium,$,Solar,community_solar +Sustainable Sherborn,Yes,Community Solar,Medium,0,Solar,community_solar +Demo 2023,Yes,Community Solar,Medium,0,Solar,community_solar +Sustainable Milton,Yes,Community Solar,Medium,$,Solar,community_solar +Sustainable Sherborn,Yes,Community Solar,Medium,0,Solar,community_solar +Sustainable Middlesex,Yes,Community Solar ,Medium,0,Solar,community_solar +Green Pepperell,Yes,Community Solar on Pepperell's Landfill,High,0,Solar,community_solar +Global Climate Corps,No,Community Solar-Copy,Medium,0,Solar,community_solar +Master Template Community (DO NOT DELETE),Yes,Community Solar-Copy,Medium,0,Solar,community_solar +EcoNatick,No,Community Solar-EcoNatick,Medium,0,Solar,community_solar +EcoNatick,No,Community Solar-EcoNatick,Medium,0,Solar,community_solar +Melrose Climate Action,No,Community Solar-MelroseMA,Medium,0,Solar,community_solar +Jewish Climate Action Network -- JCAN-MA,Yes,"Community Solar, No Installation ",Medium,$,Solar,community_solar +Agawam,Yes,Get Paid for Solar,Medium,0,Solar,community_solar +Agawam,Yes,Get Paid for Solar,Medium,0,Solar,community_solar +Solarize Eastie,No,"NOT: Community Solar, No Installatio-Green Eastie",Medium,$,Solar,community_solar +Green Pepperell,No,"NOT: Community Solar, No Installatio-PepperellMA",Medium,$,Solar,community_solar +Jewish Climate Action Network -- JCAN-MA,No,"NOT: Community Solar, No Installation-Copy",Medium,$,Solar,community_solar +Melrose Climate Action,No,"NOT: Community Solar, No Installation-MelroseMA",Medium,$,Solar,community_solar +Energize Acton,No,NOT: Subscribe to Community Solar,Medium,0,Solar,community_solar +Energize Framingham,No,Save 5-10% and Support Solar Development,Medium,0,Solar,community_solar +Energize Wayland,Yes,Sign up for community solar,Medium,$,Solar,community_solar +Training,Yes,Sign up for community solar,Medium,,Solar,community_solar +Energize Wayland,Yes,Sign up for community solar,Medium,$,Solar,community_solar +EnergizeNewburyport,Yes,Sign Up for Community Solar,Medium,$,Solar,community_solar +Training,Yes,Sign up for community solar,Medium,,Solar,community_solar +Energize Framingham,No,Solar Subscription - No Roof Required,Medium,$,Solar,community_solar +Cooler Communities,No,Sun for Everyone - Community Solar,Medium,0,Solar,community_solar +Cooler GCVS,Yes,Sun for Everyone - Community Solar,High,$$,Solar,community_solar +Cooler Communities,No,Sun for Everyone - Community Solar,Medium,0,Solar,community_solar +Cooler GCVS,Yes,Sun for Everyone - Community Solar,High,$$,Solar,community_solar +Pioneer Valley Schools,Yes,Sun for Everyone - Community Solar PVS,Medium,0,Solar,community_solar +Pioneer Valley Schools,Yes,Sun for Everyone - Community Solar PVS,Medium,0,Solar,community_solar +Cooler Communities,Yes,Sun for Everyone -- Community Solar,High,$$,Solar,community_solar +Cooler Communities,Yes,Sun for Everyone -- Community Solar,High,$$,Solar,community_solar +TestingCommunity,Yes,testing IRA google doc copy formatting,Low,0,Solar,community_solar +MassEnergizeDemo,Yes,And so on: you rank your actions,Medium,0,Waste & Recycling,compost +Solarize Eastie,No,Backyard compost or servic-Green Eastie,Low,0,Food,compost +Cooler Communities,Yes,Backyard Compost or Service,Low,0,Waste & Recycling,compost +Cooler Northampton,Yes,Backyard compost or service,Medium,$,Waste & Recycling,compost +Sustainable Middlesex,Yes,Backyard compost or service,Low,0,Food,compost +Cooler Communities,Yes,Backyard Compost or Service,Low,0,Waste & Recycling,compost +Cooler Northampton,Yes,Backyard compost or service,Medium,$,Waste & Recycling,compost +Sustainable Middlesex,Yes,Backyard compost or service,Low,0,Food,compost +Cooler Springfield,No,Backyard compost or service-Springfield,Low,0,"Land, Soil & Water",compost +Cooler Springfield,No,Backyard compost or service-Springfield,Low,0,"Land, Soil & Water",compost +Hampshire Regional HS,No,Backyard compost or service-westhampton,Low,0,"Land, Soil & Water",compost +EcoNatick,Yes,Backyard Composting,Low,0,Waste & Recycling,compost +Green Pepperell,Yes,Backyard Composting,Low,0,Waste & Recycling,compost +HarvardEnergize,Yes,Backyard Composting,Low,0,Food,compost +EcoNatick,Yes,Backyard Composting,Low,0,Waste & Recycling,compost +Green Pepperell,Yes,Backyard Composting,Low,0,Waste & Recycling,compost +HarvardEnergize,Yes,Backyard Composting,Low,0,Food,compost +Energize Littleton,Yes,Compost,Low,0,Waste & Recycling,compost +Cooler Communities,No,Compost at Home - All Ages,Low,0,Waste & Recycling,compost +Cooler Communities,No,Compost at Home - All Ages,Low,0,Waste & Recycling,compost +Demo 2023,Yes,Compost at Home or with a Service,Low,0,Waste & Recycling,compost +EcoNatick,No,Compost at Home or with a Service,High,0,Waste & Recycling,compost +EnergizeUs,Yes,Compost at Home or with a Service,Low,0,Waste & Recycling,compost +Green Newton,Yes,Compost at Home or With a Service,Low,0,Waste & Recycling,compost +Jewish Climate Action Network -- JCAN-MA,Yes,Compost at Home or With a Service,Low,0,Waste & Recycling,compost +Sustainable Milton,Yes,Compost at Home or with a Service,Low,0,Waste & Recycling,compost +Demo 2023,Yes,Compost at Home or with a Service,Low,0,Waste & Recycling,compost +EcoNatick,No,Compost at Home or with a Service,High,0,Waste & Recycling,compost +Green Newton,Yes,Compost at Home or With a Service,Low,0,Waste & Recycling,compost +Jewish Climate Action Network -- JCAN-MA,Yes,Compost at Home or With a Service,Low,0,Waste & Recycling,compost +Sustainable Milton,Yes,Compost at Home or with a Service,Low,0,Waste & Recycling,compost +Melrose Climate Action,Yes,Compost Food Waste,Low,$,Waste & Recycling,compost +Melrose Climate Action,Yes,Compost Food Waste,Low,$,Waste & Recycling,compost +EnergizeNewburyport,Yes,Compost Kitchen Waste,Medium,$,Waste & Recycling,compost +EnergizeNewburyport,Yes,Compost Kitchen Waste,Medium,$,Waste & Recycling,compost +Energize Lexington,Yes,Compost Kitchen Waste ,Medium,$,Waste & Recycling,compost +LexCAN Toolkit,Yes,Compost Kitchen Waste ,Medium,$,Waste & Recycling,compost +Wayland,Yes,compost sam and kaat,Low,$,Waste & Recycling,compost +EcoNatick,Yes,Composting Curbside Pick-up,Medium,$,Waste & Recycling,compost +EcoNatick,Yes,Composting Curbside Pick-up,Medium,$,Waste & Recycling,compost +Sustainable Sherborn,Yes,Composting Food Scraps,Low,0,Waste & Recycling,compost +Sustainable Sherborn,Yes,Composting Food Scraps,Low,0,Waste & Recycling,compost +Energize Framingham,Yes,Curbside Composting,Low,0,Waste & Recycling,compost +Energize Framingham,Yes,Curbside Composting,Low,0,Waste & Recycling,compost +Wayland,Yes,Discount backyard compost bins,Medium,$$,Waste & Recycling,compost +Nowhere,Yes,Discount backyard compost bins - Concord,Medium,$$,Waste & Recycling,compost +Energize Wayland,No,Discount compost bins,Low,0,"Land, Soil & Water",compost +Energize Wayland,No,Discount compost bins,Low,0,"Land, Soil & Water",compost +Energize Wayland,No,Discount compost bins-Copy,Low,0,"Land, Soil & Water",compost +Energize Wayland,No,Discount compost bins!,Low,0,"Land, Soil & Water",compost +Energize Wayland,No,Discount compost bins!,Low,0,"Land, Soil & Water",compost +Sustainable Medfield,Yes,Don't trash foodscraps,High,0,Waste & Recycling,compost +Sustainable Medfield,Yes,Don't trash foodscraps,High,0,Waste & Recycling,compost +Sustainable Milton,No,Don't trash foodscraps-sustainablemilton,Low,0,Waste & Recycling,compost +Energize Wayland,No,Donate fresh food to food bank,Low,0,Food,compost +LexCAN Toolkit,Yes,Environmentally Friendly Kitchen,Medium,$,Activism & Education,compost +EcoNatick,No,Environmentally Friendly Kitchen-MW,Medium,$,Activism & Education,compost +Wayland,Yes,Food scraps picked up at the curb,Medium,$,Waste & Recycling,compost +Kaat's Test Community,No,Food scraps pickup,Medium,$,Waste & Recycling,compost +Nowhere,Yes,Food scraps pickup,Medium,$,Waste & Recycling,compost +Cooler Concord,Yes,Food scraps pickup ,Medium,$$,Waste & Recycling,compost +Cooler Concord,Yes,Food scraps pickup ,Medium,$$,Waste & Recycling,compost +Cooler Greenfield,No,Food scraps pickup-GreenfieldMA,Low,$,Waste & Recycling,compost +Cooler Greenfield,No,Food scraps pickup-GreenfieldMA,Low,$,Waste & Recycling,compost +Sustainable Milton,No,Food scraps pickup-sustainablemilton,Low,$,Waste & Recycling,compost +Energize Acton,Yes,Garden Ecologically,Low,$,"Land, Soil & Water",compost +Energize Boxborough,Yes,Get Dirty in the Garden,Medium,$,"Land, Soil & Water",compost +Energize Boxborough,No,Get Dirty in the Garden-Copy,,,,compost +EcoNatick,No,Get Dirty in the Garden-MW,Low,$,"Land, Soil & Water",compost +Agawam,Yes,Home Composting Age 6+,Low,0,Food,compost +Agawam,Yes,Home Composting Age 6+,Low,0,Food,compost +Energize Acton,Yes,Make Magic: Compost,Low,0,"Land, Soil & Water",compost +Energize Boxborough,Yes,Make Magic: Compost,Low,0,Waste & Recycling,compost +Energize Wayland,Yes,Make Magic: Compost,Low,0,"Land, Soil & Water",compost +Energize Acton,Yes,Make Magic: Compost,Low,0,"Land, Soil & Water",compost +Energize Boxborough,Yes,Make Magic: Compost,Low,0,Waste & Recycling,compost +Energize Wayland,Yes,Make Magic: Compost,Low,0,"Land, Soil & Water",compost +Energize Franklin,Yes,Try Composting!,Medium,$,Waste & Recycling,compost +Energize Wayland,Yes,What to do with food scraps?,Low,$,Waste & Recycling,compost +Energize Wayland,Yes,What to do with food scraps?,Low,$,Waste & Recycling,compost +Energize Lexington,Yes,"Reduce ""Always On"" Electricity Use",Low,0,Home Energy,conserve_electricity +Demo 2023,Yes,Reduce Always-On Wasted Electricity,Low,0,Home Energy,conserve_electricity +Green Newton,Yes,Reduce Always-On Wasted Electricity,Low,0,Home Energy,conserve_electricity +Demo 2023,Yes,Reduce Always-On Wasted Electricity,Low,0,Home Energy,conserve_electricity +Energize Littleton,Yes,Reduce Always-On Wasted Electricity,Low,0,Home Energy,conserve_electricity +HarvardEnergize,Yes,Reduce Wasted Electricity,Low,0,Home Energy,conserve_electricity +AimeeTest1x2,Yes,Roombas Save kWh not therms,Low,$,Home Energy,conserve_electricity +Cooler Springfield,Yes,Save Your Power ,Medium,$,Home Energy,conserve_electricity +Jewish Climate Action Network -- JCAN-MA,Yes,Saving Energy Age 6+,Low,$,Home Energy,conserve_electricity +Sustainable Medfield,Yes,“3 Months of Less” Challenge,Medium,0,Waste & Recycling,conserve_water +Sustainable Medfield,Yes,Be Water Wise,Low,0,"Land, Soil & Water",conserve_water +EcoNatick,Yes,Be Water Wise,Low,0,"Land, Soil & Water",conserve_water +Sustainable Medfield,Yes,Be Water Wise,Low,0,"Land, Soil & Water",conserve_water +Agawam,Yes,Be Water Wise! Age 4+,Low,0,"Land, Soil & Water",conserve_water +Cooler Concord,Yes,Be Water Wise! Age 4+,Medium,0,"Land, Soil & Water",conserve_water +Jewish Climate Action Network -- JCAN-MA,Yes,Be Water Wise! Age 4+,Low,0,"Land, Soil & Water",conserve_water +Agawam,Yes,Be Water Wise! Age 4+,Low,0,"Land, Soil & Water",conserve_water +Cooler Concord,Yes,Be Water Wise! Age 4+,Medium,0,"Land, Soil & Water",conserve_water +Jewish Climate Action Network -- JCAN-MA,Yes,Be Water Wise! Age 4+,Low,0,"Land, Soil & Water",conserve_water +Green Pepperell,No,Conserve Water - Critical Drought,High,0,"Land, Soil & Water",conserve_water +Green Pepperell,No,Conserve Water - Critical Drought,High,0,"Land, Soil & Water",conserve_water +Pioneer Valley Schools,Yes,Save Water,Low,0,"Land, Soil & Water",conserve_water +Pioneer Valley Schools,Yes,Save Water,Low,0,"Land, Soil & Water",conserve_water +EcoNatick,No,Save Water-MW,Low,0,"Land, Soil & Water",conserve_water +EcoNatick,No,Save Water-MW,Low,0,"Land, Soil & Water",conserve_water +Green Newton,No,Saving Water Saves Energy,Low,0,"Land, Soil & Water",conserve_water +Green Newton,No,Saving Water Saves Energy,Low,0,"Land, Soil & Water",conserve_water +Cooler Springfield,Yes,Water Wise,Low,0,"Land, Soil & Water",conserve_water +Cooler Springfield,Yes,Water Wise,Low,0,"Land, Soil & Water",conserve_water +Sustainable Medfield,No, Sustainable Household Goods-Copy,Low,$,Waste & Recycling,DELETE +Ellen Test,No,Aimee Herb Copy 4962,Medium,$,Transportation,DELETE +Cooler Communities,No,Air Dry Your Clothes Copy 1642,Low,$,Home Energy,DELETE +,No,Air-Dry Your Clothe-LittletonMA-Copy,Low,$,Home Energy,DELETE +,Yes,Air-Dry Your Clothes,Low,$,Home Energy,DELETE +,No,An Action You Want to Show Up First-Copy,Low,0,Food,DELETE +,No,An Action You Want to Show Up First-Copy,Low,0,Food,DELETE +EcoNatick,No,An Environment for All People-MW,High,0,Activism & Education,DELETE +,No,Attend an Earth Day or Climate Festival-Copy,Low,0,Activism & Education,DELETE +Energize Framingham,No,Avoid Bottled Water-Copy,,,,DELETE +,No,Avoid Bottled Water-Copy-Copy,,,,DELETE +EcoNatick,No,Avoid Bottled Water-MW,Low,0,Waste & Recycling,DELETE +Solarize Eastie,No,Backyard compost or servic-Green Eastie,Low,0,Food,DELETE +,No,Backyard compost or service-Copy,,,,DELETE +,No,Backyard compost or service-Copy,,,,DELETE +,No,Backyard compost or service-SCIS,Low,0,Food,DELETE +,No,Backyard compost or service-SCIS,Low,0,Food,DELETE +Hampshire Regional HS,No,Backyard compost or service-westhampton,Low,0,Food,DELETE +,Yes,Be Water Wise,Low,0,"Land, Soil & Water",DELETE +,No,Be Water Wise-Copy,Low,0,"Land, Soil & Water",DELETE +,No,Bike-to-school Concord-Copy,Medium,$,Transportation,DELETE +,No,"Bring a bag, save the Earth and 10¢-Copy",Low,0,Waste & Recycling,DELETE +,No,"Bring a bag, save the Earth and 10¢-Copy",Low,0,Waste & Recycling,DELETE +,Yes,Bushwick 2,,,Solar PV,DELETE +,Yes,Bushwick 7,Medium,$$$,Transportation,DELETE +,Yes,Bushwick 9,Medium,$,Transportation,DELETE +,Yes,Bushwick 9,Medium,$,Transportation,DELETE +Sustainable Milton,No,Buy food from a local farm-sustainablemilton,Medium,$,Food,DELETE +,Yes,Buy Less Stuff,Low,0,Waste & Recycling,DELETE +,Yes,Buy Less Stuff,Low,0,Waste & Recycling,DELETE +Energize Framingham,No,Buy Naked Stuff-Copy,,,,DELETE +EcoNatick,No,Buy Naked Stuff-MW,Low,0,Waste & Recycling,DELETE +,No,Buy Secondhand Clothing -Copy,Low,0,Waste & Recycling,DELETE +,No,Buy/Lease an Electric Car/Hybrid-Copy-Copy,High,$$$,Transportation,DELETE +,No,Buy/Lease an Electric Car/Hybrid-Copy-Copy,High,$$$,Transportation,DELETE +,No,Buy/Lease an Electric or Hybrid Vehicle-Copy,High,$$$,Transportation,DELETE +,No,Buy/Lease an Electric or Hybrid Vehicle-Copy,High,$$$,Transportation,DELETE +,No,Buy/Lease an EV or Plug-in Hybrid-Copy,High,$$$,Transportation,DELETE +,Yes,Calculate Your Carbon Footprint,Low,0,Activism & Education,DELETE +Sustainable Milton,No,Calculate your Carbon Footprint Copy 6668-sustainablemilton,Low,0,Activism & Education,DELETE +Energize Boxborough,No,Calculate Your Carbon Footprint-Copy,,,,DELETE +,Yes,Calculate Your Carbon Footprint!,,,,DELETE +,Yes,Calculate Your Carbon Footprint!,,,,DELETE +,No,Calculate Your Carbon Footprint!-Copy,Low,0,Activism & Education,DELETE +,No,Calculate Your Carbon Footprint!-Copy,Low,0,Activism & Education,DELETE +,No,Celebrate Boxborough Bill-Copy,Low,0,Home Energy,DELETE +,No,Celebrate Boxborough Bill-Copy,Low,0,Home Energy,DELETE +Green Pepperell,No,Change Thermostat Setting-PepperellMA,Medium,$$$,Home Energy,DELETE +Solarize Eastie,No,Change Thermostat Settings-BoxboroughM-Green Eastie,Medium,$$$,Home Energy,DELETE +EcoNatick,No,Change Thermostat Settings-EcoNatick,Medium,$$$,Home Energy,DELETE +Melrose Climate Action,No,Change Thermostat Settings-MelroseMA,Medium,$$$,Home Energy,DELETE +Cooler Northampton,No,Change Thermostat Settings-northampton,Medium,$$$,Home Energy,DELETE +,No,Change Thermostat Settings-SCIS,Medium,$$$,Home Energy,DELETE +,No,Change Thermostat Settings-SCIS,Medium,$$$,Home Energy,DELETE +Sustainable Milton,No,Change Thermostat Settings-sustainablemilton,Medium,$$$,Home Energy,DELETE +Hampshire Regional HS,No,Change Thermostat Settings-westhampton,Medium,$$$,Home Energy,DELETE +Solarize Eastie,No,Change to LED Lightin-Green Eastie,Medium,$,Home Energy,DELETE +Green Pepperell,No,Change to LED Lightin-PepperellMA,Medium,$,Home Energy,DELETE +,No,Change to LED Lightin-PepperellMA-Copy,,,,DELETE +,No,Change to LED Lightin-PepperellMA-Copy,,,,DELETE +Melrose Climate Action,No,Change to LED Lighting-MelroseMA,Medium,$,Home Energy,DELETE +,No,Change to LED Lighting-SCIS,Medium,$,Home Energy,DELETE +,No,Change to LED Lighting-SCIS,Medium,$,Home Energy,DELETE +,No,Choose 100% Green Electricity-Copy,High,$,Home Energy,DELETE +,No,Choose 100% Green Electricity-Copy,High,$,Home Energy,DELETE +Green Pepperell,No,Clean Up Your Communit-PepperellMA,Low,0,Activism & Education,DELETE +,No,Clean Up Your Community-GCVS,,,,DELETE +,No,Clean Up Your Community-GCVS,,,,DELETE +,No,Clean Up Your Community-GCVS,,,,DELETE +,No,Clean Up Your Community-GCVS,,,,DELETE +Melrose Climate Action,No,Clean Up Your Community-MelroseMA,Low,0,Activism & Education,DELETE +,No,Clean Up Your Community-SCIS,Low,0,Activism & Education,DELETE +,No,Clean Up Your Community-SCIS,Low,0,Activism & Education,DELETE +,No,Clean Up Your Community-SICS,Low,0,Activism & Education,DELETE +,No,Clean Up Your Community-SICS,Low,0,Activism & Education,DELETE +Hampshire Regional HS,No,Clean Up Your Community-westhampton,Low,0,Activism & Education,DELETE +,Yes,Clean Water - Clear Choices,Low,0,"Land, Soil & Water",DELETE +,No,Climate Action Crew - Book Discussion-Copy,Medium,0,Home Energy,DELETE +Energize Boxborough,No,Climate Action Crew-Copy,Medium,0,Home Energy,DELETE +,No,Community Garden plo-taCom,Medium,$$,Food,DELETE +TaCommunity,No,Community Garden plo-taCom,Medium,$$,Food,DELETE +,No,Community Garden plot,Medium,$$,Food,DELETE +Ellen Test,No,Community Garden plot Copy 8655,Medium,$$,Food,DELETE +Sam,No,Community Garden plot-153,Medium,$$,Food,DELETE +Bedford,No,Community Garden plot-BedfordMA,Medium,$$,Food,DELETE +creationYO,No,Community Garden plot-creation,Medium,$$,Food,DELETE +One more,No,Community Garden plot-onemore-153,Medium,$$,Food,DELETE +Energize Springfield,No,Community Garden plot-SpringfieldMA,Medium,$$,Food,DELETE +Solarize Eastie,No,Community Sola-Green Eastie,Medium,0,Solar,DELETE +Green Pepperell,No,Community Sola-PepperellMA,Medium,0,Solar,DELETE +Energize Boxborough,No,Community Solar-BoxboroughMA,Medium,0,Solar,DELETE +,No,Community Solar-Copy,Medium,0,Solar,DELETE +Global Climate Corps,No,Community Solar-Copy,Medium,0,Solar,DELETE +Melrose Climate Action,No,Community Solar-MelroseMA,Medium,0,Solar,DELETE +,No,Community Solar-SCIS,Medium,0,Solar,DELETE +,No,Community Solar-SCIS,Medium,0,Solar,DELETE +,Yes,Compost at Home or with a Service,Low,0,Waste & Recycling,DELETE +,No,Compost at Home or with a Service-Copy,Low,0,Waste & Recycling,DELETE +,No,Compost Food Waste-Copy,Low,$,Waste & Recycling,DELETE +,No,Compost Food Waste-Copy,Low,$,Waste & Recycling,DELETE +,No,Compost Happens-Copy,,,,DELETE +,No,Compost Happens-Copy,,,,DELETE +,No,Compost Kitchen Waste-Copy,Medium,$,Waste & Recycling,DELETE +,No,Compost Kitchen Waste-Copy,Medium,$,Waste & Recycling,DELETE +Energize Framingham,No,Conservation-Copy,,,,DELETE +,No,Conserve Water - Critical Drought-Copy,High,0,"Land, Soil & Water",DELETE +,No,Conserve Water - Critical Drought-Copy,High,0,"Land, Soil & Water",DELETE +,No,Controlling Invasive Plant Species -Copy,Low,0,"Land, Soil & Water",DELETE +,No,Controlling Invasive Plant Species -Copy,Low,0,"Land, Soil & Water",DELETE +MassEnergizeDemo,No,Copy 7641,High,$$,Home Energy,DELETE +MassEnergizeDemo,No,Copy 7641,High,$$,Home Energy,DELETE +Global,No,create compost dup,Low,$,Waste & Recycling,DELETE +,No,Curbside & Backyard Composting-Copy,Low,0,Waste & Recycling,DELETE +,No,Curbside & Backyard Composting-Copy,Low,0,Waste & Recycling,DELETE +Energize Wayland,No,Discount compost bins-Copy,Low,0,"Land, Soil & Water",DELETE +,Yes,Do a Lazy Fall Garden Clean Up,,0,"Land, Soil & Water",DELETE +,Yes,Do a Lazy Fall Garden Clean Up,,0,"Land, Soil & Water",DELETE +Stowe,No,Dogs as bed-warmers,Low,$$$,Home Energy,DELETE +Bushwick,No,Dogs as bed-warmers CCC,Low,$$$,Home Energy,DELETE +Bushwick,No,Dogszzzzzy as bed-warmers Copy 7344,Low,$$$,Home Energy,DELETE +Sustainable Milton,No,Don't trash foodscraps-sustainablemilton,Low,0,Waste & Recycling,DELETE +Solarize Eastie,No,Donate Building Material-Green Eastie,Low,0,Waste & Recycling,DELETE +Green Pepperell,No,Donate Building Material-PepperellMA,Low,0,Waste & Recycling,DELETE +,Yes,Donate building materials-Copy,,,,DELETE +,Yes,Donate building materials-Copy,,,,DELETE +Melrose Climate Action,No,Donate Building Materials-MelroseMA,Low,0,Waste & Recycling,DELETE +,No,Donate Building Materials-SCIS,Low,0,Waste & Recycling,DELETE +,No,Donate Building Materials-SCIS,Low,0,Waste & Recycling,DELETE +Hampshire Regional HS,No,Donate Building Materials-westhampton,Low,0,Waste & Recycling,DELETE +Energize Wayland,No,Donate children’s items,Medium,0,Waste & Recycling,DELETE +,Yes,Drive an Electric Vehicle,High,$$$,Transportation,DELETE +,No,Drive an Electric Vehicle-Copy,High,$$$,Transportation,DELETE +,No,Drive Electric,,,,DELETE +,No,Drive Electric,,,,DELETE +,No,Drive Electric Vehicle (EV)-Copy,High,$$$,Transportation,DELETE +,No,Drive less / Walk more-MW,High,0,Transportation,DELETE +,No,Drive less / Walk more-MW,High,0,Transportation,DELETE +,No,Drive less / Walk more!-Copy,High,0,Transportation,DELETE +,No,Drive less / Walk more!-Copy,High,0,Transportation,DELETE +HarvardEnergize,No,E-Bikes-Copy,Medium,$$,Transportation,DELETE +,No,E-Bikes-Copy-Copy,,,,DELETE +,No,E-Bikes-Copy-Copy,,,,DELETE +Global Climate Corps,No,Eat a More Plant-Based Diet-Copy,High,0,Food,DELETE +,No,Eat a More Plant-Based Diet-Copy-Copy,High,0,Food,DELETE +,No,Eat a More Plant-Based Diet-Copy-Copy,High,0,Food,DELETE +,Yes,Eat a Plant-Based Diet,High,0,Food,DELETE +,Yes,Eat cookies,,,,DELETE +,Yes,Eat cookies,,,,DELETE +,Yes,Eat cookies,,,,DELETE +,Yes,Eat cookies,,,,DELETE +,Yes,Eat cookies,,,,DELETE +,Yes,Eat cookies,,,,DELETE +,Yes,Eat cookies Copy ,,,,DELETE +,No,Eat Less Meat and Dairy-Copy,High,0,Food,DELETE +,No,Eat less meat and dairy-Copy,,,,DELETE +,No,Eat Less Meat and Dairy-Copy,High,0,Food,DELETE +,No,Eat less meat and dairy-Copy,,,,DELETE +Energize Boxborough,No,Eat More Plant-Based Meals-Copy,,,,DELETE +EcoNatick,No,Ecological Landscaping -MW,Low,$$,"Land, Soil & Water",DELETE +Solarize Eastie,No,Ecological Landscaping Tree Plantin-Green Eastie,Low,$$,"Land, Soil & Water",DELETE +Green Pepperell,No,Ecological Landscaping Tree Plantin-PepperellMA,Low,$$,"Land, Soil & Water",DELETE +Melrose Climate Action,No,Ecological Landscaping Tree Planting-MelroseMA,Low,$$,"Land, Soil & Water",DELETE +,No,Ecological Landscaping Tree Planting-SCIS,Low,$$,"Land, Soil & Water",DELETE +,No,Ecological Landscaping Tree Planting-SCIS,Low,$$,"Land, Soil & Water",DELETE +Sustainable Milton,No,Ecological Landscaping Tree Planting-sustainablemilton,Low,$$,"Land, Soil & Water",DELETE +Hampshire Regional HS,No,Ecological Landscaping Tree Planting-westhampton,Low,$$,"Land, Soil & Water",DELETE +,Yes,Electric car,Medium,$$$,Transportation,DELETE +,No,Electricity Use Monitor,Low,$$,Home Energy,DELETE +Kaat's Test Community,No,Electricity Use Monitor Copy 466,Low,$$,Home Energy,DELETE +Sam,No,Electricity Use Monitor-151,Low,$,Home Energy,DELETE +Bedford,No,Electricity Use Monitor-BedfordMA,Low,$,Home Energy,DELETE +creationYO,No,Electricity Use Monitor-creation,Low,$,Home Energy,DELETE +One more,No,Electricity Use Monitor-onemore-151,Low,$,Home Energy,DELETE +Energize Springfield,No,Electricity Use Monitor-SpringfieldMA,Low,$,Home Energy,DELETE +,No,Electrify your landscaping equipment,Medium,$$,Home Energy,DELETE +,No,Electrify your landscaping equipment,Medium,$$,Home Energy,DELETE +Global Climate Corps,No,Electrify Your Ride -Copy,High,$$$,Transportation,DELETE +Solarize Eastie,No,Energy-Efficient Appliance-Green Eastie,High,$$,Home Energy,DELETE +Green Pepperell,No,Energy-Efficient Appliance-PepperellMA,High,$$,Home Energy,DELETE +Melrose Climate Action,No,Energy-Efficient Appliances-MelroseMA,High,$$,Home Energy,DELETE +,No,Energy-Efficient Appliances-SCIS,High,$$,Home Energy,DELETE +,No,Energy-Efficient Appliances-SCIS,High,$$,Home Energy,DELETE +,No,Engage to Restore the River-Copy,Medium,0,"Land, Soil & Water",DELETE +,No,Engage to Restore the River-Copy,Medium,0,"Land, Soil & Water",DELETE +EcoNatick,No,Environmental Justice: Racial Justice-MW,High,0,Activism & Education,DELETE +,No,Farmers market-Copy,Medium,$,Food,DELETE +Sustainable Medfield,No,Follow-up test,Low,$,Waste & Recycling,DELETE +Sustainable Medfield,No,Follow-up test,Low,$,Waste & Recycling,DELETE +,No,Food scraps pickup,,,,DELETE +Kaat's Test Community,No,Food scraps pickup Copy 1042,Medium,$,Waste & Recycling,DELETE +Sustainable Milton,No,Food scraps pickup-sustainablemilton,Low,$,Waste & Recycling,DELETE +TestingCommunity,No,for frimpong on paragraph spacing,Low,0,Solar,DELETE +TestingCommunity,No,for frimpong on paragraph spacing,Low,0,Solar,DELETE +,No,Frimpong Action Copy 9643,Low,$,Food,DELETE +,No,Get Dirty in the Garden-Copy,Medium,$,"Land, Soil & Water",DELETE +Energize Boxborough,No,Get Dirty in the Garden-Copy,,,,DELETE +,No,Get Dirty in the Garden-Copy,Medium,$,"Land, Soil & Water",DELETE +EcoNatick,No,Get Dirty in the Garden-MW,Low,$,"Land, Soil & Water",DELETE +Solarize Eastie,No,Get Hot & Cool with Mini-Split-Green Eastie,High,$$$,Home Energy,DELETE +Green Pepperell,No,Get Hot & Cool with Mini-Split-PepperellMA,High,$$$,Home Energy,DELETE +EnergizeUs,No,Get Hot & Cool with Mini-Splits-Copy,High,$$$,Home Energy,DELETE +EnergizeUs,No,Get Hot & Cool with Mini-Splits-Copy,High,$$$,Home Energy,DELETE +Melrose Climate Action,No,Get Hot & Cool with Mini-Splits-MelroseMA,High,$$$,Home Energy,DELETE +,No,Get Hot & Cool with Mini-Splits-SCIS,High,$$$,Home Energy,DELETE +,No,Get Hot & Cool with Mini-Splits-SCIS,High,$$$,Home Energy,DELETE +Solarize Eastie,No,Get involved in Town's Climate Action-Green Eastie,Medium,0,Activism & Education,DELETE +Green Pepperell,No,Get involved in Town's Climate Action-PepperellMA,Medium,0,Activism & Education,DELETE +Melrose Climate Action,No,Get involved in Town's Climate Action!,High,$$$,Activism & Education,DELETE +Sustainable Medfield,No,Get rid of junk mail-Copy,Low,0,Waste & Recycling,DELETE +Sustainable Milton,No,Get rid of junk mail-sustainablemilton,Low,0,Waste & Recycling,DELETE +,No,Get Started-Copy,Low,0,Activism & Education,DELETE +,No,Get Started-Copy,Low,0,Activism & Education,DELETE +Cooler Springfield,No,Getting Around (Without) Driving Copy 4291,High,0,Transportation,DELETE +Sustainable Medfield,No,Go Geothermal!-Copy,High,$$$,Home Energy,DELETE +,No,Go Geothermal!-Copy-Copy,High,$$$,Home Energy,DELETE +,No,Go Geothermal!-Copy-Copy,High,$$$,Home Energy,DELETE +,No,Green Heating & Cooling with Heat Pumps-Copy,High,$$$,Home Energy,DELETE +,No,Green Heating & Cooling with Heat Pumps-Copy,High,$$$,Home Energy,DELETE +,No,Green heating and AC-Copy,High,$$$,Home Energy,DELETE +,No,Green Heating and AC-Copy,High,$$$,Home Energy,DELETE +,No,Green heating and AC-Copy,High,$$$,Home Energy,DELETE +Solarize Eastie,No,Green Your Electricit-Green Eastie,High,0,Home Energy,DELETE +Green Pepperell,No,Green Your Electricit-PepperellMA,High,0,Home Energy,DELETE +,Yes,Green Your Electricity,High,0,Home Energy,DELETE +EnergizeUs,No,Green Your Electricity-Copy,High,0,Home Energy,DELETE +Jewish Climate Action Network -- JCAN-MA,No,Green Your Electricity-Copy,High,0,Home Energy,DELETE +,No,Green your electricity-Copy-Copy,,,,DELETE +,No,Green your electricity-Copy-Copy,,,,DELETE +Melrose Climate Action,No,Green Your Electricity-MelroseMA,High,0,Home Energy,DELETE +,No,Green Your Electricity-SCIS,High,0,Home Energy,DELETE +,No,Green Your Electricity-SCIS,High,0,Home Energy,DELETE +Hampshire Regional HS,No,Green Your Electricity-westhampton,High,0,Home Energy,DELETE +,Yes,Have food scraps picked up at the curb,,,,DELETE +,No,Have less children,Even Higher,0,Home Energy,DELETE +Energize Boxborough,No,Heat & Cool: Heat Pumps -Copy,,,,DELETE +Solarize Eastie,No,Heat my water with Solar-Green Eastie,Medium,$$$,Solar,DELETE +Green Pepperell,No,Heat my water with Solar-PepperellMA,Medium,$$$,Solar,DELETE +Melrose Climate Action,No,Heat my water with Solar!-MelroseMA,Medium,$$$,Solar,DELETE +,No,Heat my water with Solar!-SCIS,Medium,$$$,Solar,DELETE +,No,Heat my water with Solar!-SCIS,Medium,$$$,Solar,DELETE +Sustainable Milton,No,Heat my water with Solar!-sustainablemilton,Medium,$$$,Solar,DELETE +Kaat's Test Community,No,Heat Pumps Copy 7093,High,$$$,Home Energy,DELETE +,Yes,Heat Your Water With Solar,Medium,$$,Home Energy,DELETE +,No,Heat Your Water With Solar-Copy,Medium,$$,Home Energy,DELETE +Solarize Eastie,No,Heating & Cooling with Heat Pump-Green Eastie,High,$$,Home Energy,DELETE +Green Pepperell,No,Heating & Cooling with Heat Pump-PepperellMA,High,$$,Home Energy,DELETE +Green Pepperell,No,Heating & Cooling with Heat Pump-PepperellMA,High,$$,Home Energy,DELETE +HarvardEnergize,No,Heating & Cooling with Heat Pumps Fram,High,$$,Home Energy,DELETE +HarvardEnergize,No,Heating & Cooling with Heat Pumps Fram,High,$$,Home Energy,DELETE +Energize Framingham,No,Heating & Cooling with Heat Pumps-Copy,High,$$,Home Energy,DELETE +Energize Framingham,No,Heating & Cooling with Heat Pumps-Copy,High,$$,Home Energy,DELETE +Melrose Climate Action,No,Heating & Cooling with Heat Pumps-MelroseMA,High,$$,Home Energy,DELETE +,No,Heating & Cooling with Heat Pumps-SCIS,High,$$,Home Energy,DELETE +,No,Heating & Cooling with Heat Pumps-SCIS,High,$$,Home Energy,DELETE +,No,Hello Franklin-Copy,Low,0,Activism & Education,DELETE +,No,Hello Franklin-Copy,Low,0,Activism & Education,DELETE +,Yes,Here we go again,High,$$,Transportation,DELETE +,No,Home Energy Assessment - Concord-Copy,Medium,0,Home Energy,DELETE +Energize Wayland,No,images,Low,,Home Energy,DELETE +Green Newton,No,Install A Heat Pump Water Heater Copy 6127,Medium,0,Home Energy,DELETE +,Yes,Install Mini-Splits Heat Pumps,High,$$$,Home Energy,DELETE +,No,Install Mini-Splits Heat Pumps-Copy,High,$$$,Home Energy,DELETE +,No,Install rooftop or ground mount solar PV,High,$$$,Solar,DELETE +,No,Install rooftop or ground mount solar PV,High,$$$,Solar,DELETE +,No,Install Rooftop or Ground Mount Solar PV-Copy,High,$$$,Solar,DELETE +,No,Install Rooftop or Ground Mount Solar PV-Copy,High,$$$,Solar,DELETE +,No,Install Solar PV-Copy-Copy,High,$$$,Solar,DELETE +,No,Install Solar PV-Copy-Copy,High,$$$,Solar,DELETE +,No,Install Solar PV-Copy-Copy-Copy,High,$$$,Solar,DELETE +,No,Install Solar PV-Copy-Copy-Copy,High,$$$,Solar,DELETE +,No,Insulate & Weatherize to the Max-Copy,High,$$$,Home Energy,DELETE +,Yes,Insulate and Air Seal Your Home,High,$$,Home Energy,DELETE +Green Newton,No,Insulate and Air Seal Your Home Copy 2269,High,0,Home Energy,DELETE +Jewish Climate Action Network -- JCAN-MA,No,Insulate and Air Seal Your Home-Copy,Medium,0,Home Energy,DELETE +EnergizeNewburyport,No,Insulate and Weatherize -Copy,High,0,Home Energy,DELETE +,Yes,Insulate like crazy-Copy,High,0,Home Energy,DELETE +,No,Insulate like Crazy-Copy,High,0,Home Energy,DELETE +,Yes,Insulate like crazy-Copy,High,0,Home Energy,DELETE +,No,Insulate like Crazy-Copy,High,0,Home Energy,DELETE +,No,Invest Like a Climate Activis-GreenerStow,Medium,0,Activism & Education,DELETE +,No,Invest Like a Climate Activis-GreenerStow,Medium,0,Activism & Education,DELETE +,No,Invest Like a Climate Activis-StowMA,Medium,0,Activism & Education,DELETE +,No,Invest Like a Climate Activis-StowMA,Medium,0,Activism & Education,DELETE +,No,Invest Like a Climate Activist,Medium,0,Activism & Education,DELETE +,No,Invest Like a Climate Activist,Medium,0,Activism & Education,DELETE +,Yes,Invest Like a Climate Activist,Medium,0,Activism & Education,DELETE +,No,Invest Like a Climate Activist-Copy,Medium,0,Activism & Education,DELETE +,Yes,it works?,Medium,$,Solar PV,DELETE +,No,Join 2040 Handbook Book Club-Copy-Copy,,,,DELETE +,No,Join 2040 Handbook Book Club-Copy-Copy,,,,DELETE +,No,Join 350 Mass Franklin Node-Copy,Low,0,Activism & Education,DELETE +,No,Join 350 Mass Franklin Node-Copy,Low,0,Activism & Education,DELETE +,Yes,Join 350MA Metrowest Node,,,,DELETE +Wayland,No,Join 350MA Metrowest Node Copy 4343,Medium,$,Activism & Community,DELETE +Wayland,No,Join 350MA Metrowest Node Copy 6337,Medium,$,Activism & Community,DELETE +,Yes,Join the 350MA Metrowest Node,,,,DELETE +,No,Join this site and be counted!-Copy,,,,DELETE +,No,Join this site and be counted!-Copy,,,,DELETE +Global,No,Kaat's Action,Low,$,,DELETE +Energize Boxborough,No,Landlord Near Free Property Upgrades-BoxboroughMA,Low,0,Home Energy,DELETE +Sustainable Milton,No,Landlord Near Free Property Upgrades-sustainablemilton,Low,0,Home Energy,DELETE +,No,Less Plastic Is Good! Age 6+-MW,Low,0,Activism & Education,DELETE +,No,Less Plastic Is Good! Age 6+-MW,Low,0,Activism & Education,DELETE +,No,Make Magic: Compost-Copy-Copy,,,,DELETE +,No,Make Magic: Compost-Copy-Copy,,,,DELETE +Solarize Eastie,No,Market my Green Hom-Green Eastie,Low,0,Home Energy,DELETE +Green Pepperell,No,Market my Green Hom-PepperellMA,Low,0,Home Energy,DELETE +Melrose Climate Action,No,Market my Green Home-MelroseMA,Low,0,Home Energy,DELETE +,No,Market my Green Home-SCIS,Low,0,Home Energy,DELETE +,No,Market my Green Home-SCIS,Low,0,Home Energy,DELETE +,No,May Line Drying Challenge-Copy,Low,$,Home Energy,DELETE +,No,May Line Drying Challenge-Copy,Low,$,Home Energy,DELETE +,No,Mini-Split Heat Pumps Are For Yo-taCom,High,$$$,Home Energy,DELETE +TaCommunity,No,Mini-Split Heat Pumps Are For Yo-taCom,High,$$$,Home Energy,DELETE +,Yes,Mini-Split Heat Pumps Are For You,High,$$$,Home Energy,DELETE +,No,Mini-Split Heat Pumps Are For You,High,$$$,Home Energy,DELETE +Sam,No,Mini-Split Heat Pumps Are For You-357,High,$$$,Home Energy,DELETE +creationYO,No,Mini-Split Heat Pumps Are For You-creation,High,$$$,Home Energy,DELETE +One more,No,Mini-Split Heat Pumps Are For You-onemore-357,High,$$$,Home Energy,DELETE +Energize Springfield,No,Mini-Split Heat Pumps Are For You-SpringfieldMA,High,$$$,Home Energy,DELETE +Solarize Eastie,No,Monitor My Electricity Usag-Green Eastie,Low,$$,Home Energy,DELETE +Green Pepperell,No,Monitor My Electricity Usag-PepperellMA,Low,$$,Home Energy,DELETE +Melrose Climate Action,No,Monitor My Electricity Usage-MelroseMA,Low,$$,Home Energy,DELETE +,No,Monitor My Electricity Usage-MelroseMA-Copy,,,,DELETE +,No,Monitor My Electricity Usage-MelroseMA-Copy,,,,DELETE +,No,Monitor My Electricity Usage-SCIS,Low,$$,Home Energy,DELETE +,No,Monitor My Electricity Usage-SCIS,Low,$$,Home Energy,DELETE +Wayland,No,Monitor your Electricity Use Copy 585,Low,$$,Home Energy,DELETE +,No,Monitor your electricity-Copy,Medium,$$,Home Energy,DELETE +,No,Monitor your electricity-Copy,Medium,$$,Home Energy,DELETE +,No,Municipal Aggregation in Pepperell-Copy,,,,DELETE +,No,Municipal Aggregation in Pepperell-Copy,,,,DELETE +Energize Wayland,No,new action,Low,0,Home Energy,DELETE +Energize Wayland,No,new action,Low,0,Home Energy,DELETE +Nowhere,No,New dev action for nowhere,,,,DELETE +Wayland,No,New Test Action,,,,DELETE +,No,NO COST home energy assessment-Copy,Low,0,Home Energy,DELETE +,No,NO COST home energy assessment-Copy,Low,0,Home Energy,DELETE +Melrose Climate Action,No,No-cost Home Energy Assessment-MelroseMA,Low,0,Home Energy,DELETE +,No,No-cost Home Energy Assessment-SCIS,Low,0,Home Energy,DELETE +,No,No-cost Home Energy Assessment-SCIS,Low,0,Home Energy,DELETE +Solarize Eastie,No,"NOT: Community Solar, No Installatio-Green Eastie",Medium,$,Solar,DELETE +Green Pepperell,No,"NOT: Community Solar, No Installatio-PepperellMA",Medium,$,Solar,DELETE +Jewish Climate Action Network -- JCAN-MA,No,"NOT: Community Solar, No Installation-Copy",Medium,$,Solar,DELETE +Melrose Climate Action,No,"NOT: Community Solar, No Installation-MelroseMA",Medium,$,Solar,DELETE +,No,"NOT: Community Solar, No Installation-SCIS",Medium,$,Solar,DELETE +,No,"NOT: Community Solar, No Installation-SCIS",Medium,$,Solar,DELETE +Energize Acton,No,NOT: Opt Up to APC Green Copy 117,High,$,Home Energy,DELETE +Solarize Eastie,No,Offset your air trave-Green Eastie,Medium,$,Transportation,DELETE +Green Pepperell,No,Offset your air trave-PepperellMA,Medium,$,Transportation,DELETE +Melrose Climate Action,No,Offset your air travel-MelroseMA,Medium,$,Transportation,DELETE +,No,Offset your air travel-SCIS,Medium,$,Transportation,DELETE +,No,Offset your air travel-SCIS,Medium,$,Transportation,DELETE +,No,Opt-In to Community Choice Electricity -Copy,,,,DELETE +,No,Opt-In to Community Choice Electricity -Copy,,,,DELETE +,No,Participate in Pepperell Net Zero pLAN-Copy,High,0,Activism & Education,DELETE +,No,Participate in Pepperell Net Zero pLAN-Copy,High,0,Activism & Education,DELETE +Solarize Eastie,No,Pass on used good-Green Eastie,Medium,0,Waste & Recycling,DELETE +Green Pepperell,No,Pass on used good-PepperellMA,Medium,0,Waste & Recycling,DELETE +Melrose Climate Action,No,Pass on used goods-MelroseMA,Medium,0,Waste & Recycling,DELETE +,No,Pass on used goods-SCIS,Medium,0,Waste & Recycling,DELETE +,No,Pass on used goods-SCIS,Medium,0,Waste & Recycling,DELETE +Sustainable Milton,No,Pass on used goods-sustainablemilton,Medium,0,Waste & Recycling,DELETE +Jewish Climate Action Network -- JCAN-MA,No,People Power Your Errands Copy 3050,High,0,Transportation,DELETE +Sustainable Milton,No,People Power Your Errands-sustainablemilton,High,0,Transportation,DELETE +,No,Plant A Tree-Copy,,,,DELETE +Energize Lexington,No,Plant A Tree-Copy,Low,$,"Land, Soil & Water",DELETE +,No,Plant A Tree-Copy,,,,DELETE +LexCAN Toolkit,No,Plant A Tree-Copy,Low,$,"Land, Soil & Water",DELETE +Energize Boxborough,No,Pledge to Vote-BoxboroughMA,Medium,0,Activism & Education,DELETE +Energize Framingham,No,Pledge to Vote-Copy,Medium,0,Activism & Education,DELETE +Sustainable Milton,No,Pledge to Vote-sustainablemilton,Medium,0,Activism & Education,DELETE +EcoNatick,No,RECYCLE Right -MW,Low,0,Waste & Recycling,DELETE +,Yes,Reduce Always-On Wasted Electricity,Low,0,Home Energy,DELETE +,Yes,Refer a Friend,Low,0,Activism & Education,DELETE +Sustainable Milton,No,Refer a Friend-sustainablemilton,Low,0,Activism & Education,DELETE +Melrose Climate Action,No,Renovating? Improve Efficiency too! -MelroseMA,High,$$,Home Energy,DELETE +,No,Renovating? Improve Efficiency too! -SCIS,High,$$,Home Energy,DELETE +,No,Renovating? Improve Efficiency too! -SCIS,High,$$,Home Energy,DELETE +Hampshire Regional HS,No,Renovating? Improve Efficiency too! -westhampton,High,$$,Home Energy,DELETE +Solarize Eastie,No,Renovating? Improve Efficiency too!-Green Eastie,High,$$,Home Energy,DELETE +Green Pepperell,No,Renovating? Improve Efficiency too!-PepperellMA,High,$$,Home Energy,DELETE +,No,Save Water-Copy,Low,0,"Land, Soil & Water",DELETE +,No,Save Water-Copy,Low,0,"Land, Soil & Water",DELETE +Sustainable Sherborn,No,Savings for Renters-Copy,Low,0,Home Energy,DELETE +Sustainable Milton,No,Savings for Renters-sustainablemilton,Low,0,Home Energy,DELETE +,No,Say No to Throwaways-Copy,Low,0,Waste & Recycling,DELETE +,No,Say No to Throwaways-Copy,Low,0,Waste & Recycling,DELETE +,Yes,Schedule No-Cost Home Energy Assessment,Low,0,Home Energy,DELETE +,No,Schedule No-Cost Home Energy Assessment-Copy,Low,0,Home Energy,DELETE +,No,Shrink My Carbon Footprint-Copy,,,,DELETE +,No,Shrink My Carbon Footprint-Copy,,,,DELETE +,Yes,Solar On Your Roof,High,$$$,Solar,DELETE +,Yes,Solar On Your Roof,High,$$$,Solar,DELETE +Solarize Eastie,No,Solarize Eastie!,High,$$,Solar,DELETE +,No,Solarize!-Copy,High,$$,Solar,DELETE +,No,Solarize!-Copy,High,$$,Solar,DELETE +,Yes,Start Ecological Landscaping,Low,$$,"Land, Soil & Water",DELETE +EcoNatick,No,START HERE for Energy Savings-EcoNatick,Low,0,Home Energy,DELETE +Sustainable Milton,No,START HERE for Energy Savings-sustainablemilton,Low,0,Home Energy,DELETE +,No,Start Here: Joining the Challenge-Copy,,,,DELETE +,No,Start Here: Joining the Challenge-Copy,,,,DELETE +,Yes,Suggest a New Action,Low,0,Activism & Education,DELETE +Sustainable Milton,No,Suggest a New Action-sustainablemilton,Low,0,Activism & Education,DELETE +,No,Sun Power-Copy,High,,Solar,DELETE +,No,Sun Power-Copy,High,,Solar,DELETE +,No,Support Lexington Youth-Copy,,,,DELETE +,No,Support Lexington Youth-Copy,,,,DELETE +,Yes,Sustainable Household Goods,Low,$,Waste & Recycling,DELETE +EcoNatick,No,Sustainable Household Goods-EcoNatick,Low,$,Waste & Recycling,DELETE +Cooler Greenfield,No,Sustainable Household Goods-GreenfieldMA,Low,$,Waste & Recycling,DELETE +Sustainable Milton,No,Sustainable Household Goods-sustainablemilton,Low,$,Waste & Recycling,DELETE +,No,Switch to Electric Lawn Equipment-Copy,Medium,$,"Land, Soil & Water",DELETE +,No,Switch to Electric Lawn Equipment-Copy,Medium,$,"Land, Soil & Water",DELETE +,No,Take Public Transportation-Copy,High,0,Transportation,DELETE +,No,Take the MWRTA! and other public transit-Copy,Medium,$,Transportation,DELETE +,No,Take the MWRTA! and other public transit-Copy,Medium,$,Transportation,DELETE +Green Pepperell,No,TEM Buy or Lease an Electric Ca-PepperellMA,High,$$$,Transportation,DELETE +Energize Boxborough,No,TEM Buy or Lease an Electric Car-BoxboroughMA,High,$$$,Transportation,DELETE +,No,TEM Buy or Lease an Electric Car-BoxboroughMA-Copy,High,$$$,Transportation,DELETE +Melrose Climate Action,No,TEM Buy or Lease an Electric Car-MelroseMA,High,$$$,Transportation,DELETE +,No,TEM Buy or Lease an Electric Car-MelroseMA-Copy,,,,DELETE +,No,TEM Buy or Lease an Electric Car-MelroseMA-Copy,,,,DELETE +,No,TEM Buy or Lease an Electric Car-SCIS,High,$$$,Transportation,DELETE +,No,TEM Buy or Lease an Electric Car-SCIS,High,$$$,Transportation,DELETE +Energize Wayland,No,test,,,,DELETE +,No,Test Action New,Medium,$$,Transportation,DELETE +Solarize Eastie,No,Test Action To Be Deleted,,,,DELETE +MassEnergizeDemo,No,Test Action you want to show up first ,High,0,Home Energy,DELETE +,Yes,Test Bushwick Action,Medium,$$,Transportation,DELETE +Jewish Climate Action Network -- JCAN-MA,No,test for lynne,Medium,$,Home Energy,DELETE +,No,test for lynne-Copy,Medium,$,Home Energy,DELETE +,No,test for lynne-Copy,Medium,$,Home Energy,DELETE +,No,Test Global Action,High,$$$,Transportation,DELETE +,No,TestAction nerw,Low,$$,Home Energy,DELETE +Energize Wayland,No,Testing,,,,DELETE +,Yes,testing 11/6/2019 trial 3,,,,DELETE +Kaat's Test Community,Yes,testing 11/6/2019 trial 3,,,,DELETE +,Yes,testing 11/6/2019 trial 4,,,,DELETE +Kaat's Test Community,Yes,testing 11/6/2019 trial 4,,,,DELETE +Kaat's Test Community,Yes,testing 11/6/2019 trial 5,,,,DELETE +TestingCommunity,Yes,testing IRA google doc copy formatting,Low,0,Solar,DELETE +Energize Wayland,No,Testing this action,Low,0,Home Energy,DELETE +Energize Wayland,No,Testing this action,Low,0,Home Energy,DELETE +Training,Yes,testing1,Medium,$,Home Energy,DELETE +,No,TMP Change to LED Lighting-Copy,Medium,$,Home Energy,DELETE +Energize Wayland,No,TMP Change to LED Lighting-Copy,Medium,$,Home Energy,DELETE +,No,TMP Change to LED Lighting-Copy,Medium,$,Home Energy,DELETE +Energize Framingham,No,TMP Clean Up Your Community-Copy,Low,0,Activism & Education,DELETE +Energize Framingham,No,TMP Clean Up Your Community-Copy,Low,0,Activism & Education,DELETE +MassEnergizeDemo,No,TMP Green Your Electricity-Copy,High,0,Home Energy,DELETE +Energize Wayland,No,TMP Insulate and Air Seal Your Home-Copy,High,$$,Home Energy,DELETE +Energize Wayland,No,TMP Invest Like a Climate Activist Copy-Copy,Medium,0,Activism & Education,DELETE +Energize Wayland,No,TMP Invest Like a Climate Activist Copy-Copy,Medium,0,Activism & Education,DELETE +Energize Framingham,No,TMP Landlord Near Free Property Upgrades,Low,0,Home Energy,DELETE +Energize Wayland,No,TMP Monitor My Electricity Usage-Copy,Low,$$,Home Energy,DELETE +Energize Wayland,No,TMP Renovating? Improve Efficiency too! -Copy,High,$$,Home Energy,DELETE +Global,No,transit app - Aimee test,Medium,$,Transportation,DELETE +Global,No,transit app - Aimee test Copy 7093,Medium,$,Transportation,DELETE +Kaat's Test Community,No,trying again on 11/6 - test 2,,,,DELETE +,Yes,Update Heating and cool stuff,High,$$$,Home Energy,DELETE +,Yes,Update Heating and cool stuff,High,$$$,Home Energy,DELETE +Green Newton,No,Use Energy Efficient Appliances Copy 293,High,$$,Home Energy,DELETE +,No,Use Heat Pumps,,,,DELETE +,Yes,Use heat pumps,High,$$$,Home Energy,DELETE +,No,Use Heat Pumps,,,,DELETE +,Yes,Use heat pumps,High,$$$,Home Energy,DELETE +,No,Use heatpumps,High,$$$,Home Energy,DELETE +,No,Use heatpumps-Copy,High,$$$,Home Energy,DELETE +,Yes,Walk for a Viable Future,Low,0,Activism & Education,DELETE +,Yes,Walk for a Viable Future,Low,0,Activism & Education,DELETE +,No,Want to Volunteer?-Copy,Low,0,Activism & Education,DELETE +,No,Want to Volunteer?-Copy,Low,0,Activism & Education,DELETE +,No,Wayland Cleans Up 2,Low,$,Waste & Recycling,DELETE +,No,Wayland Cleans Up!,Low,$,Waste & Recycling,DELETE +Energize Wayland,No,What is the Town doing-Copy,Medium,0,Activism & Education,DELETE +Energize Wayland,No,What is the Town doing-Copy,Medium,0,Activism & Education,DELETE +,No,Write a short play,,0,Activism & Education,DELETE +,No,Write a short play,,0,Activism & Education,DELETE +Energize Boxborough,Yes,Buy Food from a Local Farm,Medium,$,Food,eat_locally +HarvardEnergize,Yes,Buy food from a local farm,Medium,$,Food,eat_locally +Sustainable Medfield,Yes,Buy food from a local farm,Medium,$,Food,eat_locally +Energize Boxborough,Yes,Buy Food from a Local Farm,Medium,$,Food,eat_locally +Sustainable Medfield,Yes,Buy food from a local farm,Medium,$,Food,eat_locally +Cooler Greenfield,No,Buy food from a local farm-GreenfieldMA,Medium,$,Food,eat_locally +Cooler Greenfield,No,Buy food from a local farm-GreenfieldMA,Medium,$,Food,eat_locally +Sustainable Milton,No,Buy food from a local farm-sustainablemilton,Medium,$,Food,eat_locally +EcoNatick,No,Buy food from local farms,Medium,$,Food,eat_locally +Energize Wayland,Yes,Buy food from local farms,Medium,$,Food,eat_locally +EcoNatick,No,Buy food from local farms,Medium,$,Food,eat_locally +Energize Wayland,Yes,Buy food from local farms,Medium,$,Food,eat_locally +Energize Franklin,Yes,Buy Local Food,Medium,$,Food,eat_locally +Sustainable Sherborn,Yes,Buying Local Food,Medium,$,Food,eat_locally +Sustainable Sherborn,Yes,Buying Local Food,Medium,$,Food,eat_locally +Energize Wayland,No,Community Garden Plot,Medium,$,Food,eat_locally +Energize Wayland,No,Donate fresh food to food bank,Low,0,Food,eat_locally +Energize Lexington,Yes,Eat Local,Medium,$,Food,eat_locally +Cooler Concord,No,Eat Local with a CSA,Medium,$,Food,eat_locally +Energize Framingham,Yes,Eat Local with a FarmShare,Low,$$,Food,eat_locally +Wayland,Yes,Farmers market,Medium,$,Food,eat_locally +Cooler Communities,No,Finding Edible Plants - All Ages,Low,0,Activism & Education,eat_locally +EcoNatick,No,Grow your own food,Medium,$,Food,eat_locally +Energize Wayland,Yes,Grow your own food,Medium,$,Food,eat_locally +Training,Yes,Grow your own food,Medium,$,Food,eat_locally +Jewish Climate Action Network -- JCAN-MA,Yes,Local Farmshare or Farmstand,Medium,0,Food,eat_locally +Nowhere,Yes,Music calms the savage beast,High,$,Food,eat_locally +Energize Wayland,No,Shop Local: Farmers Market,High,$,Food,eat_locally +Jewish Climate Action Network -- JCAN-MA,Yes,Shop Local: Farmers Market,High,0,Food,eat_locally +Energize Wayland,No,Shop Local: Farmers Market,Medium,$,Food,eat_locally +EcoNatick,No,Shop Local: Farmers Market-MW,High,0,Food,eat_locally +Cooler Communities,No,Support Access to Local Food,Low,$,Food,eat_locally +Cooler Communities,No,Support Access to Local Food,Low,$,Food,eat_locally +Green Newton,Yes,Promote Sustainability in Our Schools,Low,0,Activism & Education,education +Green Newton,Yes,Promote Sustainability in Our Schools,Low,0,Activism & Education,education +EcoNatick,No,Promote Sustainability in Our Schools-MW,Low,0,Activism & Education,education +EcoNatick,No,Promote Sustainability in Our Schools-MW,Low,0,Activism & Education,education +Energize Lexington,No,Support Lexington Youth,High,0,Activism & Education,education +Pioneer Valley Schools,Yes,Unexpected Allies - Students,Medium,0,Activism & Education,education +Pioneer Valley Schools,Yes,Unexpected Allies - Students,Medium,0,Activism & Education,education +LexCAN Toolkit,Yes,Renovating? Go for High Efficiency ,High,$$$,Home Energy,efficient_fossil +Green Newton,Yes,Go for High Efficiency Renovations,Medium,$$$,Home Energy,efficient_renovations +Green Pepperell,No,Mass Save Residential New Construction,High,$$$,Home Energy,efficient_renovations +Energize Lexington,Yes,Renovating? Go for High Efficiency ,High,$$$,Home Energy,efficient_renovations +Energize Wayland,No,Renovating? Improve efficiency too!,High,$$,Home Energy,efficient_renovations +Sustainable Middlesex,Yes,Renovating? Improve Efficiency too!,High,$$,Home Energy,efficient_renovations +Jewish Climate Action Network -- JCAN-MA,Yes,Renovating? Improve Efficiency too! ,High,$$,Home Energy,efficient_renovations +Cooler GCVS,No,Renovating? Improve Efficiency too! GCVS,,,,efficient_renovations +Energize Framingham,No,$$$ to Buy Electric Lawn Equipment,Low,$,Home Energy,electric_mower +Energize Framingham,No,$$$ to Buy Electric Lawn Equipment,Low,$,Home Energy,electric_mower +Energize Wayland,Yes,Electrify your landscaping equipment,Medium,$$,"Land, Soil & Water",electric_mower +EnergizeNewburyport,Yes,Electrify your Landscaping Equipment,Medium,$$,Home Energy,electric_mower +Training,Yes,Electrify your landscaping equipment,,,,electric_mower +Energize Wayland,Yes,Electrify your landscaping equipment,Medium,$$,"Land, Soil & Water",electric_mower +EnergizeNewburyport,Yes,Electrify your Landscaping Equipment,Medium,$$,Home Energy,electric_mower +Training,Yes,Electrify your landscaping equipment,,,,electric_mower +Energize Franklin,Yes,Electrify your landscaping equipment,Medium,$,"Land, Soil & Water",electric_mower +Cooler Concord,Yes,Switch to Electric Lawn Equipment,Low,$,"Land, Soil & Water",electric_mower +Energize Boxborough,Yes,Switch to Electric Lawn Equipment,Medium,$,"Land, Soil & Water",electric_mower +HarvardEnergize,Yes,Switch to Electric Lawn Equipment,Low,$,Home Energy,electric_mower +Cooler Concord,Yes,Switch to Electric Lawn Equipment,Low,$,"Land, Soil & Water",electric_mower +Energize Boxborough,Yes,Switch to Electric Lawn Equipment,Medium,$,"Land, Soil & Water",electric_mower +HarvardEnergize,Yes,Switch to Electric Lawn Equipment,Low,$,Home Energy,electric_mower +Green Pepperell,No,Change Thermostat Setting-PepperellMA,Medium,$$$,Home Energy,electricity_monitor +Demo 2023,Yes,Change Thermostat Settings,Medium,$$$,Home Energy,electricity_monitor +Global Climate Corps,Yes,Change Thermostat Settings,Low,$$$,"Land, Soil & Water",electricity_monitor +Sustainable Middlesex,Yes,Change Thermostat Settings,Medium,$$$,Home Energy,electricity_monitor +Solarize Eastie,No,Change Thermostat Settings-BoxboroughM-Green Eastie,Medium,$$$,Home Energy,electricity_monitor +Energize Stow,Yes,Change Thermostat Settings-Copy,Low,$$$,"Land, Soil & Water",electricity_monitor +EcoNatick,No,Change Thermostat Settings-EcoNatick,Medium,$$$,Home Energy,electricity_monitor +Melrose Climate Action,No,Change Thermostat Settings-MelroseMA,Medium,$$$,Home Energy,electricity_monitor +Cooler Northampton,No,Change Thermostat Settings-northampton,Medium,$$$,Home Energy,electricity_monitor +Sustainable Milton,No,Change Thermostat Settings-sustainablemilton,Medium,$$$,Home Energy,electricity_monitor +Hampshire Regional HS,No,Change Thermostat Settings-westhampton,Medium,$$$,Home Energy,electricity_monitor +Sustainable Sherborn,Yes,Changing your Thermostat Settings ,Medium,$$$,Home Energy,electricity_monitor +Energize Wayland,No,Electricity Use Monitor,Medium,$,Home Energy,electricity_monitor +Kaat's Test Community,Yes,Electricity Use Monitor,Low,$$,Home Energy,electricity_monitor +Energize Wayland,No,Electricity Use Monitor,Medium,$,Home Energy,electricity_monitor +Nowhere,Yes,Electricity Use Monitor4567890123456789,Low,$,Solar PV,electricity_monitor +Jewish Climate Action Network -- JCAN-MA,Yes,Monitor Electricity Usage,Low,$,Home Energy,electricity_monitor +Jewish Climate Action Network -- JCAN-MA,Yes,Monitor Electricity Usage,Low,$,Home Energy,electricity_monitor +Sustainable Sherborn,Yes,Monitor Electricity Usage ,Low,$$,Home Energy,electricity_monitor +Sustainable Sherborn,Yes,Monitor Electricity Usage ,Low,$$,Home Energy,electricity_monitor +Solarize Eastie,No,Monitor My Electricity Usag-Green Eastie,Low,$$,Home Energy,electricity_monitor +Green Pepperell,No,Monitor My Electricity Usag-PepperellMA,Low,$$,Home Energy,electricity_monitor +Cooler GCVS,No,Monitor My Electricity Usage,,,,electricity_monitor +Cooler Northampton,No,Monitor My Electricity Usage,Low,$,Home Energy,electricity_monitor +Cooler SICS,No,Monitor My Electricity Usage,,,,electricity_monitor +Cooler Springfield,No,Monitor My Electricity Usage,,,,electricity_monitor +Hampshire Regional HS,No,Monitor My Electricity Usage,Low,$$,Home Energy,electricity_monitor +Sustainable Medfield,Yes,Monitor My Electricity Usage,Low,$,Home Energy,electricity_monitor +Sustainable Middlesex,No,Monitor My Electricity Usage,Low,$$,Home Energy,electricity_monitor +Cooler GCVS,No,Monitor My Electricity Usage,,,,electricity_monitor +Cooler Northampton,No,Monitor My Electricity Usage,Low,$,Home Energy,electricity_monitor +Cooler SICS,No,Monitor My Electricity Usage,,,,electricity_monitor +Cooler Springfield,No,Monitor My Electricity Usage,,,,electricity_monitor +Hampshire Regional HS,No,Monitor My Electricity Usage,Low,$$,Home Energy,electricity_monitor +Sustainable Medfield,Yes,Monitor My Electricity Usage,Low,$,Home Energy,electricity_monitor +Sustainable Middlesex,No,Monitor My Electricity Usage,Low,$$,Home Energy,electricity_monitor +Melrose Climate Action,No,Monitor My Electricity Usage-MelroseMA,Low,$$,Home Energy,electricity_monitor +Energize Franklin,Yes,Monitor Your Electrical Usage,Low,$,Home Energy,electricity_monitor +Energize Wayland,Yes,Monitor your electricity,Medium,$$,Home Energy,electricity_monitor +Energize Wayland,Yes,Monitor your electricity,Medium,$$,Home Energy,electricity_monitor +Wayland,Yes,Monitor your Electricity Use,Low,$$,Home Energy,electricity_monitor +Energize Acton,No,NOT: Monitor Electricity Use,Low,$,Home Energy,electricity_monitor +Energize Acton,No,NOT: Monitor Electricity Use,Low,$,Home Energy,electricity_monitor +Green Newton,Yes,Reduce Always-On Wasted Electricity,Low,0,Home Energy,electricity_monitor +LexCAN Toolkit,Yes,"Save Electricity: Reduce ""Always On"" Use",Low,0,Home Energy,electricity_monitor +Energize Wayland,No,TMP Monitor My Electricity Usage-Copy,Low,$$,Home Energy,electricity_monitor +Nowhere,Yes,Trim sheep,,,Home Energy,electricity_monitor +Energize Boxborough,Yes,Climate Action Crew,Medium,0,Home Energy,energy_audit +Energize Boxborough,Yes,Climate Action Crew - Book Discussion,Medium,0,Home Energy,energy_audit +Energize Franklin,Yes,Energy Steps for Renters,Low,0,Home Energy,energy_audit +Cooler Communities,Yes,Free Home Energy Assessment,Low,0,Home Energy,energy_audit +Cooler GCVS,Yes,Free Home Energy Assessment,Low,0,Home Energy,energy_audit +Hampshire Regional HS,Yes,Free Home Energy Assessment,,,,energy_audit +Cooler Communities,Yes,Free Home Energy Assessment,Low,0,Home Energy,energy_audit +Cooler GCVS,Yes,Free Home Energy Assessment,Low,0,Home Energy,energy_audit +Hampshire Regional HS,Yes,Free Home Energy Assessment,,,,energy_audit +Energize Boxborough,Yes,Free Home Energy Audit,Low,0,Home Energy,energy_audit +Training,Yes,Free Home Energy Audit,Low,0,Home Energy,energy_audit +Energize Boxborough,Yes,Free Home Energy Audit,Low,0,Home Energy,energy_audit +Training,Yes,Free Home Energy Audit,Low,0,Home Energy,energy_audit +Energize Franklin,Yes,Get a Free Home Energy Assessment,Low,0,Home Energy,energy_audit +Energize Franklin,Yes,Get a Free Home Energy Assessment,Low,0,Home Energy,energy_audit +Melrose Climate Action,Yes,Get A No-Cost Home Energy Assessment ,Low,0,Home Energy,energy_audit +Melrose Climate Action,Yes,Get A No-Cost Home Energy Assessment ,Low,0,Home Energy,energy_audit +Green Newton,No,Get a Virtual Home Energy Assessment,High,0,Home Energy,energy_audit +Green Newton,No,Get a Virtual Home Energy Assessment,High,0,Home Energy,energy_audit +Nowhere,Yes,Home Energy Assessment - Concord,Medium,0,Home Energy,energy_audit +Energize Boxborough,No,Landlord Near Free Property Upgrades-BoxboroughMA,Low,0,Home Energy,energy_audit +Sustainable Milton,No,Landlord Near Free Property Upgrades-sustainablemilton,Low,0,Home Energy,energy_audit +Energize Framingham,Yes,Landlords - Free Insulation,Low,0,Home Energy,energy_audit +Energize Wayland,Yes,NO COST home energy assessment,Low,0,Home Energy,energy_audit +Energize Wayland,Yes,NO COST home energy assessment,Low,0,Home Energy,energy_audit +Cooler Northampton,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +Cooler SICS,Yes,No-cost Home Energy Assessment,Low,0,Activism & Education,energy_audit +Demo 2023,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +EcoNatick,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +Green Pepperell,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +HarvardEnergize,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +Jewish Climate Action Network -- JCAN-MA,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +MassEnergizeDemo,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +Sustainable Medfield,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +Sustainable Middlesex,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +Sustainable Milton,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +Sustainable Sherborn,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +Cooler Northampton,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +Cooler SICS,Yes,No-cost Home Energy Assessment,Low,0,Activism & Education,energy_audit +Demo 2023,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +EcoNatick,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +Green Pepperell,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +HarvardEnergize,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +Jewish Climate Action Network -- JCAN-MA,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +MassEnergizeDemo,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +Sustainable Medfield,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +Sustainable Middlesex,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +Sustainable Milton,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +Sustainable Sherborn,Yes,No-cost Home Energy Assessment,Low,0,Home Energy,energy_audit +Cooler Concord,Yes,No-cost Home Energy Assessment ,Low,0,Home Energy,energy_audit +Cooler Concord,Yes,No-cost Home Energy Assessment ,Low,0,Home Energy,energy_audit +Melrose Climate Action,No,No-cost Home Energy Assessment-MelroseMA,Low,0,Home Energy,energy_audit +EcoNatick,No,No-cost Home Energy Assessment-MW,Low,0,Home Energy,energy_audit +EcoNatick,No,No-cost Home Energy Assessment-MW,Low,0,Home Energy,energy_audit +Energize Acton,No,NOT: Get an Energy Audit or Coaching,Low,0,Home Energy,energy_audit +Energize Acton,No,NOT: Get an Energy Audit or Coaching,Low,0,Home Energy,energy_audit +Energize Acton,Yes,Renters: Save $$,Low,0,Home Energy,energy_audit +Energize Boxborough,Yes,Renters: Save $$,Low,$$,Activism & Education,energy_audit +EcoNatick,No,Savings for Renters,Low,0,Home Energy,energy_audit +Sustainable Sherborn,Yes,Savings for Renters,Low,0,Home Energy,energy_audit +Energize Framingham,Yes,Savings for Renters ,Low,0,Home Energy,energy_audit +Sustainable Sherborn,No,Savings for Renters-Copy,Low,0,Home Energy,energy_audit +Sustainable Milton,No,Savings for Renters-sustainablemilton,Low,0,Home Energy,energy_audit +Energize Lexington,Yes,Schedule a Free Home Energy Assessment,Low,0,Home Energy,energy_audit +LexCAN Toolkit,Yes,Schedule a Free Home Energy Assessment,Low,0,Home Energy,energy_audit +EnergizeNewburyport,Yes,Schedule a No-Cost Energy Assessment,High,0,Home Energy,energy_audit +Energize Littleton,Yes,Schedule No-Cost Home Energy-LittletonMA,Low,0,Home Energy,energy_audit +Energize Framingham,No,START HERE for Energy Savings,Low,0,Home Energy,energy_audit +EcoNatick,No,START HERE for Energy Savings-EcoNatick,Low,0,Home Energy,energy_audit +Sustainable Milton,No,START HERE for Energy Savings-sustainablemilton,Low,0,Home Energy,energy_audit +Wayland,Yes,Test,Medium,$,Home Energy,energy_audit +Energize Framingham,No,TMP Landlord Near Free Property Upgrades,Low,0,Home Energy,energy_audit +Agawam,Yes,Action Adventure Starts Here!,High,0,Activism & Education,energy_fair +Cooler Springfield,Yes,Action Adventure Starts Here!,High,0,Activism & Education,energy_fair +MassEnergizeDemo,No,An Action you want to show up 1st,Medium,$,Home Energy,energy_fair +Energize Framingham,No,Ask City to support curbside composting,Low,0,Activism & Education,energy_fair +Cooler Concord,No,Attend a Climate Festival,Low,0,Activism & Education,energy_fair +Cooler Concord,No,Attend an Earth Day Climate Festival,Low,0,Activism & Education,energy_fair +Cooler Concord,No,Attend an Earth Day Climate Festival,Low,0,Activism & Education,energy_fair +Energize Franklin,Yes,Attend an Earth Day or Climate Festival,Low,0,Activism & Education,energy_fair +Energize Franklin,Yes,Attend an Earth Day or Climate Festival,Low,0,Activism & Education,energy_fair +Energize Framingham,No,Buy Local Seedlings,Low,$,"Land, Soil & Water",energy_fair +EcoNatick,No,Calculate ur Carbon Footprint 6668-EcoNatick,Low,0,Activism & Education,energy_fair +Energize Littleton,Yes,Calculate Your Carbon Footprin-LittnMA,Low,0,Activism & Education,energy_fair +Demo 2023,Yes,Calculate Your Carbon Footprint,Low,0,Activism & Education,energy_fair +Energize Acton,Yes,Calculate Your Carbon Footprint,Low,0,Activism & Education,energy_fair +Energize Boxborough,Yes,Calculate your Carbon Footprint,Low,0,Activism & Education,energy_fair +Energize Franklin,Yes,Calculate Your Carbon Footprint,Low,0,Activism & Education,energy_fair +Sustainable Milton,Yes,Calculate your Carbon Footprint,Low,0,Activism & Education,energy_fair +Sustainable Milton,No,Calculate your Carbon Footprint Copy 6668-sustainablemilton,Low,0,Activism & Education,energy_fair +Energize Boxborough,No,Calculate Your Carbon Footprint-Copy,,,,energy_fair +Cooler Concord,Yes,Calculate your Carbon Footprint!,Low,0,Activism & Education,energy_fair +MassEnergizeDemo,No,Calculate your Carbon Footprint! ,Low,0,Activism & Education,energy_fair +Pioneer Valley Schools,Yes,Calculate your Carbon Footprint! ,Low,0,Activism & Education,energy_fair +Sustainable Sherborn,Yes,Calculating Your Carbon Footprint,Low,0,Activism & Education,energy_fair +HarvardEnergize,Yes,Carbon Offset for Travel,Low,0,Transportation,energy_fair +Energize Boxborough,No,Celebrate Boxborough Bill,Low,0,Home Energy,energy_fair +Energize Wayland,No,Celebrate Earth Day!,Medium,0,Activism & Education,energy_fair +Energize Wayland,No,Celebrate Earth Day!,Medium,0,Activism & Education,energy_fair +Energize Framingham,No,Conservation-Copy,,,,energy_fair +Energize Framingham,No,Consider Climate-driven Investing,,,,energy_fair +Energize Acton,Yes,Consider Climate-driven Investments,Low,0,Activism & Education,energy_fair +Jewish Climate Action Network -- JCAN-MA,Yes,Dayenu: A Jewish Call to Climate Action,Medium,0,Activism & Education,energy_fair +Fairmount Indigo Collab.,Yes,Dive into Health Equity,Low,0,Activism & Education,energy_fair +EcoNatick,Yes,Earth Day All Around Natick,Low,0,Activism & Education,energy_fair +EcoNatick,No,Earth Day All Around Natick,Low,0,Activism & Education,energy_fair +EnergizeNewburyport,Yes,Eat Less Meat and Dairy,Medium,$,Food,energy_fair +Energize Framingham,Yes,Eat Local with a FarmShare,Low,$$,Food,energy_fair +Energize Franklin,Yes,Engage in the Climate Conversation,Low,0,Activism & Education,energy_fair +LexCAN Toolkit,Yes,Environmental Justice,High,0,Activism & Education,energy_fair +EcoNatick,No,Environmental Justice: Racial Justice-MW,High,0,Activism & Education,energy_fair +Energize Wayland,No,Expand your activism with an app,Low,0,Activism & Education,energy_fair +Sustainable Middlesex,Yes,Get involved in Town's Climate Action,Medium,0,Activism & Education,energy_fair +Solarize Eastie,No,Get involved in Town's Climate Action-Green Eastie,Medium,0,Activism & Education,energy_fair +Green Pepperell,No,Get involved in Town's Climate Action-PepperellMA,Medium,0,Activism & Education,energy_fair +Melrose Climate Action,No,Get involved in Town's Climate Action!,High,$$$,Activism & Education,energy_fair +Energize Boxborough,Yes,Get Started,Low,0,Activism & Education,energy_fair +Jewish Climate Action Network -- JCAN-MA,Yes,Help the Grid- Shave the Peak!,Low,0,Home Energy,energy_fair +LexCAN Toolkit,Yes,Help the Grid- Shave the Peak!,Low,0,Home Energy,energy_fair +Energize Acton,No,How can you help? Join us! Sign up now.,Low,0,Activism & Education,energy_fair +Energize Franklin,Yes,How does this website work?,Low,0,Activism & Education,energy_fair +Energize Framingham,No,How does this website work? ,Low,0,Activism & Education,energy_fair +Cooler Concord,Yes,Invest Like a Climate Activist ,Medium,0,Activism & Education,energy_fair +Energize Franklin,Yes,Join 350 Mass Franklin Node,Low,0,Activism & Education,energy_fair +LexCAN Toolkit,Yes,Join Citizens for Lexington Conservation,High,0,Activism & Education,energy_fair +LexCAN Toolkit,Yes,Join Lexington Climate Action Network,High,0,Activism & Education,energy_fair +LexCAN Toolkit,Yes,Join LPS Green Teams,Low,0,Activism & Education,energy_fair +Training,Yes,Join Metrowest 350MA Node,,,,energy_fair +Energize Framingham,No,Join Metrowest 350MA Node ,Low,0,Activism & Education,energy_fair +LexCAN Toolkit,No,Join Mothers Out Front/Lexington ,Medium,0,Activism & Education,energy_fair +Fairmount Indigo Collab.,No,Join the Boston Green New Deal Coalition,Medium,0,Activism & Education,energy_fair +Energize Boxborough,Yes,Join the Boxborough Conservation Trust,Low,0,Activism & Education,energy_fair +Energize Wayland,No,Join the Climate Mobilization!,Low,0,Activism & Education,energy_fair +Energize Stow,Yes,Join this site,High,0,Activism & Education,energy_fair +Energize Wayland,No,Join this site and be counted!,Low,0,Activism & Education,energy_fair +Fairmount Indigo Collab.,Yes,Learn about Climate Change & Your Health,Low,0,Activism & Education,energy_fair +Energize Wayland,No,Mobilize for a better future! ,Medium,0,Activism & Education,energy_fair +Energize Acton,No,NOT: Join Climate Advocacy Group,Low,0,Activism & Education,energy_fair +Fairmount Indigo Collab.,No,Petition: Equitable & Accessible Transit,Low,0,Transportation,energy_fair +Agawam,Yes,Pick Up the Poop Pledge Age 6+,Low,0,Waste & Recycling,energy_fair +Energize Framingham,No,Pledge to Vote-Copy,Medium,0,Activism & Education,energy_fair +Energize Littleton,Yes,Refer a Frien-LittletonMA,Low,0,Activism & Education,energy_fair +Energize Boxborough,Yes,Refer a Friend,Low,0,Activism & Education,energy_fair +Energize Framingham,No,Refer a Friend,Low,0,Activism & Education,energy_fair +Demo 2023,Yes,Refer a Friend ,Low,0,Activism & Education,energy_fair +EcoNatick,No,Refer a Friend-EcoNatick - it's great!,Low,0,Activism & Education,energy_fair +Sustainable Milton,No,Refer a Friend-sustainablemilton,Low,0,Activism & Education,energy_fair +Sustainable Sherborn,Yes,Referring a Friend,Low,0,Activism & Education,energy_fair +Energize Framingham,No,Register to VOTE,Medium,0,Activism & Education,energy_fair +Cooler Springfield,Yes,Save Your Power ,Medium,$,Home Energy,energy_fair +Energize Framingham,No,Saving Soil & Society!,Medium,0,Activism & Education,energy_fair +Cooler Communities,No,Shave the Peak - Age 10+,Medium,0,Home Energy,energy_fair +Cooler Springfield,Yes,Shrink My Carbon Footprint,Low,0,Activism & Education,energy_fair +EcoNatick,Yes,Sign up and be counted!,Low,0,Activism & Education,energy_fair +Fairmount Indigo Collab.,Yes,Sign up for our Newsletter! ,High,0,Activism & Education,energy_fair +Cooler Greenfield,Yes,Start Here: Join Cooler Greenfield,Low,0,Activism & Education,energy_fair +Cooler Communities,Yes,Start Here: Joining the Challenge,Low,0,Activism & Education,energy_fair +Energize Acton,Yes,Stay Current with Coalition Initiatives,High,0,Activism & Education,energy_fair +Energize Framingham,Yes,Stay Informed! Subscribe Today.,Low,0,Activism & Education,energy_fair +LexCAN Toolkit,No,Subscribe to Lexington Green Network,High,0,Activism & Education,energy_fair +Solarize Eastie,Yes,Suggest a New Action for this Site,Low,0,Activism & Education,energy_fair +LexCAN Toolkit,No,Support Lexington Youth,High,0,Activism & Education,energy_fair +Fairmount Indigo Collab.,No,Support the HERO Bill,High,0,Activism & Education,energy_fair +LexCAN Toolkit,No,Take a Climate Coffee Break!,High,0,Activism & Education,energy_fair +Energize Wayland,No,Take a local class on climate change,Low,,Activism & Education,energy_fair +Energize Wayland,No,Take the Survey on Climate Change,Low,0,Activism & Education,energy_fair +Energize Acton,Yes,Take the Zero Emissions Pledge,Low,0,Home Energy,energy_fair +Fairmount Indigo Collab.,No,Tell Gov. Baker to Sign the Climate Bill,High,0,Activism & Education,energy_fair +Jewish Climate Action Network -- JCAN-MA,No,test for lynne,Medium,$,Home Energy,energy_fair +Cooler Northampton,Yes,The Adventure Starts Here!,,0,Activism & Education,energy_fair +Cooler SICS,Yes,The Adventure Starts Here!,,0,Activism & Education,energy_fair +Hampshire Regional HS,Yes,The Adventure Starts Here!,,0,Activism & Education,energy_fair +Cooler GCVS,Yes,The Challenge Starts Here!,,0,Activism & Education,energy_fair +Sustainable Milton,Yes,Volunteer with Sustainable Milton,Low,0,Activism & Education,energy_fair +Energize Acton,No,Welcome & Intro to Actions & Goals,Low,0,Home Energy,energy_fair +LexCAN Toolkit,No,What Can We Do? Sign Up!,Low,0,Activism & Education,energy_fair +Agawam,Yes,What's Your Carbon Footprint? Age 14+,Low,0,Activism & Education,energy_fair +Jewish Climate Action Network -- JCAN-MA,Yes,What's Your Carbon Footprint? Age 14+,Low,0,Activism & Education,energy_fair +LexCAN Toolkit,Yes,Why We Should Electrify Everything,High,0,Activism & Education,energy_fair +Green Newton,Yes,Choose Energy Efficient Appliances,High,$$,Home Energy,energystar_fridge +Green Newton,Yes,Choose Energy Efficient Appliances,High,$$,Home Energy,energystar_fridge +HarvardEnergize,Yes,Electric Energy Efficient Appliances,Medium,$$,,energystar_fridge +Solarize Eastie,No,Energy-Efficient Appliance-Green Eastie,High,$$,Home Energy,energystar_fridge +Green Pepperell,No,Energy-Efficient Appliance-PepperellMA,High,$$,Home Energy,energystar_fridge +Cooler GCVS,No,Energy-Efficient Appliances,High,$$,Home Energy,energystar_fridge +Cooler Northampton,No,Energy-Efficient Appliances,High,$$,Home Energy,energystar_fridge +Energize Wayland,Yes,Energy-efficient appliances,Medium,$$,Home Energy,energystar_fridge +EnergizeNewburyport,Yes,Energy-efficient Appliances,High,$$,Home Energy,energystar_fridge +Hampshire Regional HS,No,Energy-Efficient Appliances,High,$$,Home Energy,energystar_fridge +Sustainable Middlesex,Yes,Energy-Efficient Appliances,High,$$,Home Energy,energystar_fridge +Cooler GCVS,No,Energy-Efficient Appliances,High,$$,Home Energy,energystar_fridge +Cooler Northampton,No,Energy-Efficient Appliances,High,$$,Home Energy,energystar_fridge +Energize Wayland,Yes,Energy-efficient appliances,Medium,$$,Home Energy,energystar_fridge +EnergizeNewburyport,Yes,Energy-efficient Appliances,High,$$,Home Energy,energystar_fridge +Hampshire Regional HS,No,Energy-Efficient Appliances,High,$$,Home Energy,energystar_fridge +Sustainable Middlesex,Yes,Energy-Efficient Appliances,High,$$,Home Energy,energystar_fridge +Cooler Concord,Yes,Energy-Efficient Appliances ,High,$$,Home Energy,energystar_fridge +Jewish Climate Action Network -- JCAN-MA,Yes,Energy-Efficient Appliances ,Medium,$$,Home Energy,energystar_fridge +Cooler Concord,Yes,Energy-Efficient Appliances ,High,$$,Home Energy,energystar_fridge +Jewish Climate Action Network -- JCAN-MA,Yes,Energy-Efficient Appliances ,Medium,$$,Home Energy,energystar_fridge +Melrose Climate Action,No,Energy-Efficient Appliances-MelroseMA,High,$$,Home Energy,energystar_fridge +Energize Lexington,Yes,Environmentally Friendly Kitchen,Medium,$,Activism & Education,energystar_fridge +EcoNatick,No,Environmentally Friendly Kitchen-MW,Medium,$,Activism & Education,energystar_fridge +Energize Lexington,Yes,Install Energy Efficient Appliances,High,$$,Home Energy,energystar_fridge +LexCAN Toolkit,Yes,Install Energy Efficient Appliances,High,$$,Home Energy,energystar_fridge +Energize Acton,No,NOT: Buy Energy-Efficient Appliances,Medium,$,Home Energy,energystar_fridge +Energize Acton,No,NOT: Buy Energy-Efficient Appliances,Medium,$,Home Energy,energystar_fridge +Agawam,Yes,Save on Appliances,High,$$,Home Energy,energystar_fridge +Agawam,Yes,Save on Appliances,High,$$,Home Energy,energystar_fridge +Energize Franklin,Yes,Switch to Energy Efficient Appliances,High,$$,Home Energy,energystar_fridge +Energize Franklin,Yes,Switch to Energy Efficient Appliances,High,$$,Home Energy,energystar_fridge +Sustainable Sherborn,Yes,Upgrading to Energy-Efficient Appliances,High,$$,Home Energy,energystar_fridge +Sustainable Sherborn,Yes,Upgrading to Energy-Efficient Appliances,High,$$,Home Energy,energystar_fridge +Green Newton,No,Use Energy Efficient Appliances Copy 293,High,$$,Home Energy,energystar_fridge +Energize Wayland,Yes,Home Battery Storage,Medium,$$,Home Energy,energystar_washer +Green Newton,Yes,Organize A Neighborhood Tree Planting,Low,0,Activism & Education,energystar_washer +Fairmount Indigo Collab.,Yes,Dive into Health Equity,Low,0,Activism & Education,environmental_justice +EcoNatick,No,Enviro Justice Is Racial Justice,High,0,Activism & Education,environmental_justice +EcoNatick,No,Enviro Justice Is Racial Justice,High,0,Activism & Education,environmental_justice +Energize Framingham,No,Environmental Justice Is Racial Justice,High,0,Activism & Education,environmental_justice +Energize Framingham,No,Environmental Justice Is Racial Justice,High,0,Activism & Education,environmental_justice +Energize Lexington,Yes,Environmental Justice: Racial Justice,High,0,Activism & Education,environmental_justice +Cooler Communities,No,An Environment for All People,High,0,Activism & Education,environmental_stewardship +Pioneer Valley Schools,Yes,An Environment for All People,High,0,Activism & Education,environmental_stewardship +Cooler Communities,No,An Environment for All People,High,0,Activism & Education,environmental_stewardship +Pioneer Valley Schools,Yes,An Environment for All People,High,0,Activism & Education,environmental_stewardship +EcoNatick,No,An Environment for All People-MW,High,0,Activism & Education,environmental_stewardship +EcoNatick,Yes,Clean Water - Clear Choices,Low,0,"Land, Soil & Water",environmental_stewardship +Sustainable Medfield,Yes,Clean Water - Clear Choices,Low,0,"Land, Soil & Water",environmental_stewardship +Green Pepperell,Yes,Protect Our Land & Water,Medium,$,"Land, Soil & Water",environmental_stewardship +Green Pepperell,Yes,Protect Our Land & Water,Medium,$,"Land, Soil & Water",environmental_stewardship +Cooler GCVS,Yes,Protect our Rainforests,High,$,"Land, Soil & Water",environmental_stewardship +Cooler GCVS,Yes,Protect our Rainforests,High,$,"Land, Soil & Water",environmental_stewardship +EcoNatick,Yes,Restore the River,Medium,0,"Land, Soil & Water",environmental_stewardship +EcoNatick,Yes,Restoring the River,Medium,0,"Land, Soil & Water",environmental_stewardship +Energize Framingham,No,Saving Soil & Society!,Medium,0,Activism & Education,environmental_stewardship +Kaat's Test Community,Yes,350MA Metrowest Node,Medium,$,Activism & Community,get_involved +Cooler Springfield,Yes,Action Adventure Starts Here!,High,0,Activism & Education,get_involved +EcoNatick,Yes,Advocate - Join a statewide network!,Medium,0,Activism & Education,get_involved +EcoNatick,Yes,Advocate - Join a statewide network!,Medium,0,Activism & Education,get_involved +HarvardEnergize,Yes,Advocate for Action on Climate,Medium,0,Activism & Education,get_involved +Cooler Greenfield,Yes,Become a Playwright,Medium,0,Activism & Education,get_involved +Energize Franklin,Yes,Engage in the Climate Conversation,Low,0,Activism & Education,get_involved +Sustainable Middlesex,Yes,Get involved in Town's Climate Action,Medium,0,Activism & Education,get_involved +Energize Franklin,Yes,Join 350 Mass Franklin Node,Low,0,Activism & Education,get_involved +Wayland,Yes,Join 350MA Metrowest Node,Medium,0,Activism & Community,get_involved +Green Newton,Yes,Join Action Alert Team,High,0,Activism & Education,get_involved +Green Newton,Yes,Join Action Alert Team,High,0,Activism & Education,get_involved +Energize Lexington,Yes,Join Citizens for Lexington Conservation,High,0,Activism & Education,get_involved +Energize Lexington,Yes,Join Lexington Climate Action Network,High,0,Activism & Education,get_involved +Energize Lexington,Yes,Join Lexington Living Landscapes,High,0,Activism & Education,get_involved +Energize Lexington,Yes,Join Lexington Zero Waste Collaborative ,High,0,Waste & Recycling,get_involved +Energize Lexington,Yes,Join LPS Green Teams,Low,0,Activism & Education,get_involved +Energize Wayland,Yes,Join Metrowest 350MA Node,Low,0,Activism & Education,get_involved +Training,Yes,Join Metrowest 350MA Node,,,,get_involved +Energize Wayland,Yes,Join Metrowest 350MA Node,Low,0,Activism & Education,get_involved +Energize Framingham,No,Join Metrowest 350MA Node ,Low,0,Activism & Education,get_involved +Energize Lexington,No,Join Mothers Out Front/Lexington ,Medium,0,Activism & Education,get_involved +EcoNatick,Yes,Join Natick's Net Zero Natick Committee,Medium,0,Activism & Education,get_involved +Fairmount Indigo Collab.,No,Join the Boston Green New Deal Coalition,Medium,0,Activism & Education,get_involved +Energize Boxborough,Yes,Join the Boxborough Conservation Trust,Low,0,Activism & Education,get_involved +Energize Wayland,Yes,Join the Climate Mobilization!,Low,0,Activism & Education,get_involved +Sustainable Medfield,Yes,Join this site and be counted!,Low,0,Activism & Education,get_involved +Cooler Greenfield,Yes,Join Your School's Environmental Club,Medium,0,Activism & Education,get_involved +Cooler Greenfield,Yes,Join Your School's Environmental Club,Medium,0,Activism & Education,get_involved +Sustainable Sherborn,Yes,Joining Sherborn PicksUp April 2021!,Low,0,Activism & Education,get_involved +Sustainable Sherborn,Yes,Joining Sherborn PicksUp April 2021!,Low,0,Activism & Education,get_involved +Sustainable Sherborn,Yes,Joining Your Local Citizen Group,Medium,0,Activism & Education,get_involved +Sustainable Sherborn,Yes,Joining Your Local Citizen Group,Medium,0,Activism & Education,get_involved +Energize Acton,No,NOT: Join Climate Advocacy Group,Low,0,Activism & Education,get_involved +Fairmount Indigo Collab.,Yes,Sign up for our Newsletter! ,High,0,Activism & Education,get_involved +Cooler Greenfield,Yes,Start Here: Join Cooler Greenfield,Low,0,Activism & Education,get_involved +Cooler Communities,Yes,Start Here: Joining the Challenge,Low,0,Activism & Education,get_involved +Energize Framingham,No,Stay Informed! Subscribe Today.,Low,0,Activism & Education,get_involved +Energize Lexington,No,Subscribe to Lexington Green Network,High,0,Activism & Education,get_involved +Cooler Northampton,Yes,The Adventure Starts Here!,Low,0,Activism & Education,get_involved +Cooler GCVS,Yes,The Challenge Starts Here!,Low,0,Activism & Education,get_involved +Cooler Communities,No,Your Voice for the Climate Age 12+,High,0,Activism & Education,get_involved +Energize Framingham,No,Go Geothermal!,High,$$$,Home Energy,ground_source_hp +Energize Framingham,No,Go Geothermal!,High,$$$,Home Energy,ground_source_hp +Sustainable Medfield,No,Go Geothermal!-Copy,High,$$$,Home Energy,ground_source_hp +Kaat's Test Community,No,Community Garden Plot,Medium,$$,Food,grow_local +Ellen Test,Yes,Community Garden plot Copy 8419,Medium,$$,Food,grow_local +Wayland,Yes,Community Gardening,Medium,$$,Food,grow_local +Energize Lexington,Yes,Do a Lazy Fall Garden Clean Up,Low,0,"Land, Soil & Water",grow_local +Agawam,Yes,Earth-Friendly Gardening Age 6+,Low,$,"Land, Soil & Water",grow_local +Cooler Communities,No,Gardening for Life Age 6+,Low,$,"Land, Soil & Water",grow_local +Global,No,landscaping,Medium,$$,Home Energy,grow_local +Energize Wayland,No,Community Garden Plot,Medium,$,Food,grow_locally +EcoNatick,No,Grow your own food,Medium,$,Food,grow_locally +Energize Wayland,Yes,Grow your own food,Medium,$,Food,grow_locally +Training,Yes,Grow your own food,Medium,$,Food,grow_locally +Cooler Greenfield,Yes,Indoor Plants,Low,$,"Land, Soil & Water",grow_locally +EcoNatick,Yes,Try the Seed Library!,Low,0,Food,grow_locally +Energize Boxborough,Yes,Get Started,Low,0,Activism & Education,help_community +Energize Acton,No,How can you help? Join us! Sign up now.,Low,0,Activism & Education,help_community +Energize Stow,Yes,Join this site,High,0,Activism & Education,help_community +Energize Wayland,Yes,Join this site and be counted!,Low,0,Activism & Education,help_community +Sustainable Medfield,Yes,Join this site and be counted!,Low,0,Activism & Education,help_community +Jewish Climate Action Network -- JCAN-MA,Yes,Learn about JCAN-MA,Medium,0,Activism & Education,help_community +Energize Boxborough,Yes,Refer a Friend,Low,0,Activism & Education,help_community +Energize Framingham,No,Refer a Friend,Low,0,Activism & Education,help_community +EnergizeUs,Yes,Refer a Friend,Low,0,Activism & Education,help_community +EcoNatick,No,Refer a Friend-EcoNatick - it's great!,Low,0,Activism & Education,help_community +Sustainable Sherborn,Yes,Referring a Friend,Low,0,Activism & Education,help_community +EcoNatick,Yes,Sign up and be counted!,Low,0,Activism & Education,help_community +Cooler Springfield,Yes,Start A New Action!,Low,0,Activism & Education,help_community +Cooler Springfield,Yes,Start A New Action!,Low,0,Activism & Education,help_community +Demo 2023,Yes,Suggest a New Action,Low,0,Activism & Education,help_community +Energize Framingham,No,Suggest a New Action,Low,0,Activism & Education,help_community +Demo 2023,Yes,Suggest a New Action,Low,0,Activism & Education,help_community +Energize Framingham,No,Suggest a New Action,Low,0,Activism & Education,help_community +Energize Littleton,Yes,Suggest a New Action,Low,0,Activism & Education,help_community +EcoNatick,No,Suggest a New Action for this Site,Low,0,Activism & Education,help_community +Solarize Eastie,Yes,Suggest a New Action for this Site,Low,0,Activism & Education,help_community +EcoNatick,No,Suggest a New Action for this Site,Low,0,Activism & Education,help_community +Global Climate Corps,Yes,Suggest a New Action-Copy,Low,0,Activism & Education,help_community +Global Climate Corps,Yes,Suggest a New Action-Copy,Low,0,Activism & Education,help_community +Sustainable Milton,No,Suggest a New Action-sustainablemilton,Low,0,Activism & Education,help_community +Energize Wayland,No,Suggest a new action!,Low,0,Activism & Education,help_community +Energize Wayland,No,Suggest a new action!,Low,0,Activism & Education,help_community +Sustainable Sherborn,Yes,Suggesting a New Action,Low,0,Activism & Education,help_community +Sustainable Sherborn,Yes,Suggesting a New Action,Low,0,Activism & Education,help_community +Energize Wayland,No,Take the Survey on Climate Change,Low,0,Activism & Education,help_community +Kaat's Test Community,Yes,trying to create an action,,,,help_community +Sustainable Milton,Yes,Volunteer with Sustainable Milton,Low,0,Activism & Education,help_community +Energize Framingham,No,Want to Volunteer?,Low,0,Activism & Education,help_community +Energize Framingham,No,Want to Volunteer?,Low,0,Activism & Education,help_community +Energize Lexington,No,What Can We Do? Sign Up!,Low,0,Activism & Education,help_community +Energize Boxborough,No,Install a Heat Pump Water Heater,Medium,$$$,Home Energy,hp_water_heater +Energize Lexington,Yes,Install a Heat Pump Water Heater,Medium,$,Home Energy,hp_water_heater +Energize Wayland,Yes,Install a Heat Pump Water Heater,Medium,$,Home Energy,hp_water_heater +Green Newton,Yes,Install A Heat Pump Water Heater,Medium,$$,Home Energy,hp_water_heater +Jewish Climate Action Network -- JCAN-MA,Yes,Install a Heat Pump Water Heater,Medium,$,Home Energy,hp_water_heater +Nowhere,Yes,Install a Heat Pump Water Heater,High,$$$,Home Energy,hp_water_heater +Energize Boxborough,No,Install a Heat Pump Water Heater,Medium,$$$,Home Energy,hp_water_heater +Energize Wayland,Yes,Install a Heat Pump Water Heater,Medium,$,Home Energy,hp_water_heater +Green Newton,Yes,Install A Heat Pump Water Heater,Medium,$$,Home Energy,hp_water_heater +Jewish Climate Action Network -- JCAN-MA,Yes,Install a Heat Pump Water Heater,Medium,$,Home Energy,hp_water_heater +LexCAN Toolkit,Yes,Install a Heat Pump Water Heater,Medium,$,Home Energy,hp_water_heater +Cooler Concord,Yes,Install A Heat Pump Water Heater ,Medium,$$,Home Energy,hp_water_heater +Cooler Concord,Yes,Install A Heat Pump Water Heater ,Medium,$$,Home Energy,hp_water_heater +Green Newton,No,Install A Heat Pump Water Heater Copy 6127,Medium,0,Home Energy,hp_water_heater +HarvardEnergize,Yes,Water heating with Heat Pumps,Medium,$$,Home Energy,hp_water_heater +HarvardEnergize,Yes,Water heating with Heat Pumps,Medium,$$,Home Energy,hp_water_heater +Wayland,Yes,Frimpong's New Action,Medium,$,Home Energy,induction_stove +Cooler Concord,Yes,Switch to Induction Cooking,Medium,$$,Home Energy,induction_stove +Energize Acton,Yes,Switch to Induction Cooking,Low,$,Food,induction_stove +Energize Franklin,Yes,Switch to Induction Cooking,Low,$,Home Energy,induction_stove +Energize Lexington,Yes,Switch to Induction Cooking,Low,$$,Home Energy,induction_stove +Energize Wayland,Yes,Switch to Induction Cooking,Low,$,Food,induction_stove +EnergizeNewburyport,Yes,Switch to Induction Cooking,Medium,$$,Home Energy,induction_stove +Sustainable Medfield,Yes,Switch to Induction Cooking,Low,$,Activism & Education,induction_stove +Cooler Concord,Yes,Switch to Induction Cooking,Medium,$$,Home Energy,induction_stove +Energize Acton,Yes,Switch to Induction Cooking,Low,$,Food,induction_stove +Energize Franklin,Yes,Switch to Induction Cooking,Low,$,Home Energy,induction_stove +Energize Wayland,Yes,Switch to Induction Cooking,Low,$,Food,induction_stove +EnergizeNewburyport,Yes,Switch to Induction Cooking,Medium,$$,Home Energy,induction_stove +LexCAN Toolkit,Yes,Switch to Induction Cooking,Low,$$,Home Energy,induction_stove +Sustainable Medfield,Yes,Switch to Induction Cooking,Low,$,Activism & Education,induction_stove +Energize Franklin,Yes,Green Hot Water,Medium,$$,Home Energy,install_solarHW +Sustainable Middlesex,Yes,Heat my water with Solar,Medium,$$$,Solar,install_solarHW +Sustainable Middlesex,Yes,Heat my water with Solar,Medium,$$$,Solar,install_solarHW +Solarize Eastie,No,Heat my water with Solar-Green Eastie,Medium,$$$,Solar,install_solarHW +Green Pepperell,No,Heat my water with Solar-PepperellMA,Medium,$$$,Solar,install_solarHW +Cooler Northampton,No,Heat my water with Solar!,Medium,$$$,Solar,install_solarHW +Energize Framingham,No,Heat my water with Solar!,Medium,$$,Solar,install_solarHW +Energize Wayland,Yes,Heat my water with Solar!,Medium,$$$,Solar,install_solarHW +EnergizeNewburyport,No,Heat My Water with Solar!,,,,install_solarHW +Hampshire Regional HS,No,Heat my water with Solar!,Medium,$$$,Solar,install_solarHW +Jewish Climate Action Network -- JCAN-MA,Yes,Heat my water with Solar!,Medium,$$,Solar,install_solarHW +MassEnergizeDemo,Yes,Heat my water with Solar!,Medium,$$,Home Energy,install_solarHW +Cooler Northampton,No,Heat my water with Solar!,Medium,$$$,Solar,install_solarHW +Energize Framingham,No,Heat my water with Solar!,Medium,$$,Solar,install_solarHW +Energize Wayland,Yes,Heat my water with Solar!,Medium,$$$,Solar,install_solarHW +EnergizeNewburyport,No,Heat My Water with Solar!,,,,install_solarHW +Hampshire Regional HS,No,Heat my water with Solar!,Medium,$$$,Solar,install_solarHW +Jewish Climate Action Network -- JCAN-MA,Yes,Heat my water with Solar!,Medium,$$,Solar,install_solarHW +MassEnergizeDemo,Yes,Heat my water with Solar!,Medium,$$,Home Energy,install_solarHW +Cooler GCVS,No,Heat my water with Solar! GCVS,,,,install_solarHW +Cooler GCVS,No,Heat my water with Solar! GCVS,,,,install_solarHW +Energize Boxborough,No,Heat my water with Solar!-BoxboroughMA,Medium,$$$,Solar,install_solarHW +Energize Boxborough,No,Heat my water with Solar!-BoxboroughMA,Medium,$$$,Solar,install_solarHW +EcoNatick,No,Heat my water with Solar!-EcoNatick,Medium,$$$,Solar,install_solarHW +EcoNatick,No,Heat my water with Solar!-EcoNatick,Medium,$$$,Solar,install_solarHW +Melrose Climate Action,No,Heat my water with Solar!-MelroseMA,Medium,$$$,Solar,install_solarHW +Sustainable Milton,No,Heat my water with Solar!-sustainablemilton,Medium,$$$,Solar,install_solarHW +Energize Littleton,Yes,Heat Your Water With Sola-LittnMA,Medium,$$,Home Energy,install_solarHW +Energize Lexington,Yes,Heat Your Water with Solar,High,$$,Solar,install_solarHW +EnergizeUs,Yes,Heat Your Water With Solar,Medium,$$,Home Energy,install_solarHW +HarvardEnergize,Yes,Heat Your Water With Solar,Medium,$$,Home Energy,install_solarHW +LexCAN Toolkit,Yes,Heat Your Water with Solar,High,$$,Solar,install_solarHW +Global,No,Solar Hot Water,High,$$$,Solar PV,install_solarHW +Cooler Communities,No,Catch the Sun on your roof,High,$$$,Solar,install_solarPV +Cooler Communities,No,Catch the Sun on your roof,High,$$$,Solar,install_solarPV +Agawam,Yes,Energize Your Roof,High,$$$,Solar,install_solarPV +Cooler Communities,Yes,Energize Your Roof,High,$$$,Solar,install_solarPV +Cooler Northampton,Yes,Energize Your Roof,,,,install_solarPV +Agawam,Yes,Energize Your Roof,High,$$$,Solar,install_solarPV +Cooler Communities,Yes,Energize Your Roof,High,$$,Solar,install_solarPV +Cooler Northampton,Yes,Energize Your Roof,,,,install_solarPV +HarvardEnergize,Yes,Get Solar for your House!,High,$$$,Solar,install_solarPV +HarvardEnergize,Yes,Get Solar for your House!,High,$$$,Solar,install_solarPV +Energize Franklin,Yes,Go Solar,High,$$$,Solar,install_solarPV +Energize Lexington,Yes,Go Solar,High,$$$,Solar,install_solarPV +Energize Franklin,Yes,Go Solar,High,$$$,Solar,install_solarPV +LexCAN Toolkit,Yes,Go Solar,High,$$$,Solar,install_solarPV +MassEnergizeDemo,No,Go solar!,High,$$$,Solar,install_solarPV +MassEnergizeDemo,No,Go solar!,High,$$$,Solar,install_solarPV +Energize Framingham,Yes,Go Solar! ,High,$$$,Solar,install_solarPV +Jewish Climate Action Network -- JCAN-MA,Yes,Go Solar! ,High,$$$,Solar,install_solarPV +Energize Framingham,Yes,Go Solar! ,High,$$$,Solar,install_solarPV +Jewish Climate Action Network -- JCAN-MA,Yes,Go Solar! ,High,$$$,Solar,install_solarPV +Wayland,Yes,Here we go again,Medium,$$,Solar PV,install_solarPV +Energize Framingham,Yes,How to pick the right solar provider,High,$$$,Solar,install_solarPV +Energize Wayland,Yes,Install rooftop solar,High,$$$,Solar,install_solarPV +Training,Yes,Install rooftop solar,,,,install_solarPV +Energize Wayland,Yes,Install rooftop solar,High,$$$,Solar,install_solarPV +Training,Yes,Install rooftop solar,,,,install_solarPV +EnergizeNewburyport,Yes,Install Rooftop Solar ,High,$$$,Solar,install_solarPV +EnergizeNewburyport,Yes,Install Rooftop Solar ,High,$$$,Solar,install_solarPV +Energize Acton,Yes,Install Solar,High,$$$,Solar,install_solarPV +Energize Boxborough,Yes,Install Solar,High,$$$,Home Energy,install_solarPV +Energize Acton,Yes,Install Solar,High,$$$,Solar,install_solarPV +Energize Boxborough,Yes,Install Solar,High,$$$,Home Energy,install_solarPV +Melrose Climate Action,Yes,Install Solar On Your Roof,High,$$$,Solar,install_solarPV +Melrose Climate Action,Yes,Install Solar On Your Roof,High,$$$,Solar,install_solarPV +Cooler Greenfield,Yes,Invest in Solar Panels,High,$$$,Solar,install_solarPV +Cooler Greenfield,Yes,Invest in Solar Panels,High,$$$,Solar,install_solarPV +Wayland,Yes,Make electricity with solar panels,High,$$$,Solar PV,install_solarPV +Green Newton,Yes,Put Solar on Your Rooftop,High,$$$,Solar,install_solarPV +Green Newton,Yes,Put Solar on Your Rooftop,High,$$$,Solar,install_solarPV +Cooler Concord,Yes,Put Solar on Your Rooftop ,High,$$$,Solar,install_solarPV +Cooler Concord,Yes,Put Solar on Your Rooftop ,High,$$$,Solar,install_solarPV +Sustainable Medfield,Yes,Rooftop solar,High,$$$,Solar,install_solarPV +Sustainable Milton,Yes,Rooftop Solar,High,$$$,Solar,install_solarPV +Sustainable Medfield,Yes,Rooftop solar,High,$$$,Solar,install_solarPV +Sustainable Milton,Yes,Rooftop Solar,High,$$$,Solar,install_solarPV +Energize Boxborough,No,Rooftop solar-BoxboroughMA,High,$$$,Solar,install_solarPV +Energize Boxborough,No,Rooftop solar-BoxboroughMA,High,$$$,Solar,install_solarPV +EcoNatick,No,Rooftop solar-EcoNatick,High,$$$,Solar,install_solarPV +EcoNatick,No,Rooftop solar-EcoNatick,High,$$$,Solar,install_solarPV +Sustainable Sherborn,Yes,Solar Panels,High,$$$,Solar,install_solarPV +Sustainable Sherborn,Yes,Solar Panels,High,$$$,Solar,install_solarPV +Wayland,No,Solar Photovoltaics on your Roof,High,$$$,Solar PV,install_solarPV +Solarize Eastie,No,Solarize Eastie!,High,$$,Solar,install_solarPV +Solarize Eastie,Yes,Solarize!,High,$$,Solar,install_solarPV +Solarize Eastie,Yes,Solarize!,High,$$,Solar,install_solarPV +Cooler Communities,No,Sun Power,High,$$$,Solar,install_solarPV +Cooler Communities,No,Sun Power,High,,Solar,install_solarPV +Energize Framingham,No,Consider Climate-driven Investing,,,,investing +Energize Acton,Yes,Consider Climate-driven Investments,Low,0,Activism & Education,investing +Cooler GCVS,No,Invest in the Climate,Medium,0,Activism & Education,investing +Cooler GCVS,No,Invest in the Climate,Medium,0,Activism & Education,investing +Global Climate Corps,No,Invest Like a Climate Activis-ExpressTraining,Medium,0,Activism & Education,investing +Global Climate Corps,No,Invest Like a Climate Activis-ExpressTraining,Medium,0,Activism & Education,investing +Energize Franklin,No,Invest Like a Climate Activis-FranklinMA,Medium,0,Activism & Education,investing +Energize Franklin,No,Invest Like a Climate Activis-FranklinMA,Medium,0,Activism & Education,investing +Energize Lincoln,No,Invest Like a Climate Activis-LincolnMA,Medium,0,Activism & Education,investing +Energize Littleton,Yes,Invest Like a Climate Activis-LittnMA,Medium,0,Activism & Education,investing +Energize Stow,No,Invest Like a Climate Activis-StowMA,Medium,0,Activism & Education,investing +Energize Stow,No,Invest Like a Climate Activis-StowMA,Medium,0,Activism & Education,investing +Cooler SICS,No,Invest Like a Climate Activist,,,,investing +Cooler Springfield,No,Invest Like a Climate Activist,,,,investing +Demo 2023,Yes,Invest Like a Climate Activist,Medium,0,Activism & Education,investing +EcoNatick,Yes,Invest Like a Climate Activist,Medium,0,Activism & Education,investing +Energize Franklin,No,Invest Like a Climate Activist,Medium,0,Activism & Education,investing +Energize Lexington,Yes,Invest Like A Climate Activist,High,$$,Activism & Education,investing +Energize Wayland,Yes,Invest like a climate activist,Medium,$$,Activism & Education,investing +EnergizeNewburyport,Yes,Invest Like a Climate Activist,Medium,0,Activism & Education,investing +Green Newton,Yes,Invest Like a Climate Activist,Medium,0,Activism & Education,investing +Hampshire Regional HS,No,Invest Like a Climate Activist,Medium,0,Activism & Education,investing +Cooler SICS,No,Invest Like a Climate Activist,,,Activism & Education,investing +Cooler Springfield,No,Invest Like a Climate Activist,,,Activism & Education,investing +Demo 2023,Yes,Invest Like a Climate Activist,Medium,0,Activism & Education,investing +EcoNatick,Yes,Invest Like a Climate Activist,Medium,0,Activism & Education,investing +Energize Franklin,No,Invest Like a Climate Activist,Medium,0,Activism & Education,investing +Energize Wayland,Yes,Invest like a climate activist,Medium,$$,Activism & Education,investing +EnergizeNewburyport,Yes,Invest Like a Climate Activist,Medium,0,Activism & Education,investing +Green Newton,Yes,Invest Like a Climate Activist,Medium,0,Activism & Education,investing +Hampshire Regional HS,No,Invest Like a Climate Activist,Medium,0,Activism & Education,investing +LexCAN Toolkit,Yes,Invest Like A Climate Activist,High,$$,Activism & Education,investing +Cooler Concord,Yes,Invest Like a Climate Activist ,Medium,0,Activism & Education,investing +HarvardEnergize,Yes,Invest Like a Climate Activist ,Medium,$$,Activism & Education,investing +Jewish Climate Action Network -- JCAN-MA,Yes,Invest Like a Climate Activist ,Low,0,Activism & Education,investing +HarvardEnergize,Yes,Invest Like a Climate Activist ,Medium,$$,Activism & Education,investing +Jewish Climate Action Network -- JCAN-MA,Yes,Invest Like a Climate Activist ,Low,0,Activism & Education,investing +Cooler Northampton,No,Invest Like a Climate Activist- Noho,,,,investing +Cooler Northampton,No,Invest Like a Climate Activist- Noho,,,Activism & Education,investing +Agawam,Yes,Action Adventure Starts Here!,High,0,Activism & Education,learn +MassEnergizeDemo,No,An Action you want to show up 1st,Medium,$,Home Energy,learn +Demo 2023,Yes,An Action You Want to Show Up First,Low,0,Food,learn +MassEnergizeDemo,Yes,An action you want to show up next,Medium,0,Solar,learn +MassEnergizeDemo,Yes,And so on: you rank your actions,Medium,0,Waste & Recycling,learn +Energize Boxborough,Yes,Climate Action Crew - Book Discussion,Medium,0,Home Energy,learn +EcoNatick,Yes,Grab a good book!,Low,0,Activism & Education,learn +Energize Franklin,Yes,How does this website work?,Low,0,Activism & Education,learn +Energize Framingham,Yes,How does this website work? ,Low,0,Activism & Education,learn +Fairmount Indigo Collab.,Yes,Learn about Climate Change & Your Health,Low,0,Activism & Education,learn +Jewish Climate Action Network -- JCAN-MA,Yes,Learn about JCAN-MA,Medium,0,Activism & Education,learn +Sustainable Medfield,Yes,Read with the Eco-Centric Book Club,Low,0,Activism & Education,learn +Energize Framingham,No,START HERE for Energy Savings,Low,0,Home Energy,learn +Energize Lexington,No,Take a Climate Coffee Break!,High,0,Activism & Education,learn +Energize Wayland,No,Take a local class on climate change,Low,,Activism & Education,learn +MassEnergizeDemo,No,Test Action you want to show up first ,High,0,Home Energy,learn +Cooler SICS,Yes,The Adventure Starts Here!,,0,Activism & Education,learn +Hampshire Regional HS,Yes,The Adventure Starts Here!,,0,Activism & Education,learn +Energize Acton,No,Welcome & Intro to Actions & Goals,Low,0,Home Energy,learn +Energize Lexington,Yes,Why We Should Electrify Everything,High,0,Activism & Education,learn +EcoNatick,Yes,Grab a good book!,Low,0,Activism & Education,learning +Agawam,Yes,Less Plastic Is Good! Age 6+,Low,0,Activism & Education,learning +EcoNatick,Yes,Read Natick's Net Zero Plan,Low,0,Activism & Education,learning +Sustainable Medfield,Yes,Read with the Eco-Centric Book Club,Low,0,Activism & Education,learning +Solarize Eastie,No,Change to LED Lightin-Green Eastie,Medium,$,Home Energy,led_lighting +Green Pepperell,No,Change to LED Lightin-PepperellMA,Medium,$,Home Energy,led_lighting +Cooler Concord,Yes,Change to LED lighting,Medium,$,Home Energy,led_lighting +Energize Franklin,Yes,Change to LED Lighting,Medium,$,Home Energy,led_lighting +Energize Wayland,Yes,Change to LED Lighting,Medium,$,Home Energy,led_lighting +EnergizeNewburyport,Yes,Change to LED Lighting,Low,$,Home Energy,led_lighting +Green Newton,Yes,Change to LED Lighting,Low,0,Home Energy,led_lighting +Hampshire Regional HS,No,Change to LED Lighting,Medium,$,Home Energy,led_lighting +Jewish Climate Action Network -- JCAN-MA,Yes,Change to LED Lighting,Low,0,Home Energy,led_lighting +Sustainable Medfield,Yes,Change to LED Lighting,Medium,$,Home Energy,led_lighting +Sustainable Middlesex,Yes,Change to LED Lighting,Medium,$,Home Energy,led_lighting +Sustainable Milton,Yes,Change to LED Lighting,Medium,$,Home Energy,led_lighting +Cooler Concord,Yes,Change to LED lighting,Medium,$,Home Energy,led_lighting +Energize Franklin,Yes,Change to LED Lighting,Medium,$,Home Energy,led_lighting +Energize Wayland,No,Change to LED Lighting,Medium,$,Home Energy,led_lighting +EnergizeNewburyport,Yes,Change to LED Lighting,Low,$,Home Energy,led_lighting +Green Newton,Yes,Change to LED Lighting,Low,0,Home Energy,led_lighting +Hampshire Regional HS,No,Change to LED Lighting,Medium,$,Home Energy,led_lighting +Jewish Climate Action Network -- JCAN-MA,Yes,Change to LED Lighting,Low,0,Home Energy,led_lighting +Sustainable Medfield,Yes,Change to LED Lighting,Medium,$,Home Energy,led_lighting +Sustainable Middlesex,Yes,Change to LED Lighting,Medium,$,Home Energy,led_lighting +Sustainable Milton,Yes,Change to LED Lighting,Medium,$,Home Energy,led_lighting +Cooler SICS,No,Change to LED Lighting- SICS,,,,led_lighting +Cooler SICS,No,Change to LED Lighting- SICS,,,,led_lighting +Melrose Climate Action,No,Change to LED Lighting-MelroseMA,Medium,$,Home Energy,led_lighting +Cooler Northampton,No,Change to LED Lighting-Noho,,,,led_lighting +Cooler Northampton,No,Change to LED Lighting-Noho,,,,led_lighting +Cooler Springfield,No,Change to LED Lights,,,,led_lighting +Cooler Springfield,No,Change to LED Lights,,,,led_lighting +HarvardEnergize,Yes,Convert to LED Lighting,Medium,$,Home Energy,led_lighting +HarvardEnergize,Yes,Convert to LED Lighting,Medium,$,Home Energy,led_lighting +LexCAN Toolkit,Yes,Save Electricity: Switch to LED Bulbs,Medium,$,Home Energy,led_lighting +Cooler GCVS,No,Switch to LED Lighting,Medium,$,Home Energy,led_lighting +Cooler GCVS,No,Switch to LED Lighting,Medium,$,Home Energy,led_lighting +Energize Lexington,Yes,Switch to LED Lighting and Save,Medium,$,Home Energy,led_lighting +Energize Wayland,No,TMP Change to LED Lighting-Copy,Medium,$,Home Energy,led_lighting +Green Pepperell,No,Outdoor Lighting Bylaw,Medium,$,Home Energy,light_pollution +Green Pepperell,No,Outdoor Lighting Bylaw,Medium,$,Home Energy,light_pollution +Green Pepperell,Yes,Preserve Our Starry Starry Nights ,Medium,$,Home Energy,light_pollution +Green Pepperell,Yes,Preserve Our Starry Starry Nights ,Medium,$,Home Energy,light_pollution +Sustainable Medfield,Yes,Reduce Light Pollution,Medium,0,Activism & Education,light_pollution +Sustainable Medfield,Yes,Reduce Light Pollution,Medium,0,Activism & Education,light_pollution +EcoNatick,No,Reduce Light Pollution-MW,Medium,0,Activism & Education,light_pollution +EcoNatick,No,Reduce Light Pollution-MW,Medium,0,Activism & Education,light_pollution +Pioneer Valley Schools,No,Air Dry Your Clothes,Low,0,Home Energy,line_dry +Pioneer Valley Schools,No,Air Dry Your Clothes,Low,0,Home Energy,line_dry +Cooler Communities,No,Air Dry Your Clothes ,Low,$,Home Energy,line_dry +Cooler Communities,No,Air Dry Your Clothes ,Low,$,Home Energy,line_dry +Cooler Communities,No,Air Dry Your Clothes Copy 1642,Low,$,Home Energy,line_dry +EnergizeUs,Yes,Air-Dry Your Clothes,Low,$,Home Energy,line_dry +Energize Littleton,Yes,Air-Dry Your Clothes,Low,$,Home Energy,line_dry +Energize Framingham,No,May Line Drying Challenge,Low,$,Home Energy,line_dry +Energize Framingham,No,May Line Drying Challenge,Low,$,Home Energy,line_dry +Energize Boxborough,Yes,Adopt Specialized Stretch Code,High,$$,Home Energy,local_decision +Sustainable Medfield,No,Attend Town Meeting,Low,0,Activism & Education,local_decision +Sustainable Medfield,No,Attend Town Meeting,Low,0,Activism & Education,local_decision +Energize Boxborough,No,Celebrate Boxborough Bill,Low,0,Home Energy,local_decision +Fairmount Indigo Collab.,Yes,Cosponsorship email to your lawmakers!,High,0,Transportation,local_decision +Fairmount Indigo Collab.,Yes,Cosponsorship email to your lawmakers!,High,0,Activism & Education,local_decision +Green Pepperell,Yes,Participate in Pepperell Net Zero Plan,High,0,Activism & Education,local_decision +Jewish Climate Action Network -- JCAN-MA,Yes,Pledge to Vote,Medium,0,Activism & Education,local_decision +Jewish Climate Action Network -- JCAN-MA,Yes,Pledge to Vote,Medium,0,Activism & Education,local_decision +Energize Boxborough,No,Pledge to Vote-BoxboroughMA,Medium,0,Activism & Education,local_decision +EcoNatick,No,Pledge to Vote-EcoNatick,Medium,0,Activism & Education,local_decision +EcoNatick,No,Pledge to Vote-EcoNatick,Medium,0,Activism & Education,local_decision +EcoNatick,No,Pledge to Vote-MW,Medium,0,Activism & Education,local_decision +EcoNatick,No,Pledge to Vote-MW,Medium,0,Activism & Education,local_decision +Sustainable Milton,No,Pledge to Vote-sustainablemilton,Medium,0,Activism & Education,local_decision +Energize Framingham,No,Register to VOTE,Medium,0,Activism & Education,local_decision +Energize Acton,Yes,Stay Current with Coalition Initiatives,High,0,Activism & Education,local_decision +Energize Wayland,No,SUCCESS for Green Town Meeting Articles,High,0,Activism & Education,local_decision +Fairmount Indigo Collab.,No,Support the HERO Bill,High,0,Activism & Education,local_decision +EcoNatick,Yes,View & VOTE: School Committee Candidates,Medium,0,Activism & Education,local_decision +EcoNatick,No,View & VOTE: School Committee Candidates,Medium,0,Activism & Education,local_decision +EcoNatick,Yes,View & VOTE: Select Board Candidates ,Medium,0,Activism & Education,local_decision +EcoNatick,No,View & VOTE: Select Board Candidates ,Medium,0,Activism & Education,local_decision +Green Pepperell,No,"Vote on April 24, 2023",,0,Activism & Education,local_decision +Green Pepperell,Yes,"Vote on Nov 8, 2022",,0,Activism & Education,local_decision +Energize Wayland,No,What is the Town doing,Medium,0,Activism & Education,local_decision +Energize Wayland,No,What is the Town doing,Medium,0,Activism & Education,local_decision +Green Pepperell,Yes,Participate in Pepperell Net Zero Plan,High,0,Activism & Education,local_govt +Nowhere,Yes,Adopt an insect diet,Medium,0,Food,low_carbon_diet +Demo 2023,Yes,An Action You Want to Show Up First,Low,0,Food,low_carbon_diet +HarvardEnergize,Yes,Buy food from a local farm,Medium,$,Food,low_carbon_diet +Energize Franklin,Yes,Buy Local Food,Medium,$,Food,low_carbon_diet +Energize Boxborough,Yes,Consider Plant-Based Foods,Medium,0,Food,low_carbon_diet +Energize Boxborough,Yes,Consider Plant-Based Foods,Medium,0,Food,low_carbon_diet +Pioneer Valley Schools,Yes,Earth-Friendly Meals ,High,0,Food,low_carbon_diet +Pioneer Valley Schools,Yes,Earth-Friendly Meals ,High,0,Food,low_carbon_diet +Cooler Communities,Yes,Earth-Friendly Meals - Age 8+,High,0,Food,low_carbon_diet +Cooler Communities,Yes,Earth-Friendly Meals - Age 8+,High,0,Food,low_carbon_diet +Demo 2023,Yes,Eat a More Plant-Based Diet,High,0,Food,low_carbon_diet +Energize Franklin,Yes,Eat a More Plant-Based Diet,High,$,Food,low_carbon_diet +Green Newton,Yes,Eat a More Plant-Based Diet,High,0,Food,low_carbon_diet +Sustainable Milton,Yes,Eat a More Plant-Based Diet,High,$,Food,low_carbon_diet +Energize Franklin,Yes,Eat a More Plant-Based Diet,High,$,Food,low_carbon_diet +Green Newton,Yes,Eat a More Plant-Based Diet,High,0,Food,low_carbon_diet +Sustainable Milton,Yes,Eat a More Plant-Based Diet,High,$,Food,low_carbon_diet +Demo 2023,Yes,Eat a More Plant-Based Diet,High,0,Food,low_carbon_diet +Cooler Concord,Yes,Eat a More Plant-Based Diet ,Medium,0,Food,low_carbon_diet +Cooler Concord,Yes,Eat a More Plant-Based Diet ,Medium,0,Food,low_carbon_diet +Global Climate Corps,No,Eat a More Plant-Based Diet-Copy,High,0,Food,low_carbon_diet +Energize Boxborough,No,Eat a Plant-Based Diet,Low,$,Food,low_carbon_diet +EnergizeUs,Yes,Eat a Plant-Based Diet,High,0,Food,low_carbon_diet +Energize Boxborough,No,Eat a Plant-Based Diet,Low,$,Food,low_carbon_diet +Energize Littleton,Yes,Eat a Plant-Based Diet,High,0,Food,low_carbon_diet +Cooler GCVS,Yes,Eat for the Earth ,Medium,$,Food,low_carbon_diet +Cooler GCVS,Yes,Eat for the Earth ,Medium,$,Food,low_carbon_diet +Agawam,Yes,Eat for the Earth - Age 8+,High,0,Food,low_carbon_diet +Agawam,Yes,Eat for the Earth - Age 8+,High,0,Food,low_carbon_diet +EcoNatick,No,Eat for the Earth - Age 8+-MW,High,0,Food,low_carbon_diet +EcoNatick,No,Eat for the Earth - Age 8+-MW,High,0,Food,low_carbon_diet +Energize Lexington,Yes,Eat Less Meat and Dairy,High,$,Food,low_carbon_diet +Energize Wayland,Yes,Eat less meat and dairy,High,0,Food,low_carbon_diet +EnergizeNewburyport,Yes,Eat Less Meat and Dairy,Medium,$,Food,low_carbon_diet +Jewish Climate Action Network -- JCAN-MA,Yes,Eat Less Meat and Dairy,High,0,Food,low_carbon_diet +Energize Wayland,Yes,Eat less meat and dairy,High,0,Food,low_carbon_diet +Jewish Climate Action Network -- JCAN-MA,Yes,Eat Less Meat and Dairy,High,0,Food,low_carbon_diet +LexCAN Toolkit,Yes,Eat Less Meat and Dairy,High,$,Food,low_carbon_diet +LexCAN Toolkit,Yes,Eat Local,Medium,$,Food,low_carbon_diet +Cooler Concord,No,Eat Local with a CSA,Medium,$,Food,low_carbon_diet +Energize Acton,Yes,Eat More Plant-Based Meals,Medium,$,Food,low_carbon_diet +Energize Acton,Yes,Eat More Plant-Based Meals,Medium,$,Food,low_carbon_diet +Energize Boxborough,No,Eat More Plant-Based Meals-Copy,,,,low_carbon_diet +EcoNatick,No,Eat More Plant-Based Meals-MW,Medium,$,Food,low_carbon_diet +EcoNatick,No,Eat More Plant-Based Meals-MW,Medium,$,Food,low_carbon_diet +Sustainable Sherborn,Yes,Eating Less Meat and Dairy,High,0,Food,low_carbon_diet +Sustainable Sherborn,Yes,Eating Less Meat and Dairy,High,0,Food,low_carbon_diet +Cooler Springfield,Yes,Food For Thought,High,0,Food,low_carbon_diet +Cooler Springfield,Yes,Food For Thought,High,0,Food,low_carbon_diet +Cooler Greenfield,Yes,Go Vegetarian or Vegan,High,0,Food,low_carbon_diet +Cooler Greenfield,Yes,Go Vegetarian or Vegan,High,0,Food,low_carbon_diet +Energize Framingham,No,Host a vegan Thanksgiving,Low,$,Food,low_carbon_diet +Energize Framingham,No,Host a vegan Thanksgiving,Low,$,Food,low_carbon_diet +Cooler Greenfield,No,Less Meat = Less Greenhouse Gases,High,0,Food,low_carbon_diet +Cooler Greenfield,No,Less Meat = Less Greenhouse Gases,High,0,Food,low_carbon_diet +Jewish Climate Action Network -- JCAN-MA,Yes,Local Farmshare or Farmstand,Medium,0,Food,low_carbon_diet +Melrose Climate Action,Yes,Make Mondays Meatless,Medium,0,Food,low_carbon_diet +Melrose Climate Action,Yes,Make Mondays Meatless,Medium,0,Food,low_carbon_diet +Pioneer Valley Schools,Yes,Meat Less! For Students,High,0,Food,low_carbon_diet +Pioneer Valley Schools,Yes,Meat Less! For Students,High,0,Food,low_carbon_diet +Pioneer Valley Schools,No,MeatLess,High,0,Food,low_carbon_diet +Pioneer Valley Schools,No,MeatLess,High,0,Food,low_carbon_diet +Energize Framingham,Yes,Meatless Monday,High,0,Food,low_carbon_diet +Energize Framingham,Yes,Meatless Monday,High,0,Food,low_carbon_diet +Jewish Climate Action Network -- JCAN-MA,Yes,Shop Local: Farmers Market,High,0,Food,low_carbon_diet +EcoNatick,No,Shop Local: Farmers Market-MW,High,0,Food,low_carbon_diet +Bushwick,Yes,Testy Waters,,,Home Energy,low_carbon_diet +Solarize Eastie,No,Market my Green Hom-Green Eastie,Low,0,Home Energy,market_green_home +Green Pepperell,No,Market my Green Hom-PepperellMA,Low,0,Home Energy,market_green_home +Cooler Concord,Yes,Market my Green Home,Low,$$,Home Energy,market_green_home +Energize Wayland,No,Market my Green Home,Low,0,Home Energy,market_green_home +Sustainable Middlesex,Yes,Market my Green Home,Low,0,Home Energy,market_green_home +Cooler Concord,Yes,Market my Green Home,Low,$$,Home Energy,market_green_home +Energize Wayland,No,Market my Green Home,Low,0,Home Energy,market_green_home +Sustainable Middlesex,Yes,Market my Green Home,Low,0,Home Energy,market_green_home +Melrose Climate Action,No,Market my Green Home-MelroseMA,Low,0,Home Energy,market_green_home +Hampshire Regional HS,No,Market my Green Home-westhampton,Low,0,Home Energy,market_green_home +Hampshire Regional HS,No,Market my Green Home-westhampton,Low,0,Home Energy,market_green_home +Energize Acton,Yes,Choose 100% Green Electricity,High,$,Home Energy,muni_aggregation +Energize Franklin,Yes,Community Aggregation,Medium,0,Solar,muni_aggregation +EnergizeNewburyport,Yes,Community Choice Power Supply,Medium,0,Home Energy,muni_aggregation +Energize Framingham,Yes,Framingham Electricity Aggregation,Medium,0,Home Energy,muni_aggregation +EcoNatick,Yes,Join Natick’s Electricity Aggregation!,Medium,$,Home Energy,muni_aggregation +Energize Lexington,Yes,Lexington's 100% Green Electricity,Medium,0,Home Energy,muni_aggregation +Solarize Eastie,Yes,Opt-In to Community Choice Electricity ,High,0,Home Energy,muni_aggregation +Green Pepperell,Yes,Pepperell Community Electricity,High,$,Home Energy,muni_aggregation +Sustainable Sherborn,Yes,Sherborn Power Choice (coming soon!),High,0,Home Energy,muni_aggregation +Green Newton,No,Buy Carbon Offsets for Air Travel,Low,0,Transportation,offset_flights +Green Newton,No,Buy Carbon Offsets for Air Travel,Low,0,Transportation,offset_flights +HarvardEnergize,Yes,Carbon Offset for Travel,Low,0,Transportation,offset_flights +Solarize Eastie,No,Offset your air trave-Green Eastie,Medium,$,Transportation,offset_flights +Green Pepperell,No,Offset your air trave-PepperellMA,Medium,$,Transportation,offset_flights +Cooler Northampton,No,Offset your air travel,Medium,$,Transportation,offset_flights +Energize Lexington,Yes,Offset Your Air Travel,High,$,Transportation,offset_flights +Energize Wayland,No,Offset your air travel,Medium,$,Transportation,offset_flights +Hampshire Regional HS,No,Offset your air travel,Medium,$,Transportation,offset_flights +Jewish Climate Action Network -- JCAN-MA,Yes,Offset Your Air Travel,Low,$,Transportation,offset_flights +Sustainable Middlesex,Yes,Offset your air travel,Medium,$,Transportation,offset_flights +Cooler Northampton,No,Offset your air travel,Medium,$,Transportation,offset_flights +Energize Wayland,No,Offset your air travel,Medium,$,Transportation,offset_flights +Hampshire Regional HS,No,Offset your air travel,Medium,$,Transportation,offset_flights +Jewish Climate Action Network -- JCAN-MA,Yes,Offset Your Air Travel,Low,$,Transportation,offset_flights +LexCAN Toolkit,Yes,Offset Your Air Travel,High,$,Transportation,offset_flights +Sustainable Middlesex,Yes,Offset your air travel,Medium,$,Transportation,offset_flights +Cooler Concord,Yes,Offset your air travel ,High,$$,Transportation,offset_flights +Cooler Concord,Yes,Offset your air travel ,High,$$,Transportation,offset_flights +Melrose Climate Action,No,Offset your air travel-MelroseMA,Medium,$,Transportation,offset_flights +Ellen Test,No,Aimee Herb,Medium,$,Transportation,people_power +Cooler Concord,Yes,Bike-to-school Concord,Medium,$,Transportation,people_power +Bushwick,Yes,Bushwick 9,Medium,$,Transportation,people_power +Pioneer Valley Schools,Yes,Drive less / Walk more ,High,0,Transportation,people_power +Cooler Communities,No,Drive less / Walk more Berkshires,High,0,Transportation,people_power +Energize Wayland,Yes,Drive less / Walk more!,High,0,Transportation,people_power +Jewish Climate Action Network -- JCAN-MA,Yes,People Power Your Errands,High,0,Transportation,people_power +EcoNatick,No,People Power Your Errands-EcoNatick,High,0,Transportation,people_power +Energize Lexington,Yes,Ride A Bike,Medium,$,Transportation,people_power +Cooler Greenfield,Yes,Use Walking or Biking for Transportation,High,,Transportation,people_power +Cooler Communities,No,Walk for a Viable Future,Low,0,Activism & Education,people_power +Cooler Communities,No,Walk for a Viable Future,Low,0,Activism & Education,people_power +Energize Lexington,Yes,Walk More: Drive Less,Medium,0,Transportation,people_power +EnergizeNewburyport,Yes,Walk More: Drive Less,Medium,0,Transportation,people_power +Cooler Greenfield,No,"Walk, Bike, or Bus",High,0,Transportation,people_power +Cooler Greenfield,Yes,Be a Lazy Gardener,Medium,$,"Land, Soil & Water",plant_native +Energize Framingham,Yes,Community Garden Plots,Low,$,"Land, Soil & Water",plant_native +EcoNatick,No,Community Garden Plots-MW,Low,$,"Land, Soil & Water",plant_native +Sustainable Sherborn,Yes,Controlling Invasive Plant Species,Low,$$,"Land, Soil & Water",plant_native +Energize Framingham,Yes,Controlling Invasive Plant Species ,Low,0,"Land, Soil & Water",plant_native +EcoNatick,No,Controlling Invasive Plant Species -MW,Low,0,"Land, Soil & Water",plant_native +Sustainable Medfield,Yes,Create a Native Plant Garden,Medium,$,"Land, Soil & Water",plant_native +EcoNatick,Yes,Earth-Friendly Gardening,Low,$,"Land, Soil & Water",plant_native +Cooler Greenfield,No,Earth-Friendly Gardening ,Low,$,"Land, Soil & Water",plant_native +Green Pepperell,Yes,Earth-Friendly Yard & Garden: Go Native!,Medium,$,"Land, Soil & Water",plant_native +EnergizeNewburyport,No,Ecological Landscaping,Medium,$,Home Energy,plant_native +Energize Framingham,No,Ecological Landscaping ,Low,$$,"Land, Soil & Water",plant_native +HarvardEnergize,Yes,Ecological Landscaping ,Low,$$,"Land, Soil & Water",plant_native +Cooler Concord,Yes,Ecological Landscaping ,Low,$$,"Land, Soil & Water",plant_native +Jewish Climate Action Network -- JCAN-MA,Yes,Ecological Landscaping & Tree Planting,Low,$$,"Land, Soil & Water",plant_native +Energize Acton,Yes,Garden Ecologically,Low,$,"Land, Soil & Water",plant_native +Energize Boxborough,Yes,Get Dirty in the Garden,Medium,$,"Land, Soil & Water",plant_native +Cooler Greenfield,Yes,Indoor Plants,Low,$,"Land, Soil & Water",plant_native +Cooler GCVS,Yes,Make Exploding Seed Balls,Medium,$,"Land, Soil & Water",plant_native +Cooler Northampton,Yes,Make Exploding Seed Balls,Medium,$,Food,plant_native +Energize Lexington,Yes,Make Your Yard A Living Landscape,Medium,$,"Land, Soil & Water",plant_native +Energize Franklin,Yes,Plant a Native Tree or Garden,Low,$,"Land, Soil & Water",plant_native +EcoNatick,No,Plant Native Grasses,Low,0,"Land, Soil & Water",plant_native +Energize Framingham,No,Buy Local Seedlings,Low,$,"Land, Soil & Water",plant_trees +Cooler GCVS,No,Ecological Landscaping Tree Planting,,,,plant_trees +Demo 2023,Yes,Ecological Landscaping Tree Planting,Low,$$,"Land, Soil & Water",plant_trees +Sustainable Middlesex,Yes,Ecological Landscaping Tree Planting,Low,$$,"Land, Soil & Water",plant_trees +Cooler Northampton,Yes,Ecological Landscaping Tree Planting ,Medium,$,"Land, Soil & Water",plant_trees +EcoNatick,No,Ecological Landscaping Tree Planting-EcoNatick,Low,$$,"Land, Soil & Water",plant_trees +Cooler Greenfield,No,Ecological Landscaping Tree Planting-GreenfieldMA,Low,$$,"Land, Soil & Water",plant_trees +Green Newton,Yes,Organize A Neighborhood Tree Planting,Low,0,Activism & Education,plant_trees +Cooler Concord,Yes,Plant a Native Tree,Low,$,"Land, Soil & Water",plant_trees +Cooler Greenfield,Yes,Plant a Native Tree,High,$,"Land, Soil & Water",plant_trees +Energize Framingham,No,Plant a Native Tree,Low,0,"Land, Soil & Water",plant_trees +Jewish Climate Action Network -- JCAN-MA,Yes,Plant a Native Tree,Low,$,"Land, Soil & Water",plant_trees +EcoNatick,No,Plant a Native Tree-MW,Low,$,"Land, Soil & Water",plant_trees +Energize Lexington,Yes,Plant A Tree,Low,$,"Land, Soil & Water",plant_trees +LexCAN Toolkit,Yes,Plant A Tree,Low,$,"Land, Soil & Water",plant_trees +Cooler Greenfield,Yes,Plant Native Plants,Medium,$,"Land, Soil & Water",plant_trees +EcoNatick,No,Planting the Future,Low,0,"Land, Soil & Water",plant_trees +Agawam,Yes,Being Comfy at Home ,Medium,$,Home Energy,prog_thermostats +Global Climate Corps,Yes,Change Thermostat Settings,Low,$$$,"Land, Soil & Water",prog_thermostats +Sustainable Middlesex,Yes,Change Thermostat Settings,Medium,$$$,Home Energy,prog_thermostats +Demo 2023,Yes,Change Thermostat Settings,Medium,$$$,Home Energy,prog_thermostats +Energize Stow,Yes,Change Thermostat Settings-Copy,Low,$$$,"Land, Soil & Water",prog_thermostats +Green Newton,Yes,Change Your Thermostat Settings,Medium,0,Home Energy,prog_thermostats +Energize Lexington,Yes,Change Your Thermostat Settings,Low,0,Home Energy,prog_thermostats +Green Newton,Yes,Change Your Thermostat Settings,Medium,0,Home Energy,prog_thermostats +Sustainable Sherborn,Yes,Changing your Thermostat Settings ,Medium,$$$,Home Energy,prog_thermostats +Stowe,Yes,Dogs as bed-warmers ,Low,$$$,Home Energy,prog_thermostats +Cooler Communities,No,Keeping your Home Cozy or Cool,Medium,$,Home Energy,prog_thermostats +Energize Framingham,Yes,Reduce Your Heating & Cooling Costs!,Medium,0,Home Energy,prog_thermostats +LexCAN Toolkit,Yes,Save Electricity: Thermostat Settings,Low,0,Home Energy,prog_thermostats +Agawam,Yes,Saving Energy Age 6+,Low,0,Home Energy,prog_thermostats +Jewish Climate Action Network -- JCAN-MA,Yes,Saving Energy Age 6+,Low,$,Home Energy,prog_thermostats +Agawam,Yes,Smart Thermostats,Medium,$,Home Energy,prog_thermostats +Jewish Climate Action Network -- JCAN-MA,Yes,Smart Thermostats,Medium,$,Home Energy,prog_thermostats +Agawam,Yes,Smart Thermostats,Medium,$,Home Energy,prog_thermostats +Jewish Climate Action Network -- JCAN-MA,Yes,Smart Thermostats,Medium,$,Home Energy,prog_thermostats +EcoNatick,No,Smart Thermostats-MW,Medium,$,Home Energy,prog_thermostats +EcoNatick,No,Smart Thermostats-MW,Medium,$,Home Energy,prog_thermostats +Ellen Test,Yes,snow balls,Medium,,Home Energy,prog_thermostats +Pioneer Valley Schools,Yes,Staying Cozy at Home,Medium,$,Home Energy,prog_thermostats +Training,Yes,testing1,Medium,$,Home Energy,prog_thermostats +Framingham Demo,Yes,Why do I need slippers in September?,,,,prog_thermostats +Cooler Communities,No,Wireless Programmable Thermostats,Medium,$,Home Energy,prog_thermostats +Cooler Communities,No,Wireless Programmable Thermostats,Medium,$,Home Energy,prog_thermostats +Training,Yes,Discounted Rain Barrels,,,"Land, Soil & Water",rain_barrel +Energize Wayland,Yes,Discounted Rain Barrels (ends 4/10!),Low,0,"Land, Soil & Water",rain_barrel +Training,Yes,Discounted Rain Barrels,,,"Land, Soil & Water",rain_barrels +Energize Wayland,Yes,Discounted Rain Barrels (ends 6/25),Low,0,"Land, Soil & Water",rain_barrels +LexCAN Toolkit,Yes,"Cleaner, Quieter Landscaping ",Medium,$$,"Land, Soil & Water",rake_elec_blower +Sustainable Medfield,Yes,Be Textile Savvy: Reuse/Donate/Recycle,Medium,0,Waste & Recycling,recycling +Energize Lexington,Yes,RECYCLE Right,Low,0,Waste & Recycling,recycling +Training,Yes,RECYCLE Right,Low,0,Waste & Recycling,recycling +Energize Framingham,No,RECYCLE Right ,Low,0,Waste & Recycling,recycling +Energize Wayland,No,Recycle Textiles,Low,0,Waste & Recycling,recycling +Wayland,Yes,Recycle Textiles,Medium,$,Waste & Recycling,recycling +Sustainable Medfield,No,Recycle Your Christmas Tree!,Low,$,Waste & Recycling,recycling +Energize Boxborough,Yes,Recycle Your Clothing,Low,0,Waste & Recycling,recycling +Energize Framingham,Yes,Recycling hard-to-recycle items,Low,$,Waste & Recycling,recycling +Kaat's Test Community,No,Textiles recycling,Low,$,Waste & Recycling,recycling +Energize Franklin,Yes,Bike to Save the Planet,Medium,0,Transportation,reduce_car_miles +Cooler Concord,Yes,Bike-to-school Concord,Medium,$,Transportation,reduce_car_miles +Pioneer Valley Schools,Yes,Drive less / Walk more ,High,0,Transportation,reduce_car_miles +Cooler Communities,No,Drive less / Walk more Berkshires,High,0,Transportation,reduce_car_miles +Energize Wayland,No,Drive less / Walk more!,High,0,Transportation,reduce_car_miles +LexCAN Toolkit,Yes,Drive Less; Ride A Bike,Medium,$,Transportation,reduce_car_miles +LexCAN Toolkit,Yes,Drive Less; Take Public Transportation,High,0,Transportation,reduce_car_miles +LexCAN Toolkit,Yes,Drive Less: Walk More,Medium,0,Transportation,reduce_car_miles +HarvardEnergize,Yes,E-Bikes,Medium,$$,Transportation,reduce_car_miles +HarvardEnergize,No,E-Bikes-Copy,Medium,$$,Transportation,reduce_car_miles +Cooler Springfield,Yes,Getting Around (Without) Driving,High,0,Transportation,reduce_car_miles +Cooler Springfield,Yes,Getting Around (Without) Driving,High,0,Transportation,reduce_car_miles +Cooler Springfield,No,Getting Around (Without) Driving Copy 4291,High,0,Transportation,reduce_car_miles +Energize Wayland,No,No idling at or near schools,Low,0,Transportation,reduce_car_miles +Jewish Climate Action Network -- JCAN-MA,Yes,People Power Your Errands,High,0,Transportation,reduce_car_miles +Jewish Climate Action Network -- JCAN-MA,No,People Power Your Errands Copy 3050,High,0,Transportation,reduce_car_miles +EcoNatick,No,People Power Your Errands-EcoNatick,High,0,Transportation,reduce_car_miles +Sustainable Milton,No,People Power Your Errands-sustainablemilton,High,0,Transportation,reduce_car_miles +Nowhere,Yes,Renewable transportation,Medium,$$$,Transportation,reduce_car_miles +Energize Wayland,No,Riverside Commute Shuttle,Medium,0,Transportation,reduce_car_miles +Energize Wayland,No,Riverside Commute Shuttle,Medium,0,Transportation,reduce_car_miles +Energize Lexington,Yes,Take Public Transportation,High,0,Transportation,reduce_car_miles +Energize Framingham,No,Take the MWRTA! and other public transit,Medium,$,Transportation,reduce_car_miles +Energize Framingham,No,Take the MWRTA! and other public transit,Medium,$,Transportation,reduce_car_miles +Wayland,Yes,testing kaat 7/10,Low,0,Transportation,reduce_car_miles +Green Newton,No,Use More Public Transit,High,0,Transportation,reduce_car_miles +Green Newton,No,Use More Public Transit,High,0,Transportation,reduce_car_miles +Cooler Greenfield,Yes,Use Walking or Biking for Transportation,High,,Transportation,reduce_car_miles +Green Newton,Yes,Use Your Car Less Challenge,High,0,Transportation,reduce_car_miles +Green Newton,Yes,Use Your Car Less Challenge,High,0,Transportation,reduce_car_miles +Cooler Concord,Yes,Use Your Car Less Challenge ,High,0,Transportation,reduce_car_miles +Cooler Concord,Yes,Use Your Car Less Challenge ,High,0,Transportation,reduce_car_miles +Sustainable Sherborn,Yes,Using Your Car less Challenge,High,0,Transportation,reduce_car_miles +Sustainable Sherborn,Yes,Using Your Car less Challenge,High,0,Transportation,reduce_car_miles +EnergizeNewburyport,Yes,Walk More: Drive Less,Medium,0,Transportation,reduce_car_miles +Cooler Greenfield,No,"Walk, Bike, or Bus",High,0,Transportation,reduce_car_miles +LexCAN Toolkit,Yes,Do a Lazy Fall Garden Clean Up,Low,0,"Land, Soil & Water",reduce_lawn_care +Green Pepperell,Yes,Earth-Friendly Yard & Garden: Go Native!,Medium,$,"Land, Soil & Water",reduce_lawn_care +LexCAN Toolkit,Yes,Eco-Friendly Backyard,Medium,$,"Land, Soil & Water",reduce_lawn_care +EnergizeNewburyport,No,Ecological Landscaping,Medium,$,Home Energy,reduce_lawn_care +LexCAN Toolkit,Yes,Join Lexington Living Landscapes,High,0,Activism & Education,reduce_lawn_care +Energize Lexington,Yes,Landscaping without Fossil Fuels ,Medium,$$,"Land, Soil & Water",reduce_lawn_care +Energize Franklin,Yes,Plant a Native Tree or Garden,Low,$,"Land, Soil & Water",reduce_lawn_care +Sustainable Medfield,Yes,Practice Low-Impact Lawn and Yard Care,High,0,Activism & Education,reduce_lawn_care +Sustainable Sherborn,Yes,Practicing Sustainable Landscaping ,Low,$$,"Land, Soil & Water",reduce_lawn_care +Energize Wayland,Yes,Reduce/Replace your Lawn,Medium,$$,"Land, Soil & Water",reduce_lawn_care +EcoNatick,Yes,What's the buzz about No Mow May?,Low,,"Land, Soil & Water",reduce_lawn_care +EcoNatick,Yes,What's the buzz about No Mow May?,Low,,"Land, Soil & Water",reduce_lawn_care +Cooler Greenfield,Yes,Be a Lazy Gardener,Medium,$,"Land, Soil & Water",reduce_lawn_size +Energize Framingham,Yes,Community Garden Plots,Low,$,"Land, Soil & Water",reduce_lawn_size +EcoNatick,No,Community Garden Plots-MW,Low,$,"Land, Soil & Water",reduce_lawn_size +Sustainable Sherborn,Yes,Controlling Invasive Plant Species,Low,$$,"Land, Soil & Water",reduce_lawn_size +Energize Framingham,Yes,Controlling Invasive Plant Species ,Low,0,"Land, Soil & Water",reduce_lawn_size +EcoNatick,No,Controlling Invasive Plant Species -MW,Low,0,"Land, Soil & Water",reduce_lawn_size +Sustainable Medfield,Yes,Create a Native Plant Garden,Medium,$,"Land, Soil & Water",reduce_lawn_size +EcoNatick,Yes,Earth-Friendly Gardening,Low,$,"Land, Soil & Water",reduce_lawn_size +Cooler Greenfield,No,Earth-Friendly Gardening ,Low,$,"Land, Soil & Water",reduce_lawn_size +Agawam,Yes,Earth-Friendly Gardening Age 6+,Low,$,"Land, Soil & Water",reduce_lawn_size +Energize Framingham,No,Ecological Landscaping ,Low,$$,"Land, Soil & Water",reduce_lawn_size +HarvardEnergize,Yes,Ecological Landscaping ,Low,$$,"Land, Soil & Water",reduce_lawn_size +Cooler Concord,Yes,Ecological Landscaping ,Low,$$,"Land, Soil & Water",reduce_lawn_size +EcoNatick,No,Ecological Landscaping -MW,Low,$$,"Land, Soil & Water",reduce_lawn_size +Jewish Climate Action Network -- JCAN-MA,Yes,Ecological Landscaping & Tree Planting,Low,$$,"Land, Soil & Water",reduce_lawn_size +Solarize Eastie,No,Ecological Landscaping Tree Plantin-Green Eastie,Low,$$,"Land, Soil & Water",reduce_lawn_size +Green Pepperell,No,Ecological Landscaping Tree Plantin-PepperellMA,Low,$$,"Land, Soil & Water",reduce_lawn_size +Cooler GCVS,No,Ecological Landscaping Tree Planting,,,,reduce_lawn_size +Demo 2023,Yes,Ecological Landscaping Tree Planting,Low,$$,"Land, Soil & Water",reduce_lawn_size +Sustainable Middlesex,Yes,Ecological Landscaping Tree Planting,Low,$$,"Land, Soil & Water",reduce_lawn_size +Cooler Northampton,Yes,Ecological Landscaping Tree Planting ,Medium,$,"Land, Soil & Water",reduce_lawn_size +EcoNatick,No,Ecological Landscaping Tree Planting-EcoNatick,Low,$$,"Land, Soil & Water",reduce_lawn_size +Cooler Greenfield,No,Ecological Landscaping Tree Planting-GreenfieldMA,Low,$$,"Land, Soil & Water",reduce_lawn_size +Melrose Climate Action,No,Ecological Landscaping Tree Planting-MelroseMA,Low,$$,"Land, Soil & Water",reduce_lawn_size +Sustainable Milton,No,Ecological Landscaping Tree Planting-sustainablemilton,Low,$$,"Land, Soil & Water",reduce_lawn_size +Hampshire Regional HS,No,Ecological Landscaping Tree Planting-westhampton,Low,$$,"Land, Soil & Water",reduce_lawn_size +Cooler Communities,No,Gardening for Life Age 6+,Low,$,"Land, Soil & Water",reduce_lawn_size +Cooler Concord,Yes,Plant a Native Tree,Low,$,"Land, Soil & Water",reduce_lawn_size +Cooler Greenfield,Yes,Plant a Native Tree,High,$,"Land, Soil & Water",reduce_lawn_size +Energize Framingham,No,Plant a Native Tree,Low,0,"Land, Soil & Water",reduce_lawn_size +Jewish Climate Action Network -- JCAN-MA,Yes,Plant a Native Tree,Low,$,"Land, Soil & Water",reduce_lawn_size +EcoNatick,No,Plant a Native Tree-MW,Low,$,"Land, Soil & Water",reduce_lawn_size +EcoNatick,No,Plant Native Grasses,Low,0,"Land, Soil & Water",reduce_lawn_size +Cooler Greenfield,Yes,Plant Native Plants,Medium,$,"Land, Soil & Water",reduce_lawn_size +Sustainable Sherborn,Yes,Practicing Sustainable Landscaping ,Low,$$,"Land, Soil & Water",reduce_lawn_size +Energize Wayland,Yes,Reduce/Replace your Lawn,Medium,$$,"Land, Soil & Water",reduce_lawn_size +Energize Littleton,Yes,Start Ecological Landscaping,Low,$$,"Land, Soil & Water",reduce_lawn_size +Energize Boxborough,Yes,Support the FreeBee Market,Low,$$,"Land, Soil & Water",reduce_lawn_size +Sustainable Medfield,Yes,Be Idle Free,High,0,Activism & Education,reduce_pollution +Sustainable Medfield,Yes,Be Idle Free,High,0,Activism & Education,reduce_pollution +Energize Wayland,No,No idling at or near schools,Low,0,Transportation,reduce_pollution +Sustainable Medfield,Yes, Sustainable Household Goods,Low,$,Waste & Recycling,reduce_waste +Sustainable Medfield,No, Sustainable Household Goods-Copy,Low,$,Waste & Recycling,reduce_waste +Energize Lexington,Yes,Avoid Bottled Water,Low,0,Waste & Recycling,reduce_waste +Energize Framingham,No,Avoid Bottled Water-Copy,,,,reduce_waste +EcoNatick,No,Avoid Bottled Water-MW,Low,0,Waste & Recycling,reduce_waste +Energize Framingham,No,"Bring a bag, save the Earth and 10¢",Low,0,Waste & Recycling,reduce_waste +Energize Framingham,No,"Bring a bag, save the Earth and 10¢",Low,0,Waste & Recycling,reduce_waste +Energize Wayland,No,Busy Parents Zero waste,Low,0,Waste & Recycling,reduce_waste +Energize Wayland,No,Busy Parents Zero waste,Low,0,Waste & Recycling,reduce_waste +LexCAN Toolkit,Yes,Buy a Reusable Water Bottle,Low,0,Waste & Recycling,reduce_waste +Energize Lexington,Yes,Buy Fewer Products in Plastic ,Low,0,Waste & Recycling,reduce_waste +LexCAN Toolkit,Yes,Buy Fewer Products in Plastic ,Low,0,Waste & Recycling,reduce_waste +Energize Acton,Yes,Buy Less Stuff,Medium,$,Waste & Recycling,reduce_waste +Energize Boxborough,Yes,Buy Less Stuff,Low,0,Waste & Recycling,reduce_waste +Energize Wayland,Yes,Buy Less Stuff,Medium,$,Waste & Recycling,reduce_waste +Jewish Climate Action Network -- JCAN-MA,Yes,Buy Less Stuff,Low,0,Waste & Recycling,reduce_waste +EcoNatick,No,Buy Less Stuff-MW,Medium,$,Waste & Recycling,reduce_waste +EcoNatick,No,Buy Less Stuff-MW,Medium,$,Waste & Recycling,reduce_waste +EnergizeNewburyport,No,Buy Less Stuff...Share More,Medium,0,Waste & Recycling,reduce_waste +Jewish Climate Action Network -- JCAN-MA,Yes,Buy Naked Stuff,Low,0,Waste & Recycling,reduce_waste +Energize Lexington,Yes,Buy Naked Stuff,Low,0,Waste & Recycling,reduce_waste +Jewish Climate Action Network -- JCAN-MA,Yes,Buy Naked Stuff,Low,0,Waste & Recycling,reduce_waste +LexCAN Toolkit,No,Buy Naked Stuff,Low,0,Waste & Recycling,reduce_waste +Energize Framingham,No,Buy Naked Stuff-Copy,,,,reduce_waste +EcoNatick,No,Buy Naked Stuff-MW,Low,0,Waste & Recycling,reduce_waste +LexCAN Toolkit,No,Buy Secondhand Clothing ,Low,0,Waste & Recycling,reduce_waste +Sustainable Sherborn,Yes,Canceling Your Catalogs,Low,0,Waste & Recycling,reduce_waste +Sustainable Sherborn,Yes,Canceling Your Catalogs,Low,0,Waste & Recycling,reduce_waste +Energize Wayland,No,Cleaning house? Donate or pass on,Low,0,Waste & Recycling,reduce_waste +EnergizeNewburyport,No,Cleaning house? Donate or pass on,Low,0,Waste & Recycling,reduce_waste +Melrose Climate Action,Yes,Cut Down on Junk Mail,Low,0,Waste & Recycling,reduce_waste +Melrose Climate Action,Yes,Cut Down on Junk Mail,Low,0,Waste & Recycling,reduce_waste +Jewish Climate Action Network -- JCAN-MA,Yes,Ditch Disposables,Low,0,Waste & Recycling,reduce_waste +Sustainable Medfield,Yes,Ditch Disposables,Low,0,Waste & Recycling,reduce_waste +Energize Lexington,Yes,Ditch Disposables,Low,0,Waste & Recycling,reduce_waste +Jewish Climate Action Network -- JCAN-MA,Yes,Ditch Disposables,Low,0,Waste & Recycling,reduce_waste +LexCAN Toolkit,Yes,Ditch Disposables,Low,0,Waste & Recycling,reduce_waste +Sustainable Medfield,Yes,Ditch Disposables,Low,0,Waste & Recycling,reduce_waste +EcoNatick,No,Ditch Disposables-MW,Low,0,Waste & Recycling,reduce_waste +EcoNatick,No,Ditch Disposables-MW,Low,0,Waste & Recycling,reduce_waste +Energize Wayland,No,Donate children’s items,Medium,0,Waste & Recycling,reduce_waste +LexCAN Toolkit,Yes,"Donate, Borrow and Buy Used",Low,0,Waste & Recycling,reduce_waste +Energize Framingham,Yes,"Donate, Borrow and Buy Used ",Low,0,Waste & Recycling,reduce_waste +EcoNatick,No,"Donate, Borrow and Buy Used -MW",Low,0,Waste & Recycling,reduce_waste +Energize Wayland,Yes,Get rid of junk mail,Low,0,Waste & Recycling,reduce_waste +Jewish Climate Action Network -- JCAN-MA,Yes,Get rid of junk mail,Low,0,Waste & Recycling,reduce_waste +Pioneer Valley Schools,Yes,Get rid of junk mail,Low,0,Waste & Recycling,reduce_waste +Sustainable Medfield,Yes,Get Rid of Junk Mail,Low,0,Waste & Recycling,reduce_waste +Energize Wayland,Yes,Get rid of junk mail,Low,0,Waste & Recycling,reduce_waste +Jewish Climate Action Network -- JCAN-MA,Yes,Get rid of junk mail,Low,0,Waste & Recycling,reduce_waste +Sustainable Medfield,Yes,Get Rid of Junk Mail,Low,0,Waste & Recycling,reduce_waste +Pioneer Valley Schools,Yes,Get rid of junk mail,Low,0,Waste & Recycling,reduce_waste +Cooler Concord,Yes,Get rid of junk mail ,Low,0,Waste & Recycling,reduce_waste +Cooler Concord,Yes,Get rid of junk mail ,Low,0,Waste & Recycling,reduce_waste +Cooler Springfield,Yes,Get Rid Of Junk Mail In One Go,Medium,0,Waste & Recycling,reduce_waste +Cooler Springfield,Yes,Get Rid Of Junk Mail In One Go,Medium,0,Waste & Recycling,reduce_waste +Sustainable Medfield,No,Get rid of junk mail-Copy,Low,0,Waste & Recycling,reduce_waste +EcoNatick,No,Get rid of junk mail-EcoNatick,Low,0,Waste & Recycling,reduce_waste +EcoNatick,No,Get rid of junk mail-EcoNatick,Low,0,Waste & Recycling,reduce_waste +Cooler Greenfield,No,Get rid of junk mail-GreenfieldMA,Low,0,Waste & Recycling,reduce_waste +Cooler Greenfield,No,Get rid of junk mail-GreenfieldMA,Low,0,Waste & Recycling,reduce_waste +EcoNatick,No,Get rid of junk mail-MW,Low,0,Waste & Recycling,reduce_waste +EcoNatick,No,Get rid of junk mail-MW,Low,0,Waste & Recycling,reduce_waste +Sustainable Milton,No,Get rid of junk mail-sustainablemilton,Low,0,Waste & Recycling,reduce_waste +EnergizeNewburyport,Yes,Get Rid of Junk Mail!,Medium,0,Waste & Recycling,reduce_waste +EnergizeNewburyport,Yes,Get Rid of Junk Mail!,Medium,0,Waste & Recycling,reduce_waste +Sustainable Medfield,Yes,Help our Planet by Deleting Emails,Low,0,Waste & Recycling,reduce_waste +LexCAN Toolkit,Yes,Join Lexington Zero Waste Collaborative ,High,0,Activism & Education,reduce_waste +Agawam,Yes,Less Plastic Is Good! Age 6+,Low,0,Activism & Education,reduce_waste +Pioneer Valley Schools,Yes,Less Plastic! ,Low,0,Activism & Education,reduce_waste +Pioneer Valley Schools,Yes,Less Plastic! ,Low,0,Activism & Education,reduce_waste +Cooler Springfield,Yes,Pass It On,Medium,0,Waste & Recycling,reduce_waste +EcoNatick,No,Pass It On-MW,Medium,0,Waste & Recycling,reduce_waste +Solarize Eastie,No,Pass on used good-Green Eastie,Medium,0,Waste & Recycling,reduce_waste +Green Pepperell,No,Pass on used good-PepperellMA,Medium,0,Waste & Recycling,reduce_waste +Cooler GCVS,No,Pass on used goods,Medium,0,Waste & Recycling,reduce_waste +Cooler Northampton,No,Pass on used goods,Medium,0,Waste & Recycling,reduce_waste +Energize Wayland,No,Pass on used goods,Medium,0,Waste & Recycling,reduce_waste +Hampshire Regional HS,No,Pass on used goods,Medium,0,Waste & Recycling,reduce_waste +Sustainable Middlesex,Yes,Pass on used goods,Medium,0,Waste & Recycling,reduce_waste +EcoNatick,No,Pass on used goods-EcoNatick,Medium,0,Waste & Recycling,reduce_waste +Cooler Greenfield,No,Pass on used goods-GreenfieldMA,Medium,0,Waste & Recycling,reduce_waste +Melrose Climate Action,No,Pass on used goods-MelroseMA,Medium,0,Waste & Recycling,reduce_waste +Sustainable Milton,No,Pass on used goods-sustainablemilton,Medium,0,Waste & Recycling,reduce_waste +Melrose Climate Action,Yes,Prioritize Reuse Over Trash,Low,0,Waste & Recycling,reduce_waste +Melrose Climate Action,Yes,Prioritize Reuse Over Trash,Low,0,Waste & Recycling,reduce_waste +Training,Yes,RECYCLE Right,,,,reduce_waste +Energize Framingham,No,RECYCLE Right ,Low,0,Waste & Recycling,reduce_waste +EcoNatick,No,RECYCLE Right -MW,Low,0,Waste & Recycling,reduce_waste +LexCAN Toolkit,Yes,Recycle Smart ,Low,0,Waste & Recycling,reduce_waste +Energize Wayland,No,Recycle Textiles,Low,0,Waste & Recycling,reduce_waste +Sustainable Medfield,No,Recycle Your Christmas Tree!,Low,$,Waste & Recycling,reduce_waste +Energize Boxborough,Yes,Recycle Your Clothing,Low,0,Waste & Recycling,reduce_waste +Energize Framingham,Yes,Recycling hard-to-recycle items,Low,$,Waste & Recycling,reduce_waste +Cooler Communities,No,Reduce Waste with Eco-Building Bargains,Low,0,Waste & Recycling,reduce_waste +Cooler Communities,No,Reduce Waste with Eco-Building Bargains,Low,0,Waste & Recycling,reduce_waste +LexCAN Toolkit,Yes,Repair it,Low,0,Waste & Recycling,reduce_waste +EcoNatick,No,Repair it-MW,Low,0,Waste & Recycling,reduce_waste +Energize Boxborough,No,Repurpose Used Goods,Medium,0,Waste & Recycling,reduce_waste +Agawam,Yes,Say Good Bye to Junk Mail,Medium,0,Waste & Recycling,reduce_waste +Agawam,Yes,Say Good Bye to Junk Mail,Medium,0,Waste & Recycling,reduce_waste +Melrose Climate Action,Yes,Say No to Throwaways,Low,0,Waste & Recycling,reduce_waste +Melrose Climate Action,Yes,Say No to Throwaways,Low,0,Waste & Recycling,reduce_waste +Energize Littleton,Yes,Sustainable Household Good-LittletonMA,Low,$,Waste & Recycling,reduce_waste +Demo 2023,Yes,Sustainable Household Goods,Low,$,Waste & Recycling,reduce_waste +Energize Framingham,No,Sustainable Household Goods,Low,$,Waste & Recycling,reduce_waste +Demo 2023,Yes,Sustainable Household Goods,Low,$,Waste & Recycling,reduce_waste +Energize Framingham,No,Sustainable Household Goods,Low,$,Waste & Recycling,reduce_waste +EcoNatick,No,Sustainable Household Goods-EcoNatick,Low,$,Waste & Recycling,reduce_waste +Cooler Greenfield,No,Sustainable Household Goods-GreenfieldMA,Low,$,Waste & Recycling,reduce_waste +Sustainable Milton,No,Sustainable Household Goods-sustainablemilton,Low,$,Waste & Recycling,reduce_waste +Cooler Springfield,Yes,Waste Less,Low,0,Waste & Recycling,reduce_waste +Cooler Springfield,Yes,Waste Less,Low,0,Waste & Recycling,reduce_waste +Energize Acton,Yes,Choose 100% Green Electricity,High,$,Home Energy,renewable_elec +Green Newton,No,Choose 100% Renewable Electricity,High,0,Home Energy,renewable_elec +Green Newton,No,Choose 100% Renewable Electricity,High,0,Home Energy,renewable_elec +Cooler Northampton,No,Clean Green Power,Medium,$$,Home Energy,renewable_elec +Hampshire Regional HS,Yes,Clean Green Power,High,$,Home Energy,renewable_elec +Cooler Northampton,No,Clean Green Power,Medium,$$,Home Energy,renewable_elec +Hampshire Regional HS,Yes,Clean Green Power,High,$,Home Energy,renewable_elec +Cooler GCVS,No,Clean Green Power-GCVS,,,,renewable_elec +Cooler GCVS,No,Clean Green Power-GCVS,,,,renewable_elec +Energize Franklin,Yes,Community Aggregation,Medium,0,Solar,renewable_elec +EnergizeNewburyport,Yes,Community Choice Power Supply,Medium,0,Home Energy,renewable_elec +Energize Framingham,No,Framingham Electricity Aggregation,Medium,0,Home Energy,renewable_elec +Solarize Eastie,No,Green Your Electricit-Green Eastie,High,0,Home Energy,renewable_elec +Energize Littleton,Yes,Green Your Electricit-LittnMA,High,0,Home Energy,renewable_elec +Green Pepperell,No,Green Your Electricit-PepperellMA,High,0,Home Energy,renewable_elec +Energize Wayland,Yes,Green your electricity,High,$,Home Energy,renewable_elec +Jewish Climate Action Network -- JCAN-MA,Yes,Green Your Electricity,High,0,Home Energy,renewable_elec +MassEnergizeDemo,Yes,Green Your Electricity,High,0,Home Energy,renewable_elec +Melrose Climate Action,Yes,Green Your Electricity,Medium,$,Home Energy,renewable_elec +Sustainable Middlesex,Yes,Green Your Electricity,High,0,Home Energy,renewable_elec +Sustainable Milton,Yes,Green Your Electricity,High,$,Home Energy,renewable_elec +Wayland,Yes,Green your electricity,Medium,$,Home Energy,renewable_elec +Energize Wayland,Yes,Green your electricity,High,$,Home Energy,renewable_elec +Jewish Climate Action Network -- JCAN-MA,Yes,Green Your Electricity,High,0,Home Energy,renewable_elec +MassEnergizeDemo,Yes,Green Your Electricity,High,0,Home Energy,renewable_elec +Melrose Climate Action,Yes,Green Your Electricity,Medium,$,Home Energy,renewable_elec +Sustainable Middlesex,Yes,Green Your Electricity,High,0,Home Energy,renewable_elec +Sustainable Milton,Yes,Green Your Electricity,High,$,Home Energy,renewable_elec +Energize Stow,Yes,Green Your Electricity-Copy,High,0,Home Energy,renewable_elec +Energize Stow,Yes,Green Your Electricity-Copy,High,0,Home Energy,renewable_elec +Jewish Climate Action Network -- JCAN-MA,No,Green Your Electricity-Copy,High,0,Home Energy,renewable_elec +EcoNatick,No,Green Your Electricity-EcoNatick,High,0,Home Energy,renewable_elec +EcoNatick,No,Green Your Electricity-EcoNatick,High,0,Home Energy,renewable_elec +Melrose Climate Action,No,Green Your Electricity-MelroseMA,High,0,Home Energy,renewable_elec +Hampshire Regional HS,No,Green Your Electricity-westhampton,High,0,Home Energy,renewable_elec +EcoNatick,Yes,Join Natick’s Electricity Aggregation!,Medium,$,Home Energy,renewable_elec +LexCAN Toolkit,Yes,Lexington's 100% Green Electricity,Medium,0,Home Energy,renewable_elec +Green Pepperell,No,Mass Save Residential New Construction,High,$$$,Home Energy,renewable_elec +Energize Boxborough,No,Not: Green Your Electricity-BoxboroughMA,High,0,Home Energy,renewable_elec +Energize Boxborough,No,Not: Green Your Electricity-BoxboroughMA,High,0,Home Energy,renewable_elec +Energize Acton,No,NOT: Opt Up to APC Green Copy 117,High,$,Home Energy,renewable_elec +Energize Wayland,No,Opt Up to APC Green for your Electricity,High,0,Home Energy,renewable_elec +Energize Wayland,No,Opt Up to APC Green for your Electricity,High,0,Home Energy,renewable_elec +Solarize Eastie,Yes,Opt-In to Community Choice Electricity ,High,0,Home Energy,renewable_elec +Green Pepperell,Yes,Pepperell Community Electricity,High,$,Home Energy,renewable_elec +HarvardEnergize,Yes,Reduce Wasted Electricity,Low,0,Home Energy,renewable_elec +Sustainable Sherborn,Yes,Sherborn Power Choice (coming soon!),High,0,Home Energy,renewable_elec +Energize Wayland,No,SUCCESS for Green Town Meeting Articles,High,0,Activism & Education,renewable_elec +MassEnergizeDemo,No,TMP Green Your Electricity-Copy,High,0,Home Energy,renewable_elec +Cooler Communities,Yes,Buy or Lease an Electric Car,High,$$,Transportation,replace_car +Cooler Northampton,Yes,Buy or Lease an Electric Car,Medium,$$,Transportation,replace_car +Energize Lexington,Yes,Buy or Lease an Electric Car,High,$$$,Transportation,replace_car +Hampshire Regional HS,No,Buy or Lease an Electric Car,High,$$$,Transportation,replace_car +HarvardEnergize,Yes,Buy or Lease an Electric Car,High,$$$,Transportation,replace_car +Sustainable Medfield,Yes,Buy or Lease an Electric Car,High,$$$,Transportation,replace_car +Sustainable Middlesex,Yes,Buy or Lease an Electric Car,High,$$$,Transportation,replace_car +Sustainable Milton,Yes,Buy or Lease an Electric Car,High,$$$,Transportation,replace_car +Cooler Communities,Yes,Buy or Lease an Electric Car,High,$$,Transportation,replace_car +Cooler Northampton,Yes,Buy or Lease an Electric Car,Medium,$$,Transportation,replace_car +Hampshire Regional HS,No,Buy or Lease an Electric Car,High,$$$,Transportation,replace_car +HarvardEnergize,Yes,Buy or Lease an Electric Car,High,$$$,Transportation,replace_car +LexCAN Toolkit,Yes,Buy or Lease an Electric Car,High,$$$,Transportation,replace_car +Sustainable Medfield,Yes,Buy or Lease an Electric Car,High,$$$,Transportation,replace_car +Sustainable Middlesex,Yes,Buy or Lease an Electric Car,High,$$$,Transportation,replace_car +Sustainable Milton,Yes,Buy or Lease an Electric Car,High,$$$,Transportation,replace_car +Melrose Climate Action,Yes,Buy or Lease an Electric Vehicle,High,$$$,Transportation,replace_car +Melrose Climate Action,Yes,Buy or Lease an Electric Vehicle,High,$$$,Transportation,replace_car +Melrose Climate Action,No,Buy or Lease an Electric Vehicle-Copy,High,$$$,Transportation,replace_car +Melrose Climate Action,No,Buy or Lease an Electric Vehicle-Copy,High,$$$,Transportation,replace_car +EcoNatick,No,Buy or Lease an EV,High,$$$,Transportation,replace_car +EcoNatick,No,Buy or Lease an EV,High,$$$,Transportation,replace_car +Cooler GCVS,Yes,Buy or Lease Electric Car,High,$$,Transportation,replace_car +Jewish Climate Action Network -- JCAN-MA,Yes,Buy or Lease Electric Car,High,$$$,Transportation,replace_car +Cooler GCVS,Yes,Buy or Lease Electric Car,High,$$,Transportation,replace_car +Jewish Climate Action Network -- JCAN-MA,Yes,Buy or Lease Electric Car,High,$$$,Transportation,replace_car +Energize Wayland,Yes,Buy/lease an electric car/hybrid,High,$$$,Transportation,replace_car +EnergizeNewburyport,Yes,Buy/Lease an Electric Car/Hybrid,High,$$$,Transportation,replace_car +Training,Yes,Buy/lease an electric car/hybrid,,,,replace_car +Energize Wayland,Yes,Buy/lease an electric car/hybrid,High,$$$,Transportation,replace_car +EnergizeNewburyport,Yes,Buy/Lease an Electric Car/Hybrid,High,$$$,Transportation,replace_car +Training,Yes,Buy/lease an electric car/hybrid,,,,replace_car +Energize Franklin,Yes,Buy/Lease an Electric or Hybrid Vehicle,High,$$$,Transportation,replace_car +Energize Franklin,Yes,Buy/Lease an Electric or Hybrid Vehicle,High,$$$,Transportation,replace_car +Cooler Concord,Yes,Buy/Lease an EV or Plug-in Hybrid,High,$$$,Transportation,replace_car +Cooler Concord,Yes,Buy/Lease an EV or Plug-in Hybrid,High,$$$,Transportation,replace_car +Energize Littleton,Yes,Drive an Electric Vehicl-LittnMA,High,$$$,Transportation,replace_car +EnergizeUs,Yes,Drive an Electric Vehicle,High,$$$,Transportation,replace_car +EcoNatick,Yes,Drive Electric,High,$$$,Transportation,replace_car +Energize Acton,Yes,Drive Electric,High,$$,Transportation,replace_car +EcoNatick,Yes,Drive Electric,High,$$$,Transportation,replace_car +Energize Acton,Yes,Drive Electric,High,$$,Transportation,replace_car +Energize Framingham,Yes,Drive Electric ,High,$$$,Transportation,replace_car +Energize Framingham,Yes,Drive Electric ,High,$$$,Transportation,replace_car +Cooler Communities,Yes,Drive Electric -Buy or Lease ,High,$$$,Transportation,replace_car +Cooler Communities,Yes,Drive Electric -Buy or Lease ,High,$$$,Transportation,replace_car +Energize Boxborough,Yes,Drive Electric Vehicle (EV),High,$$$,Transportation,replace_car +Energize Boxborough,Yes,Drive Electric Vehicle (EV),High,$$$,Transportation,replace_car +Green Newton,Yes,Electrify Your Ride,High,$$$,Transportation,replace_car +Green Newton,Yes,Electrify Your Ride,High,$$$,Transportation,replace_car +Demo 2023,Yes,Electrify Your Ride ,High,$$$,Transportation,replace_car +Demo 2023,Yes,Electrify Your Ride ,High,$$$,Transportation,replace_car +Global Climate Corps,No,Electrify Your Ride -Copy,High,$$$,Transportation,replace_car +Sustainable Sherborn,Yes,Electrifying your Ride,High,$$$,Transportation,replace_car +Agawam,Yes,EVs: Drive and Save,High,$$$,Transportation,replace_car +Agawam,Yes,EVs: Drive and Save,High,$$$,Transportation,replace_car +MassEnergizeDemo,Yes,"Lease, Buy an Electric Car",High,$$$,Transportation,replace_car +MassEnergizeDemo,Yes,"Lease, Buy an Electric Car",High,$$$,Transportation,replace_car +Green Pepperell,No,TEM Buy or Lease an Electric Ca-PepperellMA,High,$$$,Transportation,replace_car +Energize Boxborough,No,TEM Buy or Lease an Electric Car-BoxboroughMA,High,$$$,Transportation,replace_car +Melrose Climate Action,No,TEM Buy or Lease an Electric Car-MelroseMA,High,$$$,Transportation,replace_car +Energize Franklin,Yes,Energy Steps for Renters,Low,0,Home Energy,savings_for_renters +Energize Acton,Yes,Renters: Save $$,Low,0,Home Energy,savings_for_renters +Energize Boxborough,Yes,Renters: Save $$,Low,$$,Activism & Education,savings_for_renters +Agawam,Yes,Saving Energy Age 6+,Low,0,Home Energy,savings_for_renters +EcoNatick,No,Savings for Renters,Low,0,Home Energy,savings_for_renters +Sustainable Sherborn,Yes,Savings for Renters,Low,0,Home Energy,savings_for_renters +Energize Framingham,Yes,Savings for Renters ,Low,0,Home Energy,savings_for_renters +Energize Wayland,Yes,Help the grid - shave the peak!,Low,0,Home Energy,shave_peak +Energize Wayland,Yes,Help the grid - shave the peak!,Low,0,Home Energy,shave_peak +Jewish Climate Action Network -- JCAN-MA,Yes,Help the Grid- Shave the Peak!,Low,0,Home Energy,shave_peak +Energize Lexington,Yes,Help the Grid- Shave the Peak!,Low,0,Home Energy,shave_peak +Pioneer Valley Schools,Yes,Shave the Peak,Medium,0,Home Energy,shave_peak +Pioneer Valley Schools,Yes,Shave the Peak,Medium,0,Home Energy,shave_peak +Cooler Communities,No,Shave the Peak - Age 10+,Medium,0,Home Energy,shave_peak +Energize Framingham,No,How to pick the right solar provider,High,$$$,Solar,solar_assessment +Solarize Eastie,Yes,Virtual solar consult for condos,,,Solar,solar_assessment +Pioneer Valley Schools,Yes,Building a Solar Oven,Low,0,Solar,solar_oven +Pioneer Valley Schools,Yes,Building a Solar Oven,Low,0,Solar,solar_oven +Agawam,Yes,Solar Oven Age 6+,Low,0,Solar,solar_oven +Agawam,Yes,Solar Oven Age 6+,Low,0,Solar,solar_oven +Sustainable Medfield,Yes,Be Textile Savvy: Reuse/Donate/Recycle,Medium,0,Waste & Recycling,swap_donate +Energize Wayland,Yes,Cleaning house? Donate or pass on,Low,0,Waste & Recycling,swap_donate +EnergizeNewburyport,No,Cleaning house? Donate or pass on,Low,0,Waste & Recycling,swap_donate +Solarize Eastie,No,Donate Building Material-Green Eastie,Low,0,Waste & Recycling,swap_donate +Green Pepperell,No,Donate Building Material-PepperellMA,Low,0,Waste & Recycling,swap_donate +Agawam,No,Donate Building Materials,Low,0,Waste & Recycling,swap_donate +Cooler Northampton,No,Donate Building Materials,Low,0,Waste & Recycling,swap_donate +Energize Wayland,No,Donate building materials,Low,0,Waste & Recycling,swap_donate +EnergizeNewburyport,Yes,Donate Building Materials,Low,0,Waste & Recycling,swap_donate +Sustainable Middlesex,Yes,Donate Building Materials,Low,0,Waste & Recycling,swap_donate +Training,Yes,Donate building materials,Low,0,Waste & Recycling,swap_donate +Agawam,No,Donate Building Materials,Low,0,Waste & Recycling,swap_donate +Cooler Northampton,No,Donate Building Materials,Low,0,Waste & Recycling,swap_donate +Energize Wayland,No,Donate building materials,Low,0,Waste & Recycling,swap_donate +EnergizeNewburyport,Yes,Donate Building Materials,Low,0,Waste & Recycling,swap_donate +Sustainable Middlesex,Yes,Donate Building Materials,Low,0,Waste & Recycling,swap_donate +Training,Yes,Donate building materials,,,,swap_donate +Cooler GCVS,No,Donate Building Materials GCVS,Low,0,Waste & Recycling,swap_donate +Cooler GCVS,No,Donate Building Materials GCVS,,,,swap_donate +Melrose Climate Action,No,Donate Building Materials-MelroseMA,Low,0,Waste & Recycling,swap_donate +Hampshire Regional HS,No,Donate Building Materials-westhampton,Low,0,Waste & Recycling,swap_donate +Energize Lexington,Yes,"Donate, Borrow and Buy Used",Low,0,Waste & Recycling,swap_donate +Energize Framingham,Yes,"Donate, Borrow and Buy Used ",Low,0,Waste & Recycling,swap_donate +EcoNatick,No,"Donate, Borrow and Buy Used -MW",Low,0,Waste & Recycling,swap_donate +Sustainable Sherborn,Yes,Donating Building Materials,Low,0,Waste & Recycling,swap_donate +Sustainable Sherborn,Yes,Donating Building Materials,Low,0,Waste & Recycling,swap_donate +Cooler Springfield,Yes,Pass It On,Medium,0,Waste & Recycling,swap_donate +EcoNatick,No,Pass It On-MW,Medium,0,Waste & Recycling,swap_donate +Cooler GCVS,No,Pass on used goods,Medium,0,Waste & Recycling,swap_donate +Cooler Northampton,No,Pass on used goods,Medium,0,Waste & Recycling,swap_donate +Energize Wayland,No,Pass on used goods,Medium,0,Waste & Recycling,swap_donate +Hampshire Regional HS,No,Pass on used goods,Medium,0,Waste & Recycling,swap_donate +Sustainable Middlesex,Yes,Pass on used goods,Medium,0,Waste & Recycling,swap_donate +EcoNatick,No,Pass on used goods-EcoNatick,Medium,0,Waste & Recycling,swap_donate +Cooler Greenfield,No,Pass on used goods-GreenfieldMA,Medium,0,Waste & Recycling,swap_donate +Energize Boxborough,No,Repurpose Used Goods,Medium,0,Waste & Recycling,swap_donate +Sustainable Medfield,Yes,Reuse/Donate Household Items,Medium,0,Waste & Recycling,swap_donate +Sustainable Medfield,Yes,Reuse/Donate Household Items,Medium,0,Waste & Recycling,swap_donate +Energize Boxborough,Yes,Support the FreeBee Market,Low,$$,"Land, Soil & Water",swap_donate +Green Newton,Yes,"""Buy Less Stuff"" Challenge",High,0,Waste & Recycling,weatherization +Agawam,Yes,Being Comfy at Home ,Medium,$,Home Energy,weatherization +Sustainable Sherborn,Yes,Buying Less Stuff,High,0,Waste & Recycling,weatherization +Green Newton,Yes,Go for High Efficiency Renovations,Medium,$$$,Home Energy,weatherization +Green Newton,Yes,"Insulate ""To The Max""",High,0,Home Energy,weatherization +Green Newton,Yes,"Insulate ""To The Max""",High,0,Home Energy,weatherization +Energize Acton,Yes,Insulate & Weatherize to the Max,High,$$,Home Energy,weatherization +Energize Boxborough,Yes,Insulate & Weatherize to the Max,High,$$$,Home Energy,weatherization +Training,Yes,Insulate & Weatherize to the Max,,,Home Energy,weatherization +Energize Acton,Yes,Insulate & Weatherize to the Max,High,$$,Home Energy,weatherization +Energize Boxborough,Yes,Insulate & Weatherize to the Max,High,$$$,Home Energy,weatherization +Training,Yes,Insulate & Weatherize to the Max,,,Home Energy,weatherization +Cooler Concord,No,Insulate and Air Seal Your Home,High,$$,Home Energy,weatherization +Demo 2023,Yes,Insulate and Air Seal Your Home,High,$$,Home Energy,weatherization +Energize Lexington,Yes,Insulate and Air Seal Your Home,High,$$,Home Energy,weatherization +Energize Wayland,Yes,Insulate and air seal your home,High,$$,Home Energy,weatherization +HarvardEnergize,Yes,Insulate and Air Seal Your Home,High,$$,Home Energy,weatherization +Jewish Climate Action Network -- JCAN-MA,Yes,Insulate and Air Seal Your Home,Medium,0,Home Energy,weatherization +Melrose Climate Action,Yes,Insulate and air seal your home,Medium,$,Home Energy,weatherization +Sustainable Medfield,Yes,Insulate and Air Seal Your Home,Medium,0,Home Energy,weatherization +Cooler Concord,No,Insulate and Air Seal Your Home,High,$$,Home Energy,weatherization +Demo 2023,Yes,Insulate and Air Seal Your Home,High,$$,Home Energy,weatherization +Energize Wayland,Yes,Insulate and air seal your home,High,$$,Home Energy,weatherization +HarvardEnergize,Yes,Insulate and Air Seal Your Home,High,$$,Home Energy,weatherization +Jewish Climate Action Network -- JCAN-MA,Yes,Insulate and Air Seal Your Home,Medium,0,Home Energy,weatherization +LexCAN Toolkit,Yes,Insulate and Air Seal Your Home,High,$$,Home Energy,weatherization +Melrose Climate Action,Yes,Insulate and air seal your home,Medium,$,Home Energy,weatherization +Sustainable Medfield,Yes,Insulate and Air Seal Your Home,Medium,0,Home Energy,weatherization +Green Newton,No,Insulate and Air Seal Your Home Copy 2269,High,0,Home Energy,weatherization +Energize Boxborough,No,Insulate and Air Seal Your Home-BoxboroughMA,High,$$,Home Energy,weatherization +Energize Boxborough,No,Insulate and Air Seal Your Home-BoxboroughMA,High,$$,Home Energy,weatherization +Jewish Climate Action Network -- JCAN-MA,No,Insulate and Air Seal Your Home-Copy,Medium,0,Home Energy,weatherization +EcoNatick,No,Insulate and Air Seal Your Home-EcoNatick,High,$$,Home Energy,weatherization +EcoNatick,No,Insulate and Air Seal Your Home-EcoNatick,High,$$,Home Energy,weatherization +EnergizeNewburyport,Yes,Insulate and Weatherize ,High,0,Home Energy,weatherization +EnergizeNewburyport,Yes,Insulate and Weatherize ,High,0,Home Energy,weatherization +EnergizeNewburyport,No,Insulate and Weatherize -Copy,High,0,Home Energy,weatherization +Sustainable Milton,Yes,Insulate to the Max!,High,$,Home Energy,weatherization +Sustainable Milton,Yes,Insulate to the Max!,High,$,Home Energy,weatherization +Energize Franklin,Yes,Insulate Your Home,High,$$,Home Energy,weatherization +Energize Franklin,Yes,Insulate Your Home,High,$$,Home Energy,weatherization +Energize Littleton,Yes,Insulate Your Home,High,$$,Home Energy,weatherization +Sustainable Sherborn,Yes,Insulating and Air Sealing Your Home,High,$$,Home Energy,weatherization +Sustainable Sherborn,Yes,Insulating and Air Sealing Your Home,High,$$,Home Energy,weatherization +Cooler Communities,No,Keeping your Home Cozy or Cool,Medium,$,Home Energy,weatherization +Energize Framingham,Yes,Landlords - Free Insulation,Low,0,Home Energy,weatherization +Cooler Springfield,Yes,Love Your Home,Medium,$,Home Energy,weatherization +Cooler Springfield,Yes,Love Your Home,Medium,$,Home Energy,weatherization +Energize Framingham,Yes,Reduce Your Heating & Cooling Costs!,Medium,0,Home Energy,weatherization +Energize Wayland,No,Renovating? Improve efficiency too!,High,$$,Home Energy,weatherization +Sustainable Middlesex,Yes,Renovating? Improve Efficiency too!,High,$$,Home Energy,weatherization +Jewish Climate Action Network -- JCAN-MA,Yes,Renovating? Improve Efficiency too! ,High,$$,Home Energy,weatherization +Melrose Climate Action,No,Renovating? Improve Efficiency too! -MelroseMA,High,$$,Home Energy,weatherization +Hampshire Regional HS,No,Renovating? Improve Efficiency too! -westhampton,High,$$,Home Energy,weatherization +Cooler GCVS,No,Renovating? Improve Efficiency too! GCVS,,,,weatherization +Solarize Eastie,No,Renovating? Improve Efficiency too!-Green Eastie,High,$$,Home Energy,weatherization +Green Pepperell,No,Renovating? Improve Efficiency too!-PepperellMA,High,$$,Home Energy,weatherization +EnergizeNewburyport,Yes,Schedule a No-Cost Energy Assessment,High,0,Home Energy,weatherization +Pioneer Valley Schools,Yes,Staying Cozy at Home,Medium,$,Home Energy,weatherization +Energize Wayland,No,TMP Insulate and Air Seal Your Home-Copy,High,$$,Home Energy,weatherization +Energize Wayland,No,TMP Renovating? Improve Efficiency too! -Copy,High,$$,Home Energy,weatherization +Energize Franklin,Yes,New or Replacement Windows,Low,$$$,Home Energy,windows +Energize Franklin,Yes,New or Replacement Windows,Low,$$$,Home Energy,windows +Cooler Greenfield,Yes,Getting Off Fossil Fuels,High,,Home Energy,zero_emissions +Energize Acton,Yes,Take the Zero Emissions Pledge,Low,0,Home Energy,zero_emissions +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, \ No newline at end of file diff --git a/src/carbon_calculator/content/defaults.csv b/src/carbon_calculator/content/defaults.csv index 41d199a2d..59a000190 100644 --- a/src/carbon_calculator/content/defaults.csv +++ b/src/carbon_calculator/content/defaults.csv @@ -56,7 +56,7 @@ elec_cost_heatpump_dryer_low,default,1250,Default value without reference,,2019- "elec_cost_heatpump_dryer_low""",default,1200,https://www.greenbuildingadvisor.com/article/heat-pump-clothes-dryers - LG dryer,,2019-10-27 11:28 elec_cost_induction_stove_low,default,1600,Web: Crane's appliances - Fridgidaire Gallery + $300 for cookware,,2019-10-27 11:15 elec_cost_smart_power_strip,default,15,Default value without reference,,2019-11-04 10:56 -elec_dryer_average_annual_loads,default,439,Average loads per year: https://neep.org/file/2766/download?token=wn4kylsO,, +elec_dryer_average_annual_loads,default,439,Average loads per year: https://neep.org/file/2766/download?token=wn4kylsO,,2019-11-04 20:39 elec_dryer_hpwh_energy_factor,default,3.,Typical value for rebate eligible hpwh,,2020-07-25 18:24 elec_dryer_load_kwh,default,3.3,Default value without reference,,2019-10-27 16:03 elec_dryerload_therm_gas,default,0.24,Default value without reference,,2019-10-27 16:09 diff --git a/src/carbon_calculator/models.py b/src/carbon_calculator/models.py index da31c202f..1b0ae7933 100644 --- a/src/carbon_calculator/models.py +++ b/src/carbon_calculator/models.py @@ -100,7 +100,7 @@ def full_json(self): return self.simple_json() def __str__(self): - s = self.category + ':' + self.title + s = self.category + ' : ' + self.title return s class Meta: diff --git a/src/carbon_calculator/views.py b/src/carbon_calculator/views.py index cbb484bbb..7c05787fd 100644 --- a/src/carbon_calculator/views.py +++ b/src/carbon_calculator/views.py @@ -1,7 +1,5 @@ -#from django.shortcuts import render from django.http import JsonResponse from database.utils.json_response_wrapper import Json -#from django.views.decorators.csrf import csrf_exempt from database.utils.common import get_request_contents from _main_.utils.massenergize_response import MassenergizeResponse from _main_.utils.massenergize_errors import NotAuthorizedError diff --git a/src/database/models.py b/src/database/models.py index 96c189d5e..146993cbf 100644 --- a/src/database/models.py +++ b/src/database/models.py @@ -940,7 +940,7 @@ def summary(self): done_points = 0 for actionRel in done_actions: if actionRel.action and actionRel.action.calculator_action: - done_points += actionRel.action.calculator_action.average_points + done_points += AverageImpact(actionRel.action.calculator_action, actionRel.date_completed) else: done_points += actionRel.carbon_impact @@ -950,7 +950,7 @@ def summary(self): todo_points = 0 for actionRel in todo_actions: if actionRel.action and actionRel.action.calculator_action: - todo_points += actionRel.action.calculator_action.average_points + todo_points += AverageImpact(actionRel.action.calculator_action, actionRel.date_completed) else: todo_points += actionRel.carbon_impact @@ -1949,7 +1949,7 @@ def full_json(self): "name": u.real_estate_unit.name if u.real_estate_unit else None, }, "date_completed": u.date_completed, - "carbon_impact": u.action.calculator_action.average_points if u.action.calculator_action else None, + "carbon_impact": AverageImpact(u.action.calculator_action, u.date_completed) if u.action.calculator_action else None, "recorded_at": u.updated_at, } diff --git a/src/task_queue/database_tasks/update_actions_content.py b/src/task_queue/database_tasks/update_actions_content.py new file mode 100644 index 000000000..b1a866380 --- /dev/null +++ b/src/task_queue/database_tasks/update_actions_content.py @@ -0,0 +1,132 @@ +import csv +import datetime +from django.apps import apps +from sentry_sdk import capture_message +from _main_.utils.emailer.send_email import send_massenergize_email_with_attachments +from api.utils.constants import DATA_DOWNLOAD_TEMPLATE +from database.models import Community, Action, FeatureFlag +from carbon_calculator.models import Action as CCAction +from django.http import HttpResponse +from _main_.settings import BASE_DIR + + +FEATURE_FLAG_KEY = "update-actions-content-feature-flag" +ACTIONS_UPDATE_FILE = BASE_DIR + "/carbon_calculator/content/all-actions-update.csv" + +""" +This task is used to update Action content in the database for one or more communities. +There are two parts to this: +1. Generate a report of the contents that need to be fixed with the following information + a. Community: the community the Action belongs to + b. Action name: the name or title of the content + c. Carbon Calculator action and old carbon calculator action, if differnt + d. Impact, cost or category tag and old impact/cost/category tag, if different +2. Update the link between Action and CCAction, to be correct in all cases. +3. As appropriate - delete a number of garbage actions with no redeeming features +""" + +def write_to_csv(data): + response = HttpResponse(content_type="text/csv") + writer = csv.DictWriter(response, fieldnames=["Community", "Action Name", "CCAction", "Impact", "Cost"]) + writer.writeheader() + for row in data: + writer.writerow(row) + return response.content + + +def update_actions_content(task=None): + try: + data = [] + communities = Community.objects.filter(is_deleted=False) + + # check if update feature enabled, otherwise will just report + flag = FeatureFlag.objects.filter(key=FEATURE_FLAG_KEY).first() + if not flag or not flag.enabled(): + update_enabled = False + else: + update_enabled = True + enabled_communities = flag.enabled_communities(communities) + + # ccActions = CCAction.objects.filter(is_deleted=False) - when we implement ccAction deletion + ccActions = CCAction.objects.all() + + # open the all-actions-content.csv file which will drive the updates + with open(ACTIONS_UPDATE_FILE, newline='') as csvfile: + inputlist = csv.reader(csvfile) + first = True + num = 0 + + # loop over lines in the file + for item in inputlist: + if first: # header line + t = {} + for i in range(len(item)): + if i==0: + item[i] = 'Name' + t[item[i]] = i + first = False + else: + community_name = item[0] + community = None + if community_name != '': + community = communities.filter(name=community_name) + if not community: + continue # commmunity not in this database + community = community.first() + + + + action_title = item[t["Action"]] + impact = item[t["Impact"]] + cost = item[t["Cost"]] + #category = item[t["Category"]] + ccActionName = item[t["Carbon Calculator Action"]] + + # locate the Action from title and community + action = Action.objects.filter(title=action_title, community=community) + if action: + action = action.first() + + # check whether action has correct calculator_action, impact and cost + if not action.calculator_action or action.calculator_action.name != ccActionName: + + # add line to report + line = { + "Community": community_name, + "Action Name": action_title, + "CCAction": ccActionName, + "Impact": impact, + "Cost": cost, + } + data.append(line) + + if update_enabled: + if not community or community in enabled_communities: + if ccActionName == "DELETE": + # if calculator_action is DELETE, mark for deletion + action.is_deleted = True + else: + # set calculator_action, + ccAction = ccActions.filter(name=ccActionName) + if not ccAction: + print("Carbon calculator action '"+ccActionName+"' does not exist") + continue + action.calculator_action = ccAction.first() + + action.save() + + + if len(data) > 0: + report = write_to_csv(data) + temp_data = {'data_type': "Content Spacing", "name":task.creator.full_name if task.creator else "admin"} + file_name = "Content-Spacing-Report-{}.csv".format(datetime.datetime.now().strftime("%Y-%m-%d")) + send_massenergize_email_with_attachments(DATA_DOWNLOAD_TEMPLATE,temp_data,[task.creator.email], report, file_name) + + return True + except Exception as e: + print(str(e)) + capture_message(str(e), level="error") + return False + + + diff --git a/src/task_queue/jobs.py b/src/task_queue/jobs.py index 01ae70e58..0561df438 100644 --- a/src/task_queue/jobs.py +++ b/src/task_queue/jobs.py @@ -1,5 +1,6 @@ from task_queue.database_tasks.contents_spacing_correction import process_spacing_data +from task_queue.database_tasks.update_actions_content import update_actions_content from task_queue.nudges.cadmin_events_nudge import send_events_nudge from task_queue.nudges.user_event_nudge import prepare_user_events_nudge from task_queue.nudges.postmark_sender_signature import collect_and_create_signatures @@ -22,4 +23,5 @@ "Create Community Snapshots": create_snapshots, "Postmark Sender Signature": collect_and_create_signatures, "Process Content Spacing": process_spacing_data, + "Update Action Content": update_actions_content, } \ No newline at end of file diff --git a/src/task_queue/views.py b/src/task_queue/views.py index a30853561..a36626494 100644 --- a/src/task_queue/views.py +++ b/src/task_queue/views.py @@ -16,7 +16,7 @@ from django.db.models import Count from django.db.models import Q from django.core.exceptions import ObjectDoesNotExist - +from carbon_calculator.carbonCalculator import AverageImpact today = datetime.datetime.utcnow().replace(tzinfo=utc) one_week_ago = today - timezone.timedelta(days=7) @@ -253,7 +253,7 @@ def _get_user_reported_info(community, users): carbon_user_reported = sum( [ - action_rel.action.calculator_action.average_points + AverageImpact(action_rel.action.calculator_action, action_rel.date_completed) if action_rel.action.calculator_action else 0 for action_rel in done_action_rels