2024 Excellence in Resourcefulness Awards

Industry Insights

Recognize Sustainability with the 2024 Excellence in Resourcefulness Awards

March 19, 2024

Every year, we recognize Itron customers who are demonstrating leadership in the industry, spearheading sustainability initiatives and delivering reliable and safe energy to their communities. In collaboration with Frost & Sullivan, we're thrilled to announce the call for nominations for the 2024 Excellence in Resourcefulness Awards program, which highlights utilities and cities for their exceptional dedication to resourcefulness and sustainability in their operations, projects and initiatives. The deadline for submissions is July 15, 2024

The Excellence in Resourcefulness Awards program aims to recognize organizations that have achieved outstanding results in water conservation, grid optimization and operational efficiency through advanced technology implementation, such as DERMS, VPP, Edge Intelligence or AMI. Frost & Sullivan conduct comprehensive research and interviews during the selection process, comparing applicants to industry benchmarks and specific decision-making criteria,which include the societal and economic benefits of each category. For a program to make a meaningful social impact, it needs to boost consumer engagement and awareness, encourage behaviors that reduce waste through consumer involvement and technology-led initiatives, and deliver significant waste reduction outcomes that serve the community at large. Key business metrics include the creation of a strategic vision for employing technology to reduce waste, achieving operational excellence through effective strategies and bolstering a utility or city’s standing as an industry leader. 

The 2023 award recipients included Sacramento Municipal Utility District (SMUD) and Las Vegas Valley Water District (LVVWD). SMUD was recognized for the utility’s proactive and holistic approach to achieving net-zero emissions as well as their current pilot of Itron’s next-generation advanced metering infrastructure (AMI) technology. LVVWD was recognized for taking action to proactively improve water conservation measures by implementing Itron’s AMI solution, designed to provide detailed information on program effectiveness and uncover new programs for customers to adopt, such as seasonal compliance rates. 

   

Submit a nomination! 
If you know an organization that is trailblazing the way in sustainability, please submit a nomination here. We look forward to celebrating our customers who are doing just that – and preserving our world’s most precious resources to create a more resourceful world. Winners will be announced and recognized at Itron InspireOct. 6-8 in Palm Desert, CA and the deadline to submit is July 15, 2024, 12:00 a.m. EDT.  

 

Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> authorContent.contentFields  [in template "44616#44647#114455" at line 9, column 17]

----
Tip: It's the step after the last dot that caused this error, not those before it.
----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: contentFields = authorContent.content...  [in template "44616#44647#114455" at line 9, column 1]
----
1<#assign 
2	webContentData = jsonFactoryUtil.createJSONObject(author.getData()) 
3	classPK = webContentData.classPK 
4/> 
5 
6<#assign 
7authorContent = restClient.get("/headless-delivery/v1.0/structured-contents/" + classPK + "?fields=contentFields%2CfriendlyUrlPath%2CtaxonomyCategoryBriefs") 
8contentFields = authorContent.contentFields 
9categories=authorContent.taxonomyCategoryBriefs 
10authorContentData = jsonFactoryUtil.createJSONObject(authorContent) 
11friendlyURL = authorContentData.friendlyUrlPath 
12authorCategoryId = "0" 
13/> 
14 
15<#list contentFields as contentField > 
16   <#assign  
17	 contentFieldData = jsonFactoryUtil.createJSONObject(contentField)  
18	 name = contentField.name 
19	 /> 
20	 <#if name == 'authorImage'> 
21	    <#if (contentField.contentFieldValue.image)??> 
22	        <#assign authorImageURL = contentField.contentFieldValue.image.contentUrl />	 
23			</#if> 
24	 </#if> 
25	 <#if name == 'authorName'> 
26	    <#assign authorName = contentField.contentFieldValue.data /> 
27			<#list categories as category > 
28         <#if authorName == category.taxonomyCategoryName> 
29				     <#assign authorCategoryId = category.taxonomyCategoryId /> 
30				 </#if> 
31      </#list> 
32	 </#if> 
33	 <#if name == 'authorDescription'> 
34	    <#assign authorDescription = contentField.contentFieldValue.data /> 
35			 
36	 </#if> 
37	  
38	 <#if name == 'authorJobTitle'> 
39	    <#assign authorJobTitle = contentField.contentFieldValue.data /> 
40			 
41	 </#if> 
42 
43</#list> 
44 
45<div class="blog-author-info"> 
46	<#if authorImageURL??> 
47		<img class="blog-author-img" id="author-image" src="${authorImageURL}" alt="" /> 
48	</#if> 
49	<#if authorName??> 
50		<#if authorName != ""> 
51			<p class="blog-author-name">By <a id="author-detail-page" href="/w/${friendlyURL}?filter_category_552298=${authorCategoryId}"><span id="author-full-name">${authorName}</span></a></p> 
52			<hr /> 
53		</#if> 
54	</#if> 
55	<#if authorJobTitle??> 
56		<#if authorJobTitle != ""> 
57			<p class="blog-author-title" id="author-job-title" >${authorJobTitle}</p> 
58			<hr /> 
59		</#if> 
60	</#if> 
61	<#if authorDescription??> 
62		<#if authorDescription != "" && authorDescription != "null" > 
63			<p class="blog-author-desc" id="author-job-desc">${authorDescription}</p> 
64			<hr /> 
65		</#if> 
66	</#if> 
67</div>