Stay On Top Of Requests
Reduce call volumes by helping people instantly access waste service information more quickly — and often without taking their phone calls.
Provide Delightful Service
Impress the people you serve with a convenient, digital experience, making it easy for them to access waste information anytime, anywhere on everyday devices.
Easily Notify
Save time, resources and costs by eliminating print calendars and educational materials. Improve engagement with instant push notifications, allow people to schedule special collections and expand your reach with gamified education tailored to your waste streams.
Protect The Planet
Reduce contamination and wishcycling with data that lets you target your education and outreach on commonly misunderstood materials.
customer benefits
Who Do We Help?
Government Agencies
Municipalities use our tools to educate people to recycle right, self-serve timely and important information, and easily adapt to collection schedule changes.
Waste Hauler
Waste haulers use our tools to educate their customers on how to self-serve timely and important information, easily adapt to collection schedule changes, and recycle right.
Universities
Universities, colleges, schools and school districts use our tools to empower students and staff to be better recyclers while reinforcing the kind of sustainable culture today’s students look for.
details & specifications
How Do We Help?
Reduce Contamination
Lower Call Volumes
Increase Diversion
Teach Recycling Habits
Reduce Contamination
When people can quickly and easily search and get answers for “what goes where,” they develop better recycling habits. Engaged recyclers means reduced contamination and wishcycling in your program.
Help people quickly search materials with ReCollect mobile apps and website tools and teach them how to recycle or dispose of them.
Lower Call Volumes
Inbound calls are costly and inefficient. Save time by providing people the answers they need before they call you. Help people quickly search for instructions on how to properly dispose of any material, access their real-time collection schedule, or book a collection of a bulky item.
Do it all with easy-to-use ReCollect mobile apps and website tools, custom-branded to your program.
Increase Diversion
Teach people how to recycle materials properly and divert materials away from landfills by learning ‘what goes where’.
Access powerful analytics to learn what people search for the most, zoom in on problem areas and focus your communications to maximize the impact on your recycling program.
Teach Proper Recycling Habits
People want to recycle right. Show them how.
Let’s face it: few people carry a copy of your printed materials list in their back pocket when they need it.
Our easy-to-access digital tools are designed to help educate people in a fast and easy way, helping you foster great recyclers.
CUSTOMER STORIES
People Love Our Digital Recycling Apps
SMART TECH FOR WASTE & RECYCLING
Digital Tools for Waste & Recyling
Outreach and Engagment
ReCollect, a Routeware Company, works with smart cities and
high-performance haulers to power their digital transformation strategies,
enabling them to boost productivity, increase safety, enhance customer
service, and improve environmental outcomes.
We Are Routeware
With offices throughout the US, UK, and Canada, Routeware today represents the
single source for proven, integrated solutions for fleet automation and engagement
Serving the waste and recycling industry for over 20 years, Routeware has grown
over the last several years through the strategic acquisitions of ReCollect, CORE,
EasyRoute, Webaspx, RouteOptix, and ASI
BLOGS
Blogs & Articles
function setupTabs() {
var reduceContaminationTab = document.getElementById(“reduceContaminationTab”)
var lowerCallVolumesTab = document.getElementById(“lowerCallVolumesTab”)
var increaseDiversionTab = document.getElementById(“increaseDiversionTab”)
var teachProperRecyclingHabitsTab = document.getElementById(“teachProperRecyclingHabitsTab”)
reduceContaminationTab.tabNumber = 1
lowerCallVolumesTab.tabNumber = 2
increaseDiversionTab.tabNumber = 3
teachProperRecyclingHabitsTab.tabNumber = 4
reduceContaminationTab.addEventListener(“click”, toggleText, false)
lowerCallVolumesTab.addEventListener(“click”, toggleText, false)
increaseDiversionTab.addEventListener(“click”, toggleText, false)
teachProperRecyclingHabitsTab.addEventListener(“click”, toggleText, false)
// Ensure the first tab is active on initial page load.
var event = new Event(“click”)
reduceContaminationTab.dispatchEvent(event)
}
function toggleText(event) {
var reduceContaminationText = document.getElementById(“reduceContaminationText”)
var lowerCallVolumesText = document.getElementById(“lowerCallVolumesText”)
var increaseDiversionText = document.getElementById(“increaseDiversionText”)
var teachProperRecyclingHabitsText = document.getElementById(“teachProperRecyclingHabitsText”)
var tabNumber = event.currentTarget.tabNumber
switch(tabNumber) {
case 1:
reduceContaminationText.style.display = “block”
lowerCallVolumesText.style.display = “none”
increaseDiversionText.style.display = “none”
teachProperRecyclingHabitsText.style.display = “none”
break
case 2:
reduceContaminationText.style.display = “none”
lowerCallVolumesText.style.display = “block”
increaseDiversionText.style.display = “none”
teachProperRecyclingHabitsText.style.display = “none”
break
case 3:
reduceContaminationText.style.display = “none”
lowerCallVolumesText.style.display = “none”
increaseDiversionText.style.display = “block”
teachProperRecyclingHabitsText.style.display = “none”
break
case 4:
reduceContaminationText.style.display = “none”
lowerCallVolumesText.style.display = “none”
increaseDiversionText.style.display = “none”
teachProperRecyclingHabitsText.style.display = “block”
break
default:
reduceContaminationText.style.display = “none”
lowerCallVolumesText.style.display = “none”
increaseDiversionText.style.display = “none”
teachProperRecyclingHabitsText.style.display = “block”
}
}