{"id":342,"date":"2024-09-09T17:45:06","date_gmt":"2024-09-09T12:15:06","guid":{"rendered":"https:\/\/kpstructures.in\/Tools\/?p=342"},"modified":"2024-09-09T17:47:09","modified_gmt":"2024-09-09T12:17:09","slug":"gravel-calculator","status":"publish","type":"post","link":"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/","title":{"rendered":"Gravel Calculator"},"content":{"rendered":"\n<p>This Gravel Calculator Helps To Calculate the volume and weight of gravel.<\/p>\n\n\n\n<!-- Custom HTML Block Code for WordPress -->\n\n<div class=\"gravel-calculator\">\n    <div class=\"form-group\">\n        <label for=\"length\">Length:<\/label>\n        <input type=\"number\" id=\"length\" step=\"0.01\">\n        <select id=\"length-unit\">\n            <option value=\"feet\" selected>Feet<\/option>\n            <option value=\"inches\">Inches<\/option>\n            <option value=\"meters\">Meters<\/option>\n            <option value=\"centimeters\">Centimeters<\/option>\n            <option value=\"kilometers\">Kilometers<\/option>\n        <\/select>\n    <\/div>\n    <div class=\"form-group\">\n        <label for=\"width\">Width:<\/label>\n        <input type=\"number\" id=\"width\" step=\"0.01\">\n        <select id=\"width-unit\">\n            <option value=\"feet\" selected>Feet<\/option>\n            <option value=\"inches\">Inches<\/option>\n            <option value=\"meters\">Meters<\/option>\n            <option value=\"centimeters\">Centimeters<\/option>\n            <option value=\"kilometers\">Kilometers<\/option>\n        <\/select>\n    <\/div>\n    <div class=\"form-group\">\n        <label for=\"depth\">Depth:<\/label>\n        <input type=\"number\" id=\"depth\" step=\"0.01\">\n        <select id=\"depth-unit\">\n            <option value=\"feet\" selected>Feet<\/option>\n            <option value=\"inches\">Inches<\/option>\n            <option value=\"meters\">Meters<\/option>\n            <option value=\"centimeters\">Centimeters<\/option>\n            <option value=\"kilometers\">Kilometers<\/option>\n        <\/select>\n    <\/div>\n    <button class=\"calculate-btn\" onclick=\"calculateGravel()\">Calculate<\/button>\n    <button class=\"reset-btn\" onclick=\"resetForm()\">Reset<\/button>\n    <div class=\"result\" id=\"result\"><\/div>\n<\/div>\n\n<style>\n    .gravel-calculator {\n        font-family: Arial, sans-serif;\n        margin: 20px;\n        padding: 20px;\n        background-color: #fff;\n        border-radius: 8px;\n        box-shadow: 0 0 10px rgba(0,0,0,0.1);\n    }\n    .form-group {\n        margin-bottom: 15px;\n    }\n    label {\n        display: block;\n        margin-bottom: 5px;\n        font-weight: bold;\n    }\n    input, select {\n        width: calc(100% - 130px);\n        padding: 8px;\n        margin-right: 10px;\n        box-sizing: border-box;\n    }\n    select {\n        width: 150px;\n    }\n    button {\n        padding: 10px 15px;\n        border: none;\n        border-radius: 5px;\n        cursor: pointer;\n        font-size: 16px;\n    }\n    .calculate-btn {\n        background-color: #007bff;\n        color: #fff;\n    }\n    .calculate-btn:hover {\n        background-color: #0056b3;\n    }\n    .reset-btn {\n        background-color: #dc3545;\n        color: #fff;\n        margin-left: 10px;\n    }\n    .reset-btn:hover {\n        background-color: #c82333;\n    }\n    .result {\n        margin-top: 20px;\n        padding: 20px;\n        border: 1px solid #ddd;\n        border-radius: 8px;\n        background-color: #e9ecef;\n        box-shadow: 0 0 10px rgba(0,0,0,0.1);\n    }\n    .result h2 {\n        margin-top: 0;\n    }\n    .result ul {\n        list-style-type: none;\n        padding: 0;\n    }\n    .result ul li {\n        margin: 10px 0;\n        font-size: 18px;\n    }\n    .calculation-detail {\n        margin: 10px 0;\n        font-size: 16px;\n        color: #333;\n    }\n<\/style>\n\n<script>\n    function convertToFeet(value, unit) {\n        switch (unit) {\n            case 'inches':\n                return value \/ 12;\n            case 'meters':\n                return value * 3.28084;\n            case 'centimeters':\n                return value \/ 30.48;\n            case 'kilometers':\n                return value * 3280.84;\n            default: \/\/ 'feet'\n                return value;\n        }\n    }\n\n    function calculateGravel() {\n        const length = parseFloat(document.getElementById('length').value);\n        const lengthUnit = document.getElementById('length-unit').value;\n        const width = parseFloat(document.getElementById('width').value);\n        const widthUnit = document.getElementById('width-unit').value;\n        const depth = parseFloat(document.getElementById('depth').value);\n        const depthUnit = document.getElementById('depth-unit').value;\n\n        if (isNaN(length) || isNaN(width) || isNaN(depth) || length <= 0 || width <= 0 || depth <= 0) {\n            document.getElementById('result').innerHTML = '<p style=\"color: red;\">Please enter valid positive numbers for all fields.<\/p>';\n            return;\n        }\n\n        const lengthInFeet = convertToFeet(length, lengthUnit);\n        const widthInFeet = convertToFeet(width, widthUnit);\n        const depthInFeet = convertToFeet(depth, depthUnit);\n\n        const volumeCubicFeet = lengthInFeet * widthInFeet * depthInFeet;\n        const volumeCubicMeters = volumeCubicFeet * 0.0283168;\n        const volumeCubicYards = volumeCubicFeet \/ 27;\n\n        const density = 1.5;\n        const weightTons = volumeCubicYards * density;\n        const weightKg = weightTons * 1000;\n        const weightMetricTons = weightKg \/ 1000;\n\n        document.getElementById('result').innerHTML = `\n            <h2>Results<\/h2>\n            <p><strong>Volume Calculations:<\/strong><\/p>\n            <div class=\"calculation-detail\">\n                <p>1. Convert all dimensions to feet:<\/p>\n                <ul>\n                    <li>Length: ${length} ${lengthUnit} = ${lengthInFeet.toFixed(2)} feet<\/li>\n                    <li>Width: ${width} ${widthUnit} = ${widthInFeet.toFixed(2)} feet<\/li>\n                    <li>Depth: ${depth} ${depthUnit} = ${depthInFeet.toFixed(2)} feet<\/li>\n                <\/ul>\n                <p>2. Calculate the volume in cubic feet:<\/p>\n                <p><strong>Volume (cubic feet) = Length (ft) \u00d7 Width (ft) \u00d7 Depth (ft)<\/strong><\/p>\n                <p>${lengthInFeet.toFixed(2)} \u00d7 ${widthInFeet.toFixed(2)} \u00d7 ${depthInFeet.toFixed(2)} = ${volumeCubicFeet.toFixed(2)} cubic feet<\/p>\n                \n                <p>3. Convert volume to cubic meters and cubic yards:<\/p>\n                <p><strong>Volume (cubic meters) = Volume (cubic feet) \u00d7 0.0283168<\/strong><\/p>\n                <p>${volumeCubicFeet.toFixed(2)} \u00d7 0.0283168 = ${volumeCubicMeters.toFixed(2)} cubic meters<\/p>\n\n                <p><strong>Volume (cubic yards) = Volume (cubic feet) \u00f7 27<\/strong><\/p>\n                <p>${volumeCubicFeet.toFixed(2)} \u00f7 27 = ${volumeCubicYards.toFixed(2)} cubic yards<\/p>\n            <\/div>\n            \n            <p><strong>Weight Calculations:<\/strong><\/p>\n            <div class=\"calculation-detail\">\n                <p>1. Convert volume to tons:<\/p>\n                <p><strong>Weight (tons) = Volume (cubic yards) \u00d7 Density (tons per cubic yard)<\/strong><\/p>\n                <p>${volumeCubicYards.toFixed(2)} \u00d7 ${density.toFixed(2)} = ${weightTons.toFixed(2)} tons<\/p>\n\n                <p>2. Convert weight to kilograms and metric tons:<\/p>\n                <p><strong>Weight (kg) = Weight (tons) \u00d7 1000<\/strong><\/p>\n                <p>${weightTons.toFixed(2)} \u00d7 1000 = ${weightKg.toFixed(2)} kg<\/p>\n\n                <p><strong>Weight (metric tons) = Weight (kg) \u00f7 1000<\/strong><\/p>\n                <p>${weightKg.toFixed(2)} \u00f7 1000 = ${weightMetricTons.toFixed(2)} metric tons<\/p>\n            <\/div>\n        `;\n    }\n\n    function resetForm() {\n        document.getElementById('length').value = '';\n        document.getElementById('width').value = '';\n        document.getElementById('depth').value = '';\n        document.getElementById('length-unit').value = 'feet';\n        document.getElementById('width-unit').value = 'feet';\n        document.getElementById('depth-unit').value = 'feet';\n        document.getElementById('result').innerHTML = '';\n    }\n<\/script>\n\n\n\n\n<h3 class=\"wp-block-heading\">Simplify Your Gravel Calculations with Our Advanced Gravel Calculator Tool<\/h3>\n\n\n\n<p>Are you involved in a construction or landscaping project and need to accurately measure the amount of gravel required? Look no further than our advanced Gravel Calculator Tool.<\/p>\n\n\n\n<p>Designed to simplify your calculations, this tool ensures that you get precise results for any gravel-related needs.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Our Gravel Calculator allows you to input dimensions in various units, including feet, meters, inches, and centimeters.<\/li>\n\n\n\n<li>Whether you\u2019re working on a small garden project or a large construction site, you can easily convert measurements to fit your requirements.<\/li>\n\n\n\n<li>Simply enter the length, width, and depth of the area where you need gravel, select your preferred unit of measurement, and our tool will handle the rest.<\/li>\n<\/ul>\n\n\n\n<p>With just a few clicks, you will receive detailed results in cubic feet, cubic meters, and cubic yards, making it easier to understand the volume of gravel needed.<\/p>\n\n\n\n<p>Additionally, our tool calculates the weight of the gravel in kilograms and metric tons, based on a standard density of 1.5 tons per cubic yard.<\/p>\n\n\n\n<p>This comprehensive approach ensures that you have all the information necessary for purchasing and transporting the right amount of gravel.<\/p>\n\n\n\n<p>Our Gravel Calculator is ideal for various applications, from home landscaping projects to large-scale construction endeavors.<\/p>\n\n\n\n<p>By providing clear, step-by-step calculations and conversions, it helps you avoid costly mistakes and ensures that your project stays on track.<\/p>\n\n\n\n<p>Whether you&#8217;re a DIY enthusiast or a professional contractor, our tool is designed to be user-friendly and efficient.<\/p>\n\n\n\n<p>Experience the convenience and accuracy of our Gravel Calculator today and streamline your project planning. Save time, reduce errors, and get your gravel calculations right the first time.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/kpstructures.in\/Tools\/excavation-calculator\/\">Excavation Calculator<\/a><\/div>\n<\/div>\n\n\n\n<p>Visit Our Other Platforms<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/kpstructures.in\/askcivil\/\">Q&amp;A Website<\/a><\/div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/www.kpstructures.in\/\">Blog Website<\/a><\/div>\n<\/div>\n\n\n\n<p>Thank You For Visiting&#8230;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This Gravel Calculator Helps To Calculate the volume and weight of gravel. Length: FeetInchesMetersCentimetersKilometers Width: FeetInchesMetersCentimetersKilometers Depth: FeetInchesMetersCentimetersKilometers Calculate Reset Simplify Your Gravel Calculations with Our Advanced Gravel Calculator Tool Are you involved in a construction or landscaping project and need to accurately measure the amount of gravel required? Look no further than our advanced &#8230; <a title=\"Gravel Calculator\" class=\"read-more\" href=\"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/\" aria-label=\"Read more about Gravel Calculator\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7,100],"tags":[102,101],"class_list":["post-342","post","type-post","status-publish","format-standard","hentry","category-conversion-tools","category-gravel-calculator","tag-calculate-the-volume-and-weight-of-gravel","tag-gravel-calculator"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Gravel Calculator - Civil Conversion Tools<\/title>\n<meta name=\"description\" content=\"Calculate the volume and weight of gravel with ease using our comprehensive Gravel Calculator, Perfect for construction and...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Gravel Calculator - Civil Conversion Tools\" \/>\n<meta property=\"og:description\" content=\"Calculate the volume and weight of gravel with ease using our comprehensive Gravel Calculator, Perfect for construction and...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/\" \/>\n<meta property=\"og:site_name\" content=\"Civil Conversion Tools\" \/>\n<meta property=\"article:published_time\" content=\"2024-09-09T12:15:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-09T12:17:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/kpstructures.in\/Tools\/wp-content\/uploads\/2024\/10\/siteicon1200x675.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"KPSTRUCTURES\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"KPSTRUCTURES\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/\"},\"author\":{\"name\":\"KPSTRUCTURES\",\"@id\":\"https:\/\/kpstructures.in\/Tools\/#\/schema\/person\/8015942c6c6f6015000a482d5aeac32b\"},\"headline\":\"Gravel Calculator\",\"datePublished\":\"2024-09-09T12:15:06+00:00\",\"dateModified\":\"2024-09-09T12:17:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/\"},\"wordCount\":328,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/kpstructures.in\/Tools\/#organization\"},\"keywords\":[\"Calculate the volume and weight of gravel\",\"Gravel Calculator\"],\"articleSection\":[\"Conversion Tools\",\"Gravel Calculator\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/\",\"url\":\"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/\",\"name\":\"Gravel Calculator - Civil Conversion Tools\",\"isPartOf\":{\"@id\":\"https:\/\/kpstructures.in\/Tools\/#website\"},\"datePublished\":\"2024-09-09T12:15:06+00:00\",\"dateModified\":\"2024-09-09T12:17:09+00:00\",\"description\":\"Calculate the volume and weight of gravel with ease using our comprehensive Gravel Calculator, Perfect for construction and...\",\"breadcrumb\":{\"@id\":\"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/kpstructures.in\/Tools\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Gravel Calculator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/kpstructures.in\/Tools\/#website\",\"url\":\"https:\/\/kpstructures.in\/Tools\/\",\"name\":\"Civil Conversion Tools\",\"description\":\"All Required  Construction And Civil Engineering Tools\",\"publisher\":{\"@id\":\"https:\/\/kpstructures.in\/Tools\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/kpstructures.in\/Tools\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/kpstructures.in\/Tools\/#organization\",\"name\":\"Civil Conversion Tools\",\"url\":\"https:\/\/kpstructures.in\/Tools\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kpstructures.in\/Tools\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/kpstructures.in\/Tools\/wp-content\/uploads\/2024\/10\/96.png\",\"contentUrl\":\"https:\/\/kpstructures.in\/Tools\/wp-content\/uploads\/2024\/10\/96.png\",\"width\":96,\"height\":96,\"caption\":\"Civil Conversion Tools\"},\"image\":{\"@id\":\"https:\/\/kpstructures.in\/Tools\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/kpstructures.in\/Tools\/#\/schema\/person\/8015942c6c6f6015000a482d5aeac32b\",\"name\":\"KPSTRUCTURES\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kpstructures.in\/Tools\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ff908dc99adabba657a12ff1c13106a04e0763a059024128f6c84730d9161177?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ff908dc99adabba657a12ff1c13106a04e0763a059024128f6c84730d9161177?s=96&d=mm&r=g\",\"caption\":\"KPSTRUCTURES\"},\"sameAs\":[\"https:\/\/kpstructures.in\/Tools\"],\"url\":\"https:\/\/kpstructures.in\/Tools\/author\/kpstructurestools\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Gravel Calculator - Civil Conversion Tools","description":"Calculate the volume and weight of gravel with ease using our comprehensive Gravel Calculator, Perfect for construction and...","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/","og_locale":"en_US","og_type":"article","og_title":"Gravel Calculator - Civil Conversion Tools","og_description":"Calculate the volume and weight of gravel with ease using our comprehensive Gravel Calculator, Perfect for construction and...","og_url":"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/","og_site_name":"Civil Conversion Tools","article_published_time":"2024-09-09T12:15:06+00:00","article_modified_time":"2024-09-09T12:17:09+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/kpstructures.in\/Tools\/wp-content\/uploads\/2024\/10\/siteicon1200x675.png","type":"image\/png"}],"author":"KPSTRUCTURES","twitter_card":"summary_large_image","twitter_misc":{"Written by":"KPSTRUCTURES","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/#article","isPartOf":{"@id":"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/"},"author":{"name":"KPSTRUCTURES","@id":"https:\/\/kpstructures.in\/Tools\/#\/schema\/person\/8015942c6c6f6015000a482d5aeac32b"},"headline":"Gravel Calculator","datePublished":"2024-09-09T12:15:06+00:00","dateModified":"2024-09-09T12:17:09+00:00","mainEntityOfPage":{"@id":"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/"},"wordCount":328,"commentCount":1,"publisher":{"@id":"https:\/\/kpstructures.in\/Tools\/#organization"},"keywords":["Calculate the volume and weight of gravel","Gravel Calculator"],"articleSection":["Conversion Tools","Gravel Calculator"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kpstructures.in\/Tools\/gravel-calculator\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/","url":"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/","name":"Gravel Calculator - Civil Conversion Tools","isPartOf":{"@id":"https:\/\/kpstructures.in\/Tools\/#website"},"datePublished":"2024-09-09T12:15:06+00:00","dateModified":"2024-09-09T12:17:09+00:00","description":"Calculate the volume and weight of gravel with ease using our comprehensive Gravel Calculator, Perfect for construction and...","breadcrumb":{"@id":"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kpstructures.in\/Tools\/gravel-calculator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kpstructures.in\/Tools\/gravel-calculator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/kpstructures.in\/Tools\/"},{"@type":"ListItem","position":2,"name":"Gravel Calculator"}]},{"@type":"WebSite","@id":"https:\/\/kpstructures.in\/Tools\/#website","url":"https:\/\/kpstructures.in\/Tools\/","name":"Civil Conversion Tools","description":"All Required  Construction And Civil Engineering Tools","publisher":{"@id":"https:\/\/kpstructures.in\/Tools\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kpstructures.in\/Tools\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/kpstructures.in\/Tools\/#organization","name":"Civil Conversion Tools","url":"https:\/\/kpstructures.in\/Tools\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kpstructures.in\/Tools\/#\/schema\/logo\/image\/","url":"https:\/\/kpstructures.in\/Tools\/wp-content\/uploads\/2024\/10\/96.png","contentUrl":"https:\/\/kpstructures.in\/Tools\/wp-content\/uploads\/2024\/10\/96.png","width":96,"height":96,"caption":"Civil Conversion Tools"},"image":{"@id":"https:\/\/kpstructures.in\/Tools\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/kpstructures.in\/Tools\/#\/schema\/person\/8015942c6c6f6015000a482d5aeac32b","name":"KPSTRUCTURES","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kpstructures.in\/Tools\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ff908dc99adabba657a12ff1c13106a04e0763a059024128f6c84730d9161177?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ff908dc99adabba657a12ff1c13106a04e0763a059024128f6c84730d9161177?s=96&d=mm&r=g","caption":"KPSTRUCTURES"},"sameAs":["https:\/\/kpstructures.in\/Tools"],"url":"https:\/\/kpstructures.in\/Tools\/author\/kpstructurestools\/"}]}},"_links":{"self":[{"href":"https:\/\/kpstructures.in\/Tools\/wp-json\/wp\/v2\/posts\/342","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kpstructures.in\/Tools\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kpstructures.in\/Tools\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kpstructures.in\/Tools\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kpstructures.in\/Tools\/wp-json\/wp\/v2\/comments?post=342"}],"version-history":[{"count":2,"href":"https:\/\/kpstructures.in\/Tools\/wp-json\/wp\/v2\/posts\/342\/revisions"}],"predecessor-version":[{"id":344,"href":"https:\/\/kpstructures.in\/Tools\/wp-json\/wp\/v2\/posts\/342\/revisions\/344"}],"wp:attachment":[{"href":"https:\/\/kpstructures.in\/Tools\/wp-json\/wp\/v2\/media?parent=342"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kpstructures.in\/Tools\/wp-json\/wp\/v2\/categories?post=342"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kpstructures.in\/Tools\/wp-json\/wp\/v2\/tags?post=342"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}