{"id":143,"date":"2022-10-20T20:44:47","date_gmt":"2022-10-20T20:44:47","guid":{"rendered":"https:\/\/www.datarecon.com\/?page_id=143"},"modified":"2022-10-20T20:44:47","modified_gmt":"2022-10-20T20:44:47","slug":"savings-calculator","status":"publish","type":"page","link":"https:\/\/www.datarecon.com\/?page_id=143","title":{"rendered":"Savings Calculator"},"content":{"rendered":"\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-c020569f wp-block-group-is-layout-flex\">\n<p class=\"wp-block-paragraph\">Use this calculator to determine how much time and money you can save by using Data Recon to streamline your inspection process. Enter the information below to instantly see the savings. <\/p>\n\n\n\n        <style>\n            input[type=number]{\n                padding:6px;\n                font-size:22px;\n                font-weight:500;\n                font-family:\"DM Sans\", sans-serif;\n                color:#466990;\n                height:34px;\n            }\n            input[type=checkbox]{\n                height: 0;\n                width: 0;\n                visibility: hidden;\n            }\n            label.toggle-label {\n                cursor: pointer;\n                text-indent: -9999px;\n                width: 64px;\n                height: 36px;\n                background: #ccc;\n                display: block;\n                border-radius: 36px;\n                position: relative;\n            }\n            label.toggle-label:after {\n                content: '';\n                position: absolute;\n                top: 5px;\n                left: 5px;\n                width: 26px; \/* 10px less than .toggle-label height *\/\n                height: 26px; \/* 10px less than .toggle-label height *\/\n                background: #fff;\n                border-radius: 26px;\n                transition: 0.3s;\n            }\n            input:checked + label.toggle-label {\n                background:#2196F3;\n            }\n            input:checked + label.toggle-label:after {\n                left: calc(100% - 5px);\n                transform: translateX(-100%);\n            }\n            label.toggle-label:active:after {\n                width: 24px;\n            }\n            input[type=number]::-webkit-inner-spin-button,\n            input[type=number]::-webkit-outer-spin-button {\n                opacity: 1;\n            }\n            .calc-result {\n                padding: 6px;\n                font-size: 22px;\n                font-weight: 500;\n                width:284px;\n                border:solid 1px #767676;\n            }\n        <\/style>\n        <script src=\"https:\/\/code.jquery.com\/jquery-3.6.1.min.js\" integrity=\"sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=\" crossorigin=\"anonymous\"><\/script>\n        <script>\n            function calculateSavings() {\n                var photo_hours;\n                var tmp_decimals_formated;\n                var base_hours_inspection = .50; \/\/ hours per inspection\n                var base_hours_photo = 0.16; \/\/ hours per photo\n                var add_hours_sorting = 0.33; \/\/ additional hours per photo if sorting is involved.\n                var add_hours_computation = 0.07;\n                var hourly_rate = 100; \/\/ dollars per hour.\n                var result_hours_saved = 0;\n                var result_cost_saved = 0;\n                var calc_computations = false;\n                var calc_sorting = false;\n                var calc_number_of_inspections = $( \"#calc_number_of_inspections\" ).val();\n                var calc_photos_per_inspection = $( \"#calc_photos_per_inspection\" ).val();\n                if ($( \"#calc_computations\" ).is(\":checked\")) {\n                    calc_computations = true;\n                }\n                if ($( \"#calc_sorting\" ).is(\":checked\")) {\n                    calc_sorting = true;\n                }\n                \/\/ Do calculation.\n                if (calc_number_of_inspections > 0) {\n                    result_hours_saved = calc_number_of_inspections * base_hours_inspection;\n                    if (calc_computations) {\n                        result_hours_saved += calc_number_of_inspections * add_hours_computation;\n                    }\n                    \/\/ If there is any data sorting or management use the base photo hours plus\n                    \/\/ the additional hours -- otherwise just the base hours.\n                    if (calc_sorting) {\n                        photo_hours = base_hours_photo + add_hours_sorting;\n                    } else {\n                        photo_hours = base_hours_photo;\n                    }\n\n\n\n                    result_hours_saved += calc_photos_per_inspection * calc_number_of_inspections * photo_hours;\n                    result_cost_saved = hourly_rate * result_hours_saved;\n                    result_hours_saved = result_hours_saved.toFixed(0);\n                    result_cost_saved = result_cost_saved.toFixed(0);\n                    tmp_decimals_formated= result_hours_saved.toLocaleString(undefined, { maximumFractionDigits: 2 });\n                    result_hours_saved = String(tmp_decimals_formated).replace(\/\\B(?=(\\d{3})+(?!\\d))\/g, \",\");\n                    tmp_decimals_formated = result_cost_saved.toLocaleString(undefined, { maximumFractionDigits: 2 });\n                    result_cost_saved = \"$\" + String(tmp_decimals_formated).replace(\/\\B(?=(\\d{3})+(?!\\d))\/g, \",\");\n\n\n                    console.log(photo_hours);\n\n\n                }\n                $( \"#calc_result_hours_saved\" ).html(result_hours_saved);\n                $( \"#calc_result_cost_saved\" ).html(result_cost_saved);\n            }\n            $(function() {\n                \/\/ Set some form defaults.\n                $( \"#calc_number_of_inspections\" ).val(\"1000\");\n                $( \"#calc_photos_per_inspection\" ).val(\"50\");\n                $( \"#calc_computations\" ).prop( \"checked\", true );\n                $( \"#calc_sorting\" ).prop( \"checked\", true );\n                calculateSavings();\n                $( \"#calc_savings input\" ).on(\"keyup mouseup change\", function(e) {\n                    calculateSavings();\n                });\n            });\n        <\/script>\n        <form id=\"calc_savings\">\n\n                    <!-- calc input -->\n                    <p>\n                        Number of inspections <br \/>\n                        <input type=\"number\" id=\"calc_number_of_inspections\" \/>\n                    <\/p>\n                    <p>\n                        Photos per Inspection <br \/>\n                        <input type=\"number\" id=\"calc_photos_per_inspection\" \/>\n                    <\/p>\n                    <p>\n                        Any computations? (i.e. element level)\n                        <input type=\"checkbox\" id=\"calc_computations\" \/><label class=\"toggle-label\" for=\"calc_computations\"><\/label>\n                    <\/p>\n                    <p>\n                        Any data sorting or management?\n                        <input type=\"checkbox\" id=\"calc_sorting\" \/><label class=\"toggle-label\" for=\"calc_sorting\"><\/label>\n                    <\/p>\n        <\/form>\n\n\n                    <!-- results -->\n                    <div>\n                        Hours Saved <br \/>\n                    <div class=\"calc-result\" id=\"calc_result_hours_saved\"><\/div>\n\n\n                        <br \/>  \n\n                        Cost Savings <br \/>\n                    <div class=\"calc-result\" id=\"calc_result_cost_saved\"><\/div>\n                    <\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-c020569f wp-block-group-is-layout-flex\">\n<p class=\"has-small-font-size wp-block-paragraph\">Note: This calculator utilizes industry accepted assumptions and is for informational purposes only. Your individual savings may differ.<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Use this calculator to determine how much time and money you can save by using Data Recon to streamline your inspection process. Enter the information below to instantly see the savings. Number of inspections Photos per Inspection Any computations? (i.e. element level) Any data sorting or management? Hours Saved Cost Savings Note: This calculator utilizes [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"data-recon-template","meta":{"footnotes":""},"class_list":["post-143","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.datarecon.com\/index.php?rest_route=\/wp\/v2\/pages\/143","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.datarecon.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.datarecon.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.datarecon.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.datarecon.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=143"}],"version-history":[{"count":14,"href":"https:\/\/www.datarecon.com\/index.php?rest_route=\/wp\/v2\/pages\/143\/revisions"}],"predecessor-version":[{"id":158,"href":"https:\/\/www.datarecon.com\/index.php?rest_route=\/wp\/v2\/pages\/143\/revisions\/158"}],"wp:attachment":[{"href":"https:\/\/www.datarecon.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=143"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}