Irrigation System Calculator

Help your irrigation business generate more qualified leads with this interactive cost calculator. Customers can explore different system types, zone configurations, and smart controller options. The calculator factors in soil conditions, water sources, and additional features like rain sensors and winterization to provide realistic estimates.

Home ServicesPopular

Try the Calculator

Irrigation System Estimate
📍 Installation Location
Loading map...
 
📍 Enter address to check service area
🏠 Property Details
5000
5000
100020000
💧 System Configuration
 
5
5
212
 
🔧 Installation Options
✨ Additional Features

💰 Cost Breakdown
$ 5,000.00
+
$ 425.00
+
$ 400.00
+
$ 125.00
🌱 Your Estimate
$ 5,950.00
$ 1,000.00
/zone
Smart controller can save 20-40% on water bills.
Estimates based on average costs. Final price depends on site conditions, existing landscaping, and local labor rates. On-site assessment required.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
export function irrigationSystemCalculator(form: FormTs) {
// System type base costs
const systemBaseCosts: Record<string, number> = {
'sprinkler-basic': 1500,
'sprinkler-premium': 2500,
'drip': 2000,
'combined': 3500
};
 
// Per zone costs
const costPerZone: Record<string, number> = {
'sprinkler-basic': 350,
'sprinkler-premium': 500,
'drip': 250,
'combined': 400
};
 
// Controller pricing
const controllerPricing: Record<string, number> = {
'basic': 150,
'smart': 350,
'premium': 600
};
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Irrigation System Estimate',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Service Location Section
const locationSection = form.addSubform('serviceLocation', { title: '📍 Installation Location' });
 
locationSection.addRow(row => {
row.addAddress('propertyAddress', {
label: 'Property Address',
placeholder: 'Enter your property address...',
showMap: true,
showDistance: true,
referenceAddress: {
formattedAddress: 'Service Center, Denver, CO',
coordinates: { lat: 39.7392, lng: -104.9903 }
},
restrictToCountries: ['US', 'CA'],
distanceUnit: 'miles',
isRequired: true
});
});
 
locationSection.addRow(row => {
row.addTextPanel('serviceAreaInfo', {
computedValue: () => {
const addressField = locationSection.address('propertyAddress');
const miles = addressField?.distance();
if (miles == null) return '📍 Enter address to check service area';
if (miles <= 25) return '📍 Within service area - No travel fee';
if (miles <= 50) return '📍 Extended area - $100 travel fee';
if (miles <= 75) return '📍 Remote area - $200 travel fee';
return '📍 Outside service area - Please call for availability';
},
customStyles: { 'font-size': '0.9rem', 'color': '#0369a1', 'background': '#e0f2fe', 'padding': '10px', 'border-radius': '6px' }
});
});
 
// Property Details Section
const propertySection = form.addSubform('propertyDetails', { title: '🏠 Property Details' });
 
propertySection.addRow(row => {
row.addSlider('yardSize', {
label: 'Yard Size (square feet)',
min: 1000,
max: 20000,
step: 500,
defaultValue: 5000,
showValue: true
});
});
 
propertySection.addRow(row => {
row.addDropdown('soilType', {
label: 'Soil Type',
options: [
{ id: 'sandy', name: 'Sandy (drains quickly)' },
{ id: 'loam', name: 'Loam (ideal balance)' },
{ id: 'clay', name: 'Clay (drains slowly)' },
{ id: 'rocky', name: 'Rocky (difficult digging)' }
],
defaultValue: 'loam',
isRequired: true
}, '1fr');
row.addDropdown('landscape', {
label: 'Landscape Type',
options: [
{ id: 'lawn-only', name: 'Mostly Lawn' },
{ id: 'mixed', name: 'Lawn + Garden Beds' },
{ id: 'gardens', name: 'Mostly Gardens/Beds' },
{ id: 'diverse', name: 'Diverse (lawn, beds, trees)' }
],
defaultValue: 'mixed',
isRequired: true
}, '1fr');
});
 
// System Configuration Section
const systemSection = form.addSubform('systemConfig', { title: '💧 System Configuration' });
 
systemSection.addRow(row => {
row.addRadioButton('systemType', {
label: 'Irrigation System Type',
options: [
{ id: 'sprinkler-basic', name: 'Basic Sprinkler System - Pop-up heads' },
{ id: 'sprinkler-premium', name: 'Premium Sprinkler - Rotary heads, high efficiency' },
{ id: 'drip', name: 'Drip Irrigation - Best for gardens and beds' },
{ id: 'combined', name: 'Combined System - Sprinklers + Drip zones' }
],
defaultValue: 'sprinkler-premium',
orientation: 'vertical',
isRequired: true
});
});
 
systemSection.addRow(row => {
row.addSlider('zones', {
label: 'Number of Zones',
min: 2,
max: 12,
step: 1,
defaultValue: 5,
showValue: true
});
});
 
systemSection.addRow(row => {
row.addRadioButton('controllerType', {
label: 'Controller Type',
options: [
{ id: 'basic', name: 'Basic Timer ($150) - Manual programming' },
{ id: 'smart', name: 'Smart Controller ($350) - WiFi, weather-based' },
{ id: 'premium', name: 'Premium Smart ($600) - AI, sensors, app control' }
],
defaultValue: 'smart',
orientation: 'vertical',
isRequired: true
});
});
 
// Installation Options Section
const installSection = form.addSubform('installation', { title: '🔧 Installation Options' });
 
installSection.addRow(row => {
row.addDropdown('installType', {
label: 'Installation Type',
options: [
{ id: 'new', name: 'New Installation' },
{ id: 'replacement', name: 'System Replacement' },
{ id: 'expansion', name: 'Expansion of Existing System' }
],
defaultValue: 'new',
isRequired: true
}, '1fr');
row.addDropdown('waterSource', {
label: 'Water Source',
options: [
{ id: 'municipal', name: 'Municipal Water' },
{ id: 'well', name: 'Well Water (+$500 pump)' },
{ id: 'rainwater', name: 'Rainwater Collection (+$800)' }
],
defaultValue: 'municipal',
isRequired: true
}, '1fr');
});
 
installSection.addRow(row => {
row.addCheckbox('backflowPreventer', {
label: 'Backflow Preventer (+$250)',
defaultValue: true
}, '1fr');
row.addCheckbox('pressureRegulator', {
label: 'Pressure Regulator (+$150)',
defaultValue: true
}, '1fr');
});
 
// Additional Features Section
const addonsSection = form.addSubform('addons', { title: '✨ Additional Features' });
 
addonsSection.addRow(row => {
row.addCheckbox('rainSensor', {
label: 'Rain Sensor (+$75)',
defaultValue: true
}, '1fr');
row.addCheckbox('soilSensor', {
label: 'Soil Moisture Sensors (+$200)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('winterization', {
label: 'Winterization Service (+$125)',
defaultValue: true
}, '1fr');
row.addCheckbox('maintenancePlan', {
label: 'Annual Maintenance Plan (+$250/year)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('dripConversion', {
label: 'Convert Existing Beds to Drip (+$400)',
defaultValue: false,
isVisible: () => {
const type = systemSection.radioButton('systemType')?.value();
return type !== 'drip' && type !== 'combined';
}
}, '1fr');
row.addCheckbox('flowerBedZone', {
label: 'Dedicated Flower Bed Zone (+$300)',
defaultValue: false
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Helper to calculate travel fee
const getTravelFee = () => {
const addressField = locationSection.address('propertyAddress');
const miles = addressField?.distance();
if (miles == null || miles <= 25) return 0;
if (miles <= 50) return 100;
if (miles <= 75) return 200;
return 300;
};
 
// Price Summary Section
const summarySection = form.addSubform('summary', { title: '💰 Cost Breakdown', isCollapsible: false });
 
summarySection.addRow(row => {
row.addPriceDisplay('systemCost', {
label: 'Irrigation System',
computedValue: () => {
const systemType = systemSection.radioButton('systemType')?.value() || 'sprinkler-premium';
const zones = systemSection.slider('zones')?.value() || 5;
const soilType = propertySection.dropdown('soilType')?.value() || 'loam';
 
const baseCost = systemBaseCosts[systemType] || 2500;
const zoneCost = (costPerZone[systemType] || 500) * zones;
 
const soilMultiplier: Record<string, number> = {
'sandy': 0.9, 'loam': 1.0, 'clay': 1.1, 'rocky': 1.3
};
 
return Math.round((baseCost + zoneCost) * (soilMultiplier[soilType] || 1.0));
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('controllerCost', {
label: 'Controller & Sensors',
computedValue: () => {
const controller = systemSection.radioButton('controllerType')?.value() || 'smart';
let total = controllerPricing[controller] || 350;
 
if (addonsSection.checkbox('rainSensor')?.value()) total += 75;
if (addonsSection.checkbox('soilSensor')?.value()) total += 200;
 
return total;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('installationCost', {
label: 'Installation & Equipment',
computedValue: () => {
let total = 0;
 
const waterSource = installSection.dropdown('waterSource')?.value() || 'municipal';
if (waterSource === 'well') total += 500;
if (waterSource === 'rainwater') total += 800;
 
if (installSection.checkbox('backflowPreventer')?.value()) total += 250;
if (installSection.checkbox('pressureRegulator')?.value()) total += 150;
 
const installType = installSection.dropdown('installType')?.value() || 'new';
if (installType === 'replacement') total += 300;
 
return total;
},
variant: 'default',
prefix: '+'
}, '1fr');
row.addPriceDisplay('addonsCost', {
label: 'Additional Features',
computedValue: () => {
let total = 0;
if (addonsSection.checkbox('winterization')?.value()) total += 125;
if (addonsSection.checkbox('maintenancePlan')?.value()) total += 250;
if (addonsSection.checkbox('dripConversion')?.value()) total += 400;
if (addonsSection.checkbox('flowerBedZone')?.value()) total += 300;
return total;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('travelFee', {
label: 'Travel Fee',
computedValue: () => getTravelFee(),
variant: 'default',
prefix: '+',
isVisible: () => getTravelFee() > 0
});
});
 
const finalSection = form.addSubform('final', {
title: '🌱 Your Estimate',
isCollapsible: false,
sticky: 'bottom'
});
 
finalSection.addRow(row => {
row.addPriceDisplay('totalCost', {
label: 'Total Estimated Cost',
computedValue: () => {
// System cost
const systemType = systemSection.radioButton('systemType')?.value() || 'sprinkler-premium';
const zones = systemSection.slider('zones')?.value() || 5;
const soilType = propertySection.dropdown('soilType')?.value() || 'loam';
 
const baseCost = systemBaseCosts[systemType] || 2500;
const zoneCost = (costPerZone[systemType] || 500) * zones;
const soilMultiplier: Record<string, number> = {
'sandy': 0.9, 'loam': 1.0, 'clay': 1.1, 'rocky': 1.3
};
const systemCost = Math.round((baseCost + zoneCost) * (soilMultiplier[soilType] || 1.0));
 
// Controller cost
const controller = systemSection.radioButton('controllerType')?.value() || 'smart';
let controllerCost = controllerPricing[controller] || 350;
if (addonsSection.checkbox('rainSensor')?.value()) controllerCost += 75;
if (addonsSection.checkbox('soilSensor')?.value()) controllerCost += 200;
 
// Installation cost
let installCost = 0;
const waterSource = installSection.dropdown('waterSource')?.value() || 'municipal';
if (waterSource === 'well') installCost += 500;
if (waterSource === 'rainwater') installCost += 800;
if (installSection.checkbox('backflowPreventer')?.value()) installCost += 250;
if (installSection.checkbox('pressureRegulator')?.value()) installCost += 150;
const installType = installSection.dropdown('installType')?.value() || 'new';
if (installType === 'replacement') installCost += 300;
 
// Addons cost
let addonsCost = 0;
if (addonsSection.checkbox('winterization')?.value()) addonsCost += 125;
if (addonsSection.checkbox('maintenancePlan')?.value()) addonsCost += 250;
if (addonsSection.checkbox('dripConversion')?.value()) addonsCost += 400;
if (addonsSection.checkbox('flowerBedZone')?.value()) addonsCost += 300;
 
const travelFee = getTravelFee();
 
return systemCost + controllerCost + installCost + addonsCost + travelFee;
},
variant: 'large'
}, '1fr');
row.addPriceDisplay('perZone', {
label: 'Cost Per Zone',
computedValue: () => {
const systemType = systemSection.radioButton('systemType')?.value() || 'sprinkler-premium';
const zones = systemSection.slider('zones')?.value() || 5;
const soilType = propertySection.dropdown('soilType')?.value() || 'loam';
 
const baseCost = systemBaseCosts[systemType] || 2500;
const zoneCost = (costPerZone[systemType] || 500) * zones;
const soilMultiplier: Record<string, number> = {
'sandy': 0.9, 'loam': 1.0, 'clay': 1.1, 'rocky': 1.3
};
const systemCost = Math.round((baseCost + zoneCost) * (soilMultiplier[soilType] || 1.0));
 
return Math.round(systemCost / zones);
},
variant: 'default',
suffix: '/zone'
}, '1fr');
});
 
finalSection.addRow(row => {
row.addTextPanel('savings', {
computedValue: () => {
const controller = systemSection.radioButton('controllerType')?.value() || 'smart';
let savings = 'Standard water savings.';
if (controller === 'smart') savings = 'Smart controller can save 20-40% on water bills.';
if (controller === 'premium') savings = 'Premium smart system can save 30-50% on water bills.';
return savings;
},
customStyles: { 'font-size': '0.95rem', 'color': '#059669', 'font-weight': '500' }
});
});
 
finalSection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'Estimates based on average costs. Final price depends on site conditions, existing landscaping, and local labor rates. On-site assessment required.',
customStyles: { 'font-size': '0.85rem', 'color': '#64748b', 'font-style': 'italic' }
});
});
 
form.configureSubmitButton({
label: 'Get Free Quote'
});
}
 

Frequently Asked Questions

Can I customize the system options?

Yes. You can add specific sprinkler heads, controller brands, and features you install, along with your actual pricing for each option.

Does it support different property sizes?

Yes. The calculator scales based on yard size and number of zones. You can set minimum and maximum zone counts based on your service capabilities.

Can I include drip irrigation options?

Yes. The template includes drip irrigation as a standalone option and as part of combined systems. You can customize pricing per zone.

How do I handle smart controllers?

The calculator includes basic, smart, and premium controller tiers. You can add specific brands like Rachio, Hunter, or Rain Bird with actual pricing.

Can I collect customer information for follow-up?

Yes. The submit button captures contact details for scheduling site assessments. Connect to your CRM via webhooks.