{"id":319,"date":"2024-09-03T12:59:41","date_gmt":"2024-09-03T07:29:41","guid":{"rendered":"https:\/\/kpstructures.in\/Tools\/?p=319"},"modified":"2024-10-07T14:23:19","modified_gmt":"2024-10-07T08:53:19","slug":"pipe-weight-calculator","status":"publish","type":"post","link":"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/","title":{"rendered":"Pipe Weight Calculator"},"content":{"rendered":"\n<p>This Pipe Weight Calculator help you to find weight in one click.<\/p>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Pipe Weight Calculator<\/title>\n    <style>\n        #pipeForm {\n            max-width: 500px;\n            margin: auto;\n        }\n        label {\n            display: block;\n            margin: 10px 0 5px;\n        }\n        input, select {\n            width: 100%;\n            padding: 8px;\n            margin-bottom: 10px;\n            box-sizing: border-box;\n        }\n        button {\n            padding: 10px 15px;\n            color: white;\n            border: none;\n            cursor: pointer;\n            display: block;\n            width: 100%;\n            margin-bottom: 10px;\n            box-sizing: border-box;\n            font-size: 16px;\n            font-weight: bold;\n        }\n        .calculate-btn {\n            background-color: skyblue;\n        }\n        .calculate-btn:hover {\n            background-color: deepskyblue;\n        }\n        .reset-btn {\n            background-color: red;\n        }\n        .reset-btn:hover {\n            background-color: darkred;\n        }\n        .result {\n            margin-top: 20px;\n            padding: 20px;\n            border: 2px solid #ddd;\n            border-radius: 8px;\n            background-color: #f9f9f9;\n            text-align: left;\n        }\n        .result h2 {\n            color: #333;\n            font-size: 1.5em;\n            margin-bottom: 10px;\n        }\n        .result p {\n            font-size: 1.1em;\n            margin: 5px 0;\n        }\n        .result strong {\n            color: #555;\n        }\n    <\/style>\n<\/head>\n<body>\n    <!-- Pipe Weight Calculator -->\n    <form id=\"pipeForm\">\n        <label for=\"diameter\">Diameter (D) in mm:<\/label>\n        <input type=\"number\" id=\"diameter\" step=\"0.1\" required>\n        \n        <label for=\"thickness\">Thickness (t) in mm:<\/label>\n        <input type=\"number\" id=\"thickness\" step=\"0.1\" required>\n        \n        <label for=\"length\">Length (L) in meters:<\/label>\n        <input type=\"number\" id=\"length\" step=\"0.01\" required>\n        \n        <label for=\"material\">Material:<\/label>\n        <select id=\"material\" onchange=\"toggleCustomDensity()\" required>\n            <option value=\"7850\">Steel (7850 kg\/m\u00b3)<\/option>\n            <option value=\"2700\">Aluminum (2700 kg\/m\u00b3)<\/option>\n            <option value=\"8900\">Brass (8900 kg\/m\u00b3)<\/option>\n            <option value=\"8500\">Copper (8500 kg\/m\u00b3)<\/option>\n            <option value=\"2330\">Concrete (2330 kg\/m\u00b3)<\/option>\n            <option value=\"1400\">PVC (1400 kg\/m\u00b3)<\/option>\n            <option value=\"other\">Other<\/option>\n        <\/select>\n        \n        <div id=\"customDensity\" style=\"display: none;\">\n            <label for=\"customDensityInput\">Enter Density (\u03c1) in kg\/m\u00b3:<\/label>\n            <input type=\"number\" id=\"customDensityInput\" step=\"1\">\n        <\/div>\n        \n        <button type=\"button\" onclick=\"calculateWeight()\" class=\"calculate-btn\">Calculate Weight<\/button>\n        <button type=\"button\" onclick=\"resetForm()\" class=\"reset-btn\">Reset<\/button>\n    <\/form>\n\n    <div class=\"result\" id=\"result\"><\/div>\n\n    <script>\n        function toggleCustomDensity() {\n            const materialSelect = document.getElementById('material');\n            const customDensityDiv = document.getElementById('customDensity');\n            \n            if (materialSelect.value === 'other') {\n                customDensityDiv.style.display = 'block';\n            } else {\n                customDensityDiv.style.display = 'none';\n            }\n        }\n\n        function calculateWeight() {\n            const diameter = parseFloat(document.getElementById('diameter').value);\n            const thickness = parseFloat(document.getElementById('thickness').value);\n            const length = parseFloat(document.getElementById('length').value);\n            let density = parseFloat(document.getElementById('material').value);\n            \n            if (document.getElementById('material').value === 'other') {\n                density = parseFloat(document.getElementById('customDensityInput').value);\n            }\n\n            const D_o = diameter \/ 1000; \/\/ Outer diameter in meters\n            const t = thickness \/ 1000;  \/\/ Thickness in meters\n            const D_i = D_o - 2 * t;     \/\/ Inner diameter in meters\n\n            if (isNaN(D_o) || isNaN(t) || isNaN(length) || isNaN(density) || D_o <= 0 || t <= 0 || length <= 0 || density <= 0) {\n                document.getElementById('result').innerHTML = 'Please enter valid positive numbers for all fields.';\n                return;\n            }\n\n            const crossSectionalArea = Math.PI * ((Math.pow(D_o, 2) - Math.pow(D_i, 2)) \/ 4);\n            const weight = crossSectionalArea * length * density;\n\n            const resultHtml = `\n                <h2>Calculation Steps<\/h2>\n                <p><strong>1. Outer Diameter (D<sub>o<\/sub>):<\/strong> ${D_o.toFixed(3)} meters<\/p>\n                <p><strong>2. Inner Diameter (D<sub>i<\/sub>):<\/strong> ${D_i.toFixed(3)} meters<\/p>\n                <p><strong>3. Cross-Sectional Area (A):<\/strong> \u03c0 \u00d7 ((D<sub>o<\/sub><sup>2<\/sup> - D<sub>i<\/sub><sup>2<\/sup>) \/ 4) = ${crossSectionalArea.toFixed(3)} square meters<\/p>\n                <p><strong>4. Weight (W):<\/strong> A \u00d7 Length \u00d7 Density = ${crossSectionalArea.toFixed(3)} \u00d7 ${length.toFixed(2)} \u00d7 ${density.toFixed(0)} = ${weight.toFixed(2)} kg<\/p>\n                <h2>Final Result<\/h2>\n                <p><strong>The weight of the pipe is:<\/strong> ${weight.toFixed(2)} kg<\/p>\n            `;\n\n            document.getElementById('result').innerHTML = resultHtml;\n        }\n\n        function resetForm() {\n            document.getElementById('pipeForm').reset();\n            document.getElementById('customDensity').style.display = 'none';\n            document.getElementById('result').innerHTML = '';\n        }\n    <\/script>\n<\/body>\n<\/html>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>How to Use a Pipe Weight Calculators for Accurate Measurements<\/strong><\/h4>\n\n\n\n<p>When working with piping systems, understanding the weight of pipes is crucial for both planning and safety.<\/p>\n\n\n\n<p>A pipe weight calculator is an essential tool that simplifies this process, ensuring you have accurate information without manual calculations.<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe title=\"Pipe Weight Calculator #construction\" width=\"1200\" height=\"675\" src=\"https:\/\/www.youtube.com\/embed\/Mc74rTl1Jh8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Why Knowing Pipe Weight Matters<\/strong><\/h4>\n\n\n\n<p>The weight of a pipe affects various aspects of a project. For construction and engineering projects, knowing the weight helps in determining the appropriate support structures, ensuring safety and stability.<\/p>\n\n\n\n<p>Additionally, accurate weight measurements are critical for transportation and handling, avoiding potential hazards and inefficiencies.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Benefits<\/strong><\/h4>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Efficiency<\/strong>: Save time by bypassing manual calculations and instantly obtain accurate weight measurements.<\/li>\n\n\n\n<li><strong>Accuracy<\/strong>: Reduce the risk of errors by relying on a tool designed for precise weight calculations based on your specific pipe parameters.<\/li>\n\n\n\n<li><strong>Versatility<\/strong>: Useful for various industries, including construction, plumbing, and manufacturing, where precise weight measurements are essential.<\/li>\n<\/ol>\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\/pipe-volume-calculator\/\">Pipe Volume Calculator<\/a><\/div>\n<\/div>\n\n\n\n<p>.<\/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><\/p>\n","protected":false},"excerpt":{"rendered":"<p>This Pipe Weight Calculator help you to find weight in one click. Pipe Weight Calculator Diameter (D) in mm: Thickness (t) in mm: Length (L) in meters: Material: Steel (7850 kg\/m\u00b3)Aluminum (2700 kg\/m\u00b3)Brass (8900 kg\/m\u00b3)Copper (8500 kg\/m\u00b3)Concrete (2330 kg\/m\u00b3)PVC (1400 kg\/m\u00b3)Other Enter Density (\u03c1) in kg\/m\u00b3: Calculate Weight Reset How to Use a Pipe Weight &#8230; <a title=\"Pipe Weight Calculator\" class=\"read-more\" href=\"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/\" aria-label=\"Read more about Pipe Weight 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,76],"tags":[77],"class_list":["post-319","post","type-post","status-publish","format-standard","hentry","category-conversion-tools","category-pipe-weight-calculator","tag-pipe-weight-calculator"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Pipe Weight Calculator - Civil Conversion Tools<\/title>\n<meta name=\"description\" content=\"Learn how to calculate the weight of pipe with our step-by-step guide. Discover the formulas, essential measurements, &amp; Pipe Weight Calculator\" \/>\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\/pipe-weight-calculator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pipe Weight Calculator - Civil Conversion Tools\" \/>\n<meta property=\"og:description\" content=\"Learn how to calculate the weight of pipe with our step-by-step guide. Discover the formulas, essential measurements, &amp; Pipe Weight Calculator\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/\" \/>\n<meta property=\"og:site_name\" content=\"Civil Conversion Tools\" \/>\n<meta property=\"article:published_time\" content=\"2024-09-03T07:29:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-07T08:53:19+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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/\"},\"author\":{\"name\":\"KPSTRUCTURES\",\"@id\":\"https:\/\/kpstructures.in\/Tools\/#\/schema\/person\/8015942c6c6f6015000a482d5aeac32b\"},\"headline\":\"Pipe Weight Calculator\",\"datePublished\":\"2024-09-03T07:29:41+00:00\",\"dateModified\":\"2024-10-07T08:53:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/\"},\"wordCount\":226,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/kpstructures.in\/Tools\/#organization\"},\"keywords\":[\"Pipe Weight Calculator\"],\"articleSection\":[\"Conversion Tools\",\"Pipe Weight Calculator\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/\",\"url\":\"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/\",\"name\":\"Pipe Weight Calculator - Civil Conversion Tools\",\"isPartOf\":{\"@id\":\"https:\/\/kpstructures.in\/Tools\/#website\"},\"datePublished\":\"2024-09-03T07:29:41+00:00\",\"dateModified\":\"2024-10-07T08:53:19+00:00\",\"description\":\"Learn how to calculate the weight of pipe with our step-by-step guide. Discover the formulas, essential measurements, & Pipe Weight Calculator\",\"breadcrumb\":{\"@id\":\"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/kpstructures.in\/Tools\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Pipe Weight 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":"Pipe Weight Calculator - Civil Conversion Tools","description":"Learn how to calculate the weight of pipe with our step-by-step guide. Discover the formulas, essential measurements, & Pipe Weight Calculator","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\/pipe-weight-calculator\/","og_locale":"en_US","og_type":"article","og_title":"Pipe Weight Calculator - Civil Conversion Tools","og_description":"Learn how to calculate the weight of pipe with our step-by-step guide. Discover the formulas, essential measurements, & Pipe Weight Calculator","og_url":"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/","og_site_name":"Civil Conversion Tools","article_published_time":"2024-09-03T07:29:41+00:00","article_modified_time":"2024-10-07T08:53:19+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":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/#article","isPartOf":{"@id":"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/"},"author":{"name":"KPSTRUCTURES","@id":"https:\/\/kpstructures.in\/Tools\/#\/schema\/person\/8015942c6c6f6015000a482d5aeac32b"},"headline":"Pipe Weight Calculator","datePublished":"2024-09-03T07:29:41+00:00","dateModified":"2024-10-07T08:53:19+00:00","mainEntityOfPage":{"@id":"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/"},"wordCount":226,"commentCount":1,"publisher":{"@id":"https:\/\/kpstructures.in\/Tools\/#organization"},"keywords":["Pipe Weight Calculator"],"articleSection":["Conversion Tools","Pipe Weight Calculator"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/","url":"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/","name":"Pipe Weight Calculator - Civil Conversion Tools","isPartOf":{"@id":"https:\/\/kpstructures.in\/Tools\/#website"},"datePublished":"2024-09-03T07:29:41+00:00","dateModified":"2024-10-07T08:53:19+00:00","description":"Learn how to calculate the weight of pipe with our step-by-step guide. Discover the formulas, essential measurements, & Pipe Weight Calculator","breadcrumb":{"@id":"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kpstructures.in\/Tools\/pipe-weight-calculator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/kpstructures.in\/Tools\/"},{"@type":"ListItem","position":2,"name":"Pipe Weight 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\/319","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=319"}],"version-history":[{"count":4,"href":"https:\/\/kpstructures.in\/Tools\/wp-json\/wp\/v2\/posts\/319\/revisions"}],"predecessor-version":[{"id":482,"href":"https:\/\/kpstructures.in\/Tools\/wp-json\/wp\/v2\/posts\/319\/revisions\/482"}],"wp:attachment":[{"href":"https:\/\/kpstructures.in\/Tools\/wp-json\/wp\/v2\/media?parent=319"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kpstructures.in\/Tools\/wp-json\/wp\/v2\/categories?post=319"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kpstructures.in\/Tools\/wp-json\/wp\/v2\/tags?post=319"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}