<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Digital Workflow - BGol</title>
	<atom:link href="https://bgol.in/category/digital-workflow/feed/" rel="self" type="application/rss+xml" />
	<link>https://bgol.in</link>
	<description>Surveying &#38; GIS Community</description>
	<lastBuildDate>Sun, 15 Feb 2026 10:10:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://bgol.in/wp-content/uploads/2025/07/cropped-BGOL-Logo-_-Square-32x32.png</url>
	<title>Digital Workflow - BGol</title>
	<link>https://bgol.in</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Tool For &#8211; Making of Chainage Marked Drone Videos (2026 Updated)</title>
		<link>https://bgol.in/2026/02/14/tool-chainage-marked-drone-videos/</link>
					<comments>https://bgol.in/2026/02/14/tool-chainage-marked-drone-videos/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 14 Feb 2026 06:16:52 +0000</pubDate>
				<category><![CDATA[Processing]]></category>
		<category><![CDATA[RGB Drone]]></category>
		<category><![CDATA[Tools]]></category>
		<guid isPermaLink="false">https://bgol.in/?p=911</guid>

					<description><![CDATA[<p>This app could not be embedded due to browser/security settings. Open DJI Chainage Extractor (opens in a new tab) 2026 Update: Now it supports all DJI Drone model SRT. (You can directly use tool in within this page also 👇 Drone Chainage &#38; SRT Processing A Streamlit application that automates extraction and processing of GPS metadata from DJI drone video&#160;.srt&#160;files, generates chainage markers along a reference alignment (KML), and produces synchronized SRT outputs and 3D visualizations. 🚀 Purpose 📋 Features &#38; Workflow 🔍 Under the Hood: Mathematical Background 1. Haversine Formula Computes great‐circle distance between two GPS points&#160;(φ1,λ1)&#160;and&#160;(φ2,λ2): Δφ=φ2−φ1,Δλ=λ2−λ1,a=sin2⁡(Δφ/2)+cos⁡φ1,cos⁡φ2,sin2⁡(Δλ/2),d=2Rarcsin⁡(a), where: 2. Cumulative Chainage Given points&#160;P0,P1,…,Pn: Ck=∑i=1kd(Pi−1,Pi), where&#160;d()&#160;is the segment length from Haversine. 3. Regular Interval Markers To place markers every&#160;Δ&#160;km:</p>
<p>The post <a href="https://bgol.in/2026/02/14/tool-chainage-marked-drone-videos/">Tool For – Making of Chainage Marked Drone Videos (2026 Updated)</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></description>
										<content:encoded><![CDATA[<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://srt-to-chainage-2026.streamlit.app/">Direct Link</a></div>
</div>



<!-- Responsive iframe with fallback if embedding is blocked -->
<style>
  .embed-wrapper{position:relative;width:100%;max-width:1200px;margin:0 auto;}
  .embed-iframe{width:100%;height:80vh;border:0;display:block;}
  .embed-fallback{padding:24px;border:1px solid #e0e0e0;border-radius:8px;background:#f9f9f9;text-align:center;}
  .embed-fallback a{display:inline-block;padding:10px 18px;background:#2b7de9;color:#fff;text-decoration:none;border-radius:6px;font-weight:600;}
</style>

<div class="embed-wrapper" id="streamlit-embed-wrap">
  <iframe
    id="streamlit-embed-iframe"
    class="embed-iframe"
    src="https://djichainageextractor.streamlit.app/?embed_options=light_theme,show_padding,show_toolbar,show_colored_line"
    allow="geolocation; microphone; camera; clipboard-write; fullscreen"
    loading="lazy"
    title="DJI Chainage Extractor">
  </iframe>

  <!-- hidden fallback element shown only if iframe embedding fails -->
  <div id="streamlit-embed-fallback" class="embed-fallback" style="display:none;">
    <p style="margin:0 0 12px 0;font-size:16px;color:#333;">
      This app could not be embedded due to browser/security settings.
    </p>
    <a href="https://srt-to-chainage-2026.streamlit.app/?embed_options=light_theme,show_padding,show_toolbar,show_colored_line"
       target="_blank" rel="noopener noreferrer">
      Open DJI Chainage Extractor (opens in a new tab)
    </a>
  </div>
</div>

<script>
(function(){
  const iframe = document.getElementById('streamlit-embed-iframe');
  const fallback = document.getElementById('streamlit-embed-fallback');
  const wrap = document.getElementById('streamlit-embed-wrap');

  // If embedding is blocked by server headers, attempts to access iframe.window.location will throw.
  // We try a short check after load/timeout and show fallback on failure.
  let checkDone = false;
  function showFallback(){
    if(checkDone) return;
    checkDone = true;
    iframe.style.display = 'none';
    fallback.style.display = 'block';
  }

  // Give the iframe some time to load. If cross-origin blocks access, this will throw -> fallback.
  function testIframe(){
    try{
      // Accessing contentWindow.location.href on a cross-origin will throw an exception.
      // Some browsers still fire onload even if framing is blocked; this try/catch handles that.
      const href = iframe.contentWindow.location.href;
      // If we could read href and it's non-empty, assume it loaded successfully.
      if(!href || href === 'about:blank') {
        // still probably not loaded — wait a bit then fallback
        setTimeout(showFallback, 1200);
      }
    } catch (err) {
      // expected when cross-origin iframe is blocked -> show fallback
      showFallback();
    }
  }

  // run the test after a small delay so the browser had time to process framing rules
  iframe.addEventListener('load', function(){ setTimeout(testIframe, 400); });
  // safety-net: also run after 2s in case load doesn't fire
  setTimeout(testIframe, 2000);
})();
</script>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"><strong><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color"><span style="text-decoration: underline;">2026 Update</span>: Now it supports all DJI Drone model SRT. </mark></strong>(You can directly use tool in within this page also <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f447.png" alt="👇" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<iframe 
    src="https://srt-to-chainage-2026.streamlit.app/?embed=true"
    width="100%"
    height="900"
    frameborder="0"
    style="border:none;">
</iframe>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h1 class="wp-block-heading">Drone Chainage &amp; SRT Processing <a href="https://github.com/thevijayparmar/drone-chainage-app.#drone-chainage--srt-processing-streamlit-app"></a></h1>



<p class="wp-block-paragraph">A Streamlit application that automates extraction and processing of GPS metadata from DJI drone video&nbsp;<code>.srt</code>&nbsp;files, generates chainage markers along a reference alignment (KML), and produces synchronized SRT outputs and 3D visualizations.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f680.png" alt="🚀" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Purpose<a href="https://github.com/thevijayparmar/drone-chainage-app.#-purpose"></a></h2>



<ul class="wp-block-list">
<li><strong>Extract</strong>&nbsp;latitude, longitude, altitude, and timestamp data embedded in DJI&nbsp;<code>.srt</code>&nbsp;files.</li>



<li><strong>Chainage</strong>: compute distances along a surveyed alignment (a 2D KML LineString) and insert regular markers (every 50 m).</li>



<li><strong>Project</strong>&nbsp;drone track start/end onto the chainage alignment to find matching station values.</li>



<li><strong>Visualize</strong>&nbsp;the drone path and alignment in an interactive 3D view.</li>



<li><strong>Export</strong>:
<ul class="wp-block-list">
<li>3D KMLs of the drone route with START/END placemarks.</li>



<li>Six separate SRT files (Latitude, Longitude, Altitude, Timer, LatLon, Chainage).</li>



<li>Bulk‐processing support for multiple&nbsp;<code>.srt</code>&nbsp;files in one go.</li>
</ul>
</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4cb.png" alt="📋" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Features &amp; Workflow<a href="https://github.com/thevijayparmar/drone-chainage-app.#-features--workflow"></a></h2>



<ol class="wp-block-list">
<li><strong>Upload Inputs</strong>
<ul class="wp-block-list">
<li>DJI&nbsp;<code>.srt</code>&nbsp;(with&nbsp;<code>[latitude: …]</code>,&nbsp;<code>[longitude: …]</code>,&nbsp;<code>[altitude: …]</code>).</li>



<li>Full‐chainage&nbsp;<code>.kml</code>&nbsp;(2D LineString of reference alignment).</li>
</ul>
</li>



<li><strong>Generate 50 m Markers</strong>
<ul class="wp-block-list">
<li>Interpolate along the KML every 0.05 km.</li>



<li>Download&nbsp;<code>markers_50m.kml</code>&nbsp;for inspection.</li>
</ul>
</li>



<li><strong>Confirm Markers Direction</strong>
<ul class="wp-block-list">
<li>If backward, reverse the alignment and regenerate markers.</li>
</ul>
</li>



<li><strong>Project SRT Start/End</strong>
<ul class="wp-block-list">
<li>Parse the initial&nbsp;<code>.srt</code>&nbsp;into GPS track points.</li>



<li>Compute total route length.</li>



<li>Find nearest chainage-station for the first/last points.</li>
</ul>
</li>



<li><strong>Confirm SRT Direction</strong>
<ul class="wp-block-list">
<li>Reverse the track if start/end mapping is inverted.</li>
</ul>
</li>



<li><strong>Visualize in 3D</strong>
<ul class="wp-block-list">
<li>Chainage line (gray) at altitude = 0.</li>



<li>Drone track (red) in true altitude.</li>



<li>START (green) and END (blue) markers with station labels.</li>
</ul>
</li>



<li><strong>Export Initial SRT-Derived Files</strong>
<ul class="wp-block-list">
<li>Download&nbsp;<code>initial_srt_route.kml</code>&nbsp;with START/END.</li>



<li>Download a ZIP of six SRT files prefixed&nbsp;<code>initial_01_…</code>–<code>initial_06_…</code>.</li>
</ul>
</li>



<li><strong>Bulk Processing</strong>&nbsp;(optional)
<ul class="wp-block-list">
<li>Upload multiple additional&nbsp;<code>.srt</code>&nbsp;files.</li>



<li>Skip Steps 2–6 and generate 3D KML + SRT ZIP for each.</li>
</ul>
</li>



<li><strong>Bundle &amp; Download</strong>
<ul class="wp-block-list">
<li>All KMLs and SRTs are packaged into a final&nbsp;<code>all_outputs.zip</code>&nbsp;for one-click retrieval.</li>
</ul>
</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f50d.png" alt="🔍" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Under the Hood: Mathematical Background<a href="https://github.com/thevijayparmar/drone-chainage-app.#-under-the-hood-mathematical-background"></a></h2>



<h3 class="wp-block-heading">1. Haversine Formula</h3>



<p class="wp-block-paragraph"><a href="https://github.com/thevijayparmar/drone-chainage-app.#1-haversine-formula"></a></p>



<p class="wp-block-paragraph">Computes great‐circle distance between two GPS points&nbsp;(φ1,λ1)&nbsp;and&nbsp;(φ2,λ2):</p>



<p class="wp-block-paragraph">Δφ=φ2−φ1,Δλ=λ2−λ1,a=sin2⁡(Δφ/2)+cos⁡φ1,cos⁡φ2,sin2⁡(Δλ/2),d=2Rarcsin⁡(a),</p>



<p class="wp-block-paragraph">where:</p>



<ul class="wp-block-list">
<li>φ&nbsp;= latitude (radians),&nbsp;λ&nbsp;= longitude (radians)</li>



<li>R&nbsp;≈ 6371 km (Earth’s radius)</li>



<li>d&nbsp;= distance along Earth’s surface.</li>
</ul>



<h3 class="wp-block-heading">2. Cumulative Chainage</h3>



<p class="wp-block-paragraph"><a href="https://github.com/thevijayparmar/drone-chainage-app.#2-cumulative-chainage"></a></p>



<p class="wp-block-paragraph">Given points&nbsp;P0,P1,…,Pn:</p>



<p class="wp-block-paragraph">Ck=∑i=1kd(Pi−1,Pi),</p>



<p class="wp-block-paragraph">where&nbsp;d()&nbsp;is the segment length from Haversine.</p>



<h3 class="wp-block-heading">3. Regular Interval Markers</h3>



<p class="wp-block-paragraph"><a href="https://github.com/thevijayparmar/drone-chainage-app.#3-regular-interval-markers"></a></p>



<p class="wp-block-paragraph">To place markers every&nbsp;Δ&nbsp;km:</p>



<ol class="wp-block-list">
<li>Build cumulative array&nbsp;[C0=0,C1,…,Cn].</li>



<li>For each$ D=0, Δ, 2Δ,…,C_n$: find segment&nbsp;i&nbsp;with&nbsp;Ci−1&lt;D≤Ci, compute fraction&nbsp;f=(D−Ci−1)/(Ci−Ci−1), and interpolated point&nbsp;P(D)=(1−f)Pi−1+fPi.</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/><p>The post <a href="https://bgol.in/2026/02/14/tool-chainage-marked-drone-videos/">Tool For – Making of Chainage Marked Drone Videos (2026 Updated)</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://bgol.in/2026/02/14/tool-chainage-marked-drone-videos/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Drone Chainage Video Making &#8211; BGol Webinar</title>
		<link>https://bgol.in/2025/09/22/drone-chainage-video-making-bgol-webinar/</link>
					<comments>https://bgol.in/2025/09/22/drone-chainage-video-making-bgol-webinar/#comments</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Mon, 22 Sep 2025 04:35:25 +0000</pubDate>
				<category><![CDATA[Processing]]></category>
		<category><![CDATA[RGB Drone]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Webinar]]></category>
		<guid isPermaLink="false">https://bgol.in/?p=921</guid>

					<description><![CDATA[<p>Learn how to turn your corridor drone videos into powerful tools with chainage labels.📌 Topics Covered:✅ Drone camera angle &#38; flight plan tips✅ SRT telemetry from drones✅ Chainage calculation using GPS logs &#8211; Free Script &#38; Tool✅ Overlaying chainage text on video &#8211; Video Editing Tips ⚙️ DRONE SRT to CHAINAGE AND OTHER SRT COVERTER TOOL :🔩 https://bgol.in/2025/09/20/tool-chainage-marked-drone-videos/ Other Links:⦿ Math &#8211; Haversine Formula: https://en.wikipedia.org/wiki/Haversine_formula⦿ Flight Visualizer: https://djitelemetryoverlay.com/srt-viewer/ ⦿ Camera Telemetry Creator: https://goprotelemetryextractor.com/drone-heads-up-display⦿ Video Editing Tool: https://filmora.wondershare.net/⦿ Google Earth: https://www.google.com/intl/en_in/earth/about/versions/⦿ Dronelink: https://www.dronelink.com/ Connect with me: https://www.linkedin.com/in/thevijayparmar/ Join BGol Community: https://bgol.in/register</p>
<p>The post <a href="https://bgol.in/2025/09/22/drone-chainage-video-making-bgol-webinar/">Drone Chainage Video Making – BGol Webinar</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></description>
										<content:encoded><![CDATA[<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">
<iframe title="Drone Chainage Video Making - BGol Webinar" width="960" height="540" src="https://www.youtube.com/embed/LVQ-R0iw_G8?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>
</div></figure>



<p class="wp-block-paragraph">Learn how to turn your corridor drone videos into powerful tools with chainage labels.<br><strong><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4cc.png" alt="📌" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Topics Covered:</strong><br><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Drone camera angle &amp; flight plan tips<br><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /> SRT telemetry from drones<br><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Chainage calculation using GPS logs &#8211; Free Script &amp; Tool<br><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Overlaying chainage text on video &#8211; Video Editing Tips</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2699.png" alt="⚙" class="wp-smiley" style="height: 1em; max-height: 1em;" /> DRONE SRT to CHAINAGE AND OTHER SRT COVERTER TOOL :<br><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f529.png" alt="🔩" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <a href="https://bgol.in/2025/09/20/tool-chainage-marked-drone-videos/"><strong>https://bgol.in/2025/09/20/tool-chainage-marked-drone-videos/</strong></a></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"><strong>Other Links:</strong><br>⦿ Math &#8211; Haversine Formula: <a href="https://en.wikipedia.org/wiki/Haversine_formula" target="_blank" rel="noopener" title="">https://en.wikipedia.org/wiki/Haversine_formula</a><br>⦿ Flight Visualizer: <a href="https://djitelemetryoverlay.com/srt-viewer/" target="_blank" rel="noopener" title="">https://djitelemetryoverlay.com/srt-viewer/</a> <br>⦿ Camera Telemetry Creator: <a href="https://goprotelemetryextractor.com/drone-heads-up-display" target="_blank" rel="noopener" title="">https://goprotelemetryextractor.com/drone-heads-up-display</a><br>⦿ Video Editing Tool: <a href="https://filmora.wondershare.net/" target="_blank" rel="noopener" title="">https://filmora.wondershare.net/</a><br>⦿ Google Earth: <a href="https://www.google.com/intl/en_in/earth/about/versions/" target="_blank" rel="noopener" title="">https://www.google.com/intl/en_in/earth/about/versions/</a><br>⦿ Dronelink: <a href="https://www.dronelink.com/" target="_blank" rel="noopener" title="">https://www.dronelink.com/</a></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph">Connect with me: <a href="https://www.linkedin.com/in/thevijayparmar/" target="_blank" rel="noopener" title="">https://www.linkedin.com/in/thevijayparmar/</a></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph">Join BGol Community: <a href="https://bgol.in/register" target="_blank" rel="noopener" title="">https://bgol.in/register</a></p>



<p class="wp-block-paragraph"></p><p>The post <a href="https://bgol.in/2025/09/22/drone-chainage-video-making-bgol-webinar/">Drone Chainage Video Making – BGol Webinar</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://bgol.in/2025/09/22/drone-chainage-video-making-bgol-webinar/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Number to Words (India)</title>
		<link>https://bgol.in/2025/08/28/number-to-words-india/</link>
		
		<dc:creator><![CDATA[BGol Global Admin]]></dc:creator>
		<pubDate>Thu, 28 Aug 2025 15:22:15 +0000</pubDate>
				<category><![CDATA[Tools]]></category>
		<guid isPermaLink="false">https://bgol.in/?p=878</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<!-- &#x1f522; Number to Words v1.0 -->
<iframe src="https://thevijayparmar.github.io/Tools_for_Surveyors/Number%20to%20Words%20v1.0.html" 
        width="100%" height="100%" style="border:none;min-height:600px;"></iframe>




<p class="wp-block-paragraph"></p><p>The post <a href="https://bgol.in/2025/08/28/number-to-words-india/">Number to Words (India)</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>🔺 Triangle Sides Calculator</title>
		<link>https://bgol.in/2025/08/28/%f0%9f%94%ba-triangle-sides-calculator/</link>
		
		<dc:creator><![CDATA[BGol Global Admin]]></dc:creator>
		<pubDate>Thu, 28 Aug 2025 12:03:41 +0000</pubDate>
				<category><![CDATA[Tools]]></category>
		<guid isPermaLink="false">https://bgol.in/?p=852</guid>

					<description><![CDATA[<p>📐 Right‑Angle Triangle Field Calculator A practical offline field tool for surveyors and engineers to quickly compute the third side of a right‑angled triangle.Ideal for marking right angles in the field using methods like 3‑4‑5 triangle or for custom dimensions. ✨ Features 🧮 Triangle Computation 🎨 Interactive Visualization 🖥️ UI &#38; Usability 📑 Formula &#38; Explanation 🖼️ Preview 🚀 How to Use 📄 Example Use Case ⚡ Why Use This Tool?</p>
<p>The post <a href="https://bgol.in/2025/08/28/%f0%9f%94%ba-triangle-sides-calculator/">🔺 Triangle Sides Calculator</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></description>
										<content:encoded><![CDATA[<iframe src="https://thevijayparmar.github.io/Tools_for_Surveyors/Triangle%20Sides%20Calculator.html" 
        width="100%" height="100%" style="border:none;min-height:1000px;"></iframe>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://github.com/thevijayparmar/Tools_for_Surveyors"><strong><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4e4.png" alt="📤" class="wp-smiley" style="height: 1em; max-height: 1em;" /> DOWNLOAD THE TOOL</strong></a></div>
</div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-9-16 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="&#x1f53a; Triangle Sides Calculator" width="563" height="1000" src="https://www.youtube.com/embed/rlPOWMtm_5Q?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>
</div></figure>



<h1 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4d0.png" alt="📐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Right‑Angle Triangle Field Calculator</h1>



<p class="wp-block-paragraph">A practical <strong>offline field tool</strong> for surveyors and engineers to quickly compute the <strong>third side</strong> of a right‑angled triangle.<br>Ideal for marking right angles in the field using methods like <strong>3‑4‑5 triangle</strong> or for custom dimensions.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2728.png" alt="✨" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Features</h2>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9ee.png" alt="🧮" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Triangle Computation</h3>



<ul class="wp-block-list">
<li>Enter <strong>any two sides</strong> → the tool computes the <strong>third side</strong> automatically.</li>



<li>Calculates all triangle properties:</li>



<li>Base (a)</li>



<li>Height (b)</li>



<li>Hypotenuse (c)</li>



<li>∠ at base (θ), ∠ at height (φ), Right angle (90°).</li>



<li>Uses <strong>Pythagoras theorem</strong> in real time.</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3a8.png" alt="🎨" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Interactive Visualization</h3>



<ul class="wp-block-list">
<li>Live <strong>triangle sketch</strong> updates with each input.</li>



<li>Computed side highlighted in <strong>sky‑blue glow</strong>.</li>



<li>Displays side lengths and angles directly on sketch.</li>



<li>Draws <strong>right‑angle marker</strong> at corner.</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f5a5.png" alt="🖥" class="wp-smiley" style="height: 1em; max-height: 1em;" /> UI &amp; Usability</h3>



<ul class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f317.png" alt="🌗" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Dark/Light theme toggle</strong> (remembers preference).</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f6a6.png" alt="🚦" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Error detection</strong> for invalid inputs (e.g., hypotenuse shorter than legs).</li>



<li>Input highlighting:</li>



<li>Recently entered values = green highlight.</li>



<li>Auto‑computed side = blue highlight.</li>



<li>Animated “<img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> sparks” effect on computed side for visibility.</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4d1.png" alt="📑" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Formula &amp; Explanation</h3>



<ul class="wp-block-list">
<li>Shows <strong>formula, substitution, calculation, and result</strong> for transparency.</li>



<li>Example:</li>
</ul>



<pre class="wp-block-code"><code>  Formula: c² = a² + b²
  Substitution: c² = 6² + 8²
  Calculation: √(36 + 64)
  Result: c = 10</code></pre>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f5bc.png" alt="🖼" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Preview</h2>



<figure class="wp-block-image"><img decoding="async" src="https://github.com/user-attachments/assets/31737c9e-71b8-4a6a-80a4-3090b52b3415" alt="Screenshot 2025-08-26 115136"/></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f680.png" alt="🚀" class="wp-smiley" style="height: 1em; max-height: 1em;" /> How to Use</h2>



<ol class="wp-block-list">
<li>Open <strong><code>Triangle Sides Calculator.html</code></strong> in your browser.</li>



<li>Enter any two dimensions (Base, Height, or Hypotenuse).</li>



<li>The third side and internal angles are computed instantly.</li>



<li>Review the live triangle sketch + step‑by‑step formula.</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c4.png" alt="📄" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Example Use Case</h2>



<ul class="wp-block-list">
<li><strong>Field marking of right angles</strong>:</li>



<li>Input Base = 9, Height = 12.</li>



<li>Tool computes Hypotenuse = 15.</li>



<li>Angles displayed: θ ≈ 53.13°, φ ≈ 36.87°.</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Why Use This Tool?</h2>



<ul class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9d1-200d-1f4bc.png" alt="🧑‍💼" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Saves time in the <strong>field</strong> — no manual calculator needed.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4d0.png" alt="📐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Perfect for setting out right angles in construction and surveying.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4bb.png" alt="💻" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Runs <strong>fully offline</strong> in any browser (desktop or mobile).</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3af.png" alt="🎯" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Provides <strong>visual + formula verification</strong> for confidence.</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"></p><p>The post <a href="https://bgol.in/2025/08/28/%f0%9f%94%ba-triangle-sides-calculator/">🔺 Triangle Sides Calculator</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Traverse Adjustment Tool</title>
		<link>https://bgol.in/2025/08/28/traverse-adjustment-tool/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 28 Aug 2025 11:59:23 +0000</pubDate>
				<category><![CDATA[Tools]]></category>
		<guid isPermaLink="false">https://bgol.in/?p=850</guid>

					<description><![CDATA[<p>How to Use? 🎯 Total Station Accuracy Visualizer A modern offline web tool to visualize and compare the angular accuracy vs. linear error of different Total Stations and a Theodolite.Ideal for surveyors and engineers when deciding what instrument suits their project requirements. ✨ Features 📏 Supported Instruments 📐 Accuracy Visualization 🧮 Built-in Calculations 🎨 UI &#38; Experience 🖼️ Preview 🚀 How to Use 📄 Example ⚡ Why Use This Tool?</p>
<p>The post <a href="https://bgol.in/2025/08/28/traverse-adjustment-tool/">Traverse Adjustment Tool</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></description>
										<content:encoded><![CDATA[<iframe src="https://thevijayparmar.github.io/Tools_for_Surveyors/Traverse%20adjustment%20tool%20V6.0.html" 
        width="100%" height="100%" style="border:none;min-height:1500px;"></iframe>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://github.com/thevijayparmar/Tools_for_Surveyors"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4e4.png" alt="📤" class="wp-smiley" style="height: 1em; max-height: 1em;" /> DOWNLOAD THE TOOL</a></div>
</div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-9-16 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="Total Station Accuracy Visualizer" width="563" height="1000" src="https://www.youtube.com/embed/EbrU7c0L-qY?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>
</div></figure>



<h2 class="wp-block-heading">How to Use? </h2>



<h1 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3af.png" alt="🎯" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Total Station Accuracy Visualizer</h1>



<p class="wp-block-paragraph">A modern <strong>offline web tool</strong> to visualize and compare the <strong>angular accuracy vs. linear error</strong> of different <strong>Total Stations</strong> and a <strong>Theodolite</strong>.<br>Ideal for <strong>surveyors and engineers</strong> when deciding what instrument suits their project requirements.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2728.png" alt="✨" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Features</h2>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4cf.png" alt="📏" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Supported Instruments</h3>



<ul class="wp-block-list">
<li><strong>High-Precision Total Station</strong> (0.5″ accuracy)</li>



<li><strong>Standard Total Station</strong> (1″ accuracy)</li>



<li><strong>General-Purpose Total Station</strong> (2″ accuracy)</li>



<li><strong>Basic Total Station</strong> (5″ accuracy)</li>



<li><strong>Theodolite</strong> (20″ accuracy)</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4d0.png" alt="📐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Accuracy Visualization</h3>



<ul class="wp-block-list">
<li><strong>Angular Accuracy Chart</strong> → Wedge visualization of angular spread.</li>



<li><strong>Linear Error Chart</strong> → Bar chart showing error in <strong>mm</strong> at selected distance.</li>



<li>Adjustable <strong>distance slider (1–5000 m)</strong> to see how error grows with range.</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9ee.png" alt="🧮" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Built-in Calculations</h3>



<ul class="wp-block-list">
<li>Formula: <strong>Linear Error (mm) = Distance(m) × tan(θ) × 1000</strong></li>



<li>Displays step-by-step math for each instrument (θ conversion from arcseconds).</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3a8.png" alt="🎨" class="wp-smiley" style="height: 1em; max-height: 1em;" /> UI &amp; Experience</h3>



<ul class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f317.png" alt="🌗" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Dark/Light Mode</strong> toggle.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f52d.png" alt="🔭" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Station emoji for intuitive visualization.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f386.png" alt="🎆" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Animated <strong>radar beams, pings, and sparks</strong> for engaging interaction.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4ca.png" alt="📊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Instrument cards with real-time linear error values.</li>



<li>Responsive layout – works on desktop and mobile.</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f5bc.png" alt="🖼" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Preview</h2>



<figure class="wp-block-image"><img decoding="async" src="https://github.com/user-attachments/assets/0b339aeb-5549-40e4-8e18-c23d22088446" alt="Screenshot 2025-08-26 114954"/></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f680.png" alt="🚀" class="wp-smiley" style="height: 1em; max-height: 1em;" /> How to Use</h2>



<ol class="wp-block-list">
<li>Open <strong><code>Total Station Accuracy Visualizer.html</code></strong> in your browser.</li>



<li>Use the <strong>distance slider</strong> to adjust survey range.</li>



<li>Compare how each instrument’s <strong>angular accuracy</strong> translates into <strong>linear error</strong>.</li>



<li>Expand <strong>Mathematical Calculations</strong> for detailed formulas.</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c4.png" alt="📄" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Example</h2>



<ul class="wp-block-list">
<li>At <strong>100 m</strong>:</li>



<li>0.5″ Total Station → ~0.24 mm error</li>



<li>1″ Total Station → ~0.48 mm error</li>



<li>5″ Total Station → ~2.4 mm error</li>



<li>20″ Theodolite → ~9.7 mm error</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Why Use This Tool?</h2>



<ul class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4ca.png" alt="📊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Helps compare <strong>equipment accuracy</strong> before purchase.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9d1-200d-1f4bc.png" alt="🧑‍💼" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Useful for <strong>field engineers</strong> planning tolerances for different distances.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4bb.png" alt="💻" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Runs <strong>completely offline</strong> — no internet required.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3af.png" alt="🎯" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Interactive, visual, and intuitive for quick decision-making.</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"></p><p>The post <a href="https://bgol.in/2025/08/28/traverse-adjustment-tool/">Traverse Adjustment Tool</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Total Station Accuracy Visualizer</title>
		<link>https://bgol.in/2025/08/28/total-station-accuracy-visualizer/</link>
					<comments>https://bgol.in/2025/08/28/total-station-accuracy-visualizer/#respond</comments>
		
		<dc:creator><![CDATA[BGol Global Admin]]></dc:creator>
		<pubDate>Thu, 28 Aug 2025 11:41:44 +0000</pubDate>
				<category><![CDATA[Tools]]></category>
		<guid isPermaLink="false">https://bgol.in/?p=848</guid>

					<description><![CDATA[<p>🎯 Total Station Accuracy Visualizer A modern offline web tool to visualize and compare the angular accuracy vs. linear error of different Total Stations and a Theodolite.Ideal for surveyors and engineers when deciding what instrument suits their project requirements. ✨ Features 📏 Supported Instruments 📐 Accuracy Visualization 🧮 Built-in Calculations 🎨 UI &#38; Experience 🖼️ Preview 🚀 How to Use 📄 Example ⚡ Why Use This Tool?</p>
<p>The post <a href="https://bgol.in/2025/08/28/total-station-accuracy-visualizer/">Total Station Accuracy Visualizer</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></description>
										<content:encoded><![CDATA[<iframe src="https://thevijayparmar.github.io/Tools_for_Surveyors/Total%20Station%20Accuracy%20Visualizer.html" 
        width="100%" height="100%" style="border:none;min-height:1200px;"></iframe>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://github.com/thevijayparmar/Tools_for_Surveyors"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4e4.png" alt="📤" class="wp-smiley" style="height: 1em; max-height: 1em;" /> DOWNLOAD THE TOOL</a></div>
</div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-9-16 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="Total Station Accuracy Visualizer" width="563" height="1000" src="https://www.youtube.com/embed/EbrU7c0L-qY?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>
</div></figure>



<h1 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3af.png" alt="🎯" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Total Station Accuracy Visualizer</h1>



<p class="wp-block-paragraph">A modern <strong>offline web tool</strong> to visualize and compare the <strong>angular accuracy vs. linear error</strong> of different <strong>Total Stations</strong> and a <strong>Theodolite</strong>.<br>Ideal for <strong>surveyors and engineers</strong> when deciding what instrument suits their project requirements.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2728.png" alt="✨" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Features</h2>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4cf.png" alt="📏" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Supported Instruments</h3>



<ul class="wp-block-list">
<li><strong>High-Precision Total Station</strong> (0.5″ accuracy)</li>



<li><strong>Standard Total Station</strong> (1″ accuracy)</li>



<li><strong>General-Purpose Total Station</strong> (2″ accuracy)</li>



<li><strong>Basic Total Station</strong> (5″ accuracy)</li>



<li><strong>Theodolite</strong> (20″ accuracy)</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4d0.png" alt="📐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Accuracy Visualization</h3>



<ul class="wp-block-list">
<li><strong>Angular Accuracy Chart</strong> → Wedge visualization of angular spread.</li>



<li><strong>Linear Error Chart</strong> → Bar chart showing error in <strong>mm</strong> at selected distance.</li>



<li>Adjustable <strong>distance slider (1–5000 m)</strong> to see how error grows with range.</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9ee.png" alt="🧮" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Built-in Calculations</h3>



<ul class="wp-block-list">
<li>Formula: <strong>Linear Error (mm) = Distance(m) × tan(θ) × 1000</strong></li>



<li>Displays step-by-step math for each instrument (θ conversion from arcseconds).</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3a8.png" alt="🎨" class="wp-smiley" style="height: 1em; max-height: 1em;" /> UI &amp; Experience</h3>



<ul class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f317.png" alt="🌗" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Dark/Light Mode</strong> toggle.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f52d.png" alt="🔭" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Station emoji for intuitive visualization.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f386.png" alt="🎆" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Animated <strong>radar beams, pings, and sparks</strong> for engaging interaction.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4ca.png" alt="📊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Instrument cards with real-time linear error values.</li>



<li>Responsive layout – works on desktop and mobile.</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f5bc.png" alt="🖼" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Preview</h2>



<figure class="wp-block-image"><img decoding="async" src="https://github.com/user-attachments/assets/0b339aeb-5549-40e4-8e18-c23d22088446" alt="Screenshot 2025-08-26 114954"/></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f680.png" alt="🚀" class="wp-smiley" style="height: 1em; max-height: 1em;" /> How to Use</h2>



<ol class="wp-block-list">
<li>Open <strong><code>Total Station Accuracy Visualizer.html</code></strong> in your browser.</li>



<li>Use the <strong>distance slider</strong> to adjust survey range.</li>



<li>Compare how each instrument’s <strong>angular accuracy</strong> translates into <strong>linear error</strong>.</li>



<li>Expand <strong>Mathematical Calculations</strong> for detailed formulas.</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c4.png" alt="📄" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Example</h2>



<ul class="wp-block-list">
<li>At <strong>100 m</strong>:</li>



<li>0.5″ Total Station → ~0.24 mm error</li>



<li>1″ Total Station → ~0.48 mm error</li>



<li>5″ Total Station → ~2.4 mm error</li>



<li>20″ Theodolite → ~9.7 mm error</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Why Use This Tool?</h2>



<ul class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4ca.png" alt="📊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Helps compare <strong>equipment accuracy</strong> before purchase.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9d1-200d-1f4bc.png" alt="🧑‍💼" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Useful for <strong>field engineers</strong> planning tolerances for different distances.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4bb.png" alt="💻" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Runs <strong>completely offline</strong> — no internet required.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3af.png" alt="🎯" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Interactive, visual, and intuitive for quick decision-making.</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"></p><p>The post <a href="https://bgol.in/2025/08/28/total-station-accuracy-visualizer/">Total Station Accuracy Visualizer</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://bgol.in/2025/08/28/total-station-accuracy-visualizer/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Surveyor Calculator</title>
		<link>https://bgol.in/2025/08/28/surveyor-calculator/</link>
					<comments>https://bgol.in/2025/08/28/surveyor-calculator/#respond</comments>
		
		<dc:creator><![CDATA[BGol Global Admin]]></dc:creator>
		<pubDate>Thu, 28 Aug 2025 11:38:19 +0000</pubDate>
				<category><![CDATA[Tools]]></category>
		<guid isPermaLink="false">https://bgol.in/?p=846</guid>

					<description><![CDATA[<p>🧮 Surveyor Calculator A smart calculator built for surveyors and civil engineers, running fully offline in the browser.Beyond standard arithmetic, it includes engineering‑focused tools for quick geometry, unit conversions, and field utilities. ✨ Features 🔢 Standard Calculator 🌙 Appearance &#38; Usability ☰ More Functions (Engineering Toolkit) Click More to unlock advanced tools: 🕒 Productivity 🖼️ Preview 🚀 How to Use 📄 Example Usage ⚡ Why Use This Tool?</p>
<p>The post <a href="https://bgol.in/2025/08/28/surveyor-calculator/">Surveyor Calculator</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></description>
										<content:encoded><![CDATA[<iframe src="https://thevijayparmar.github.io/Tools_for_Surveyors/Surveyor%20Calculator.html" 
        width="100%" height="100%" style="border:none;min-height:800px;"></iframe>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://github.com/thevijayparmar/Tools_for_Surveyors"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4e4.png" alt="📤" class="wp-smiley" style="height: 1em; max-height: 1em;" /> DOWNLOAD THE TOOL</a></div>
</div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-9-16 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="Surveyor Calculator | Advanced Field Calculator" width="563" height="1000" src="https://www.youtube.com/embed/XCDAR304WK8?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>
</div></figure>



<h1 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9ee.png" alt="🧮" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Surveyor Calculator</h1>



<p class="wp-block-paragraph">A <strong>smart calculator</strong> built for <strong>surveyors and civil engineers</strong>, running fully <strong>offline in the browser</strong>.<br>Beyond standard arithmetic, it includes <strong>engineering‑focused tools</strong> for quick geometry, unit conversions, and field utilities.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2728.png" alt="✨" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Features</h2>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f522.png" alt="🔢" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Standard Calculator</h3>



<ul class="wp-block-list">
<li>All basic operations (+, −, ×, ÷).</li>



<li><strong>Memory Functions</strong> (MC, M+, M−).</li>



<li><strong>Percentage</strong> button.</li>



<li>Copy result with one click <strong><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4cb.png" alt="📋" class="wp-smiley" style="height: 1em; max-height: 1em;" /></strong>.</li>



<li>Calculation <strong>history log</strong> with up to 25 records.</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f319.png" alt="🌙" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Appearance &amp; Usability</h3>



<ul class="wp-block-list">
<li>Toggle <strong>Dark/Light Theme</strong>.</li>



<li>Modern UI styled like a mobile calculator.</li>



<li>Firework/spark animations <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f386.png" alt="🎆" class="wp-smiley" style="height: 1em; max-height: 1em;" /> for feedback.</li>
</ul>



<h3 class="wp-block-heading">☰ More Functions (Engineering Toolkit)</h3>



<p class="wp-block-paragraph">Click <strong>More</strong> to unlock advanced tools:</p>



<ul class="wp-block-list">
<li><strong>π (Pi)</strong> constant insertion.</li>



<li><strong>Roots &amp; Powers</strong>: √x, ∛x, x², x³.</li>



<li><strong>Geometry Calculators</strong>:</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f573.png" alt="🕳" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Circle Area (from diameter).</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f6e2.png" alt="🛢" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Cylinder Volume (from diameter &amp; height).</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4d0.png" alt="📐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Triangle Area (from three sides using Heron’s formula).</li>



<li><strong>Survey Unit Conversions</strong>:</li>



<li>Ft → m (Feet–Inch to Meters).</li>



<li>m → Ft (Meters to Feet–Inch).</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26d3.png" alt="⛓" class="wp-smiley" style="height: 1em; max-height: 1em;" /> → m (Chain–Link to Meters).</li>



<li>m → <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26d3.png" alt="⛓" class="wp-smiley" style="height: 1em; max-height: 1em;" /> (Meters to Chain–Link).</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f552.png" alt="🕒" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Productivity</h3>



<ul class="wp-block-list">
<li><strong>History Panel</strong> → Revisit old calculations anytime.</li>



<li><strong>Error Handling</strong> → Detects invalid inputs (e.g., impossible triangle sides).</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f5bc.png" alt="🖼" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Preview</h2>



<figure class="wp-block-image"><img decoding="async" src="https://github.com/user-attachments/assets/6919e9ee-993c-4c9e-8028-fe5ac62b0485" alt="Screenshot 2025-08-26 114909"/></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f680.png" alt="🚀" class="wp-smiley" style="height: 1em; max-height: 1em;" /> How to Use</h2>



<ol class="wp-block-list">
<li>Open <strong><code>Surveyor Calculator.html</code></strong> in any browser.</li>



<li>Use it like a normal calculator.</li>



<li>Click <strong>More</strong> to access extended functions.</li>



<li>Copy results or check history as needed.</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c4.png" alt="📄" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Example Usage</h2>



<ul class="wp-block-list">
<li>Standard: <code>25 × 4 = 100</code>.</li>



<li>Circle: Input <code>12</code> (diameter) → Result = 113.10 (area).</li>



<li>Cylinder: Input <code>12-8</code> (d=12, h=8) → Result = 904.78 (volume).</li>



<li>Triangle: Input <code>3-4-5</code> → Result = 6 (area).</li>



<li>Conversion: <code>5-6</code> (5′6″) → 1.676 m.</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Why Use This Tool?</h2>



<ul class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9d1-200d-1f4bc.png" alt="🧑‍💼" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Tailored for <strong>surveyors &amp; civil engineers</strong>.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4bb.png" alt="💻" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Works <strong>completely offline</strong> (no internet needed).</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4f1.png" alt="📱" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Runs on mobile, tablet, and desktop.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3af.png" alt="🎯" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Combines <strong>calculator + mini engineering toolkit</strong> in one.</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"></p><p>The post <a href="https://bgol.in/2025/08/28/surveyor-calculator/">Surveyor Calculator</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://bgol.in/2025/08/28/surveyor-calculator/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Polygon Partition Tool</title>
		<link>https://bgol.in/2025/08/28/polygon-partition-tool/</link>
		
		<dc:creator><![CDATA[BGol Global Admin]]></dc:creator>
		<pubDate>Thu, 28 Aug 2025 11:31:17 +0000</pubDate>
				<category><![CDATA[Tools]]></category>
		<guid isPermaLink="false">https://bgol.in/?p=844</guid>

					<description><![CDATA[<p>How to Use? 🧩 Polygon Partition Tool A specialized offline polygon partitioning tool built for land surveyors, civil engineers, and GIS practitioners.It allows you to draw, import, partition, and calculate areas/perimeters of polygons directly in the browser.Perfect for fieldwork and planning tasks where advanced GIS software is not accessible. ✨ Features 📂 Input &#38; Setup ✂️ Partitioning 📐 Measurement &#38; Units 📊 Outputs 🎨 UI &#38; Usability 🖼️ Preview 🚀 How to Use 📄 Example CSV Input ⚡ Why Use This Tool?</p>
<p>The post <a href="https://bgol.in/2025/08/28/polygon-partition-tool/">Polygon Partition Tool</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></description>
										<content:encoded><![CDATA[<iframe src="https://thevijayparmar.github.io/Tools_for_Surveyors/Polygon-Partition-Tool.html" 
        width="100%" height="100%" style="border:none;min-height:1200px;"></iframe>




<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://youtube.com/shorts/P42grPa9FiA?feature=share"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4e4.png" alt="📤" class="wp-smiley" style="height: 1em; max-height: 1em;" /> DOWNLOAD THE TOOL</a></div>
</div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-9-16 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="Polygon Partition Tool | Area Split &amp; Calculation" width="563" height="1000" src="https://www.youtube.com/embed/P42grPa9FiA?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>
</div></figure>



<h2 class="wp-block-heading">How to Use?</h2>



<h1 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9e9.png" alt="🧩" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Polygon Partition Tool</h1>



<p class="wp-block-paragraph">A specialized <strong>offline polygon partitioning tool</strong> built for <strong>land surveyors, civil engineers, and GIS practitioners</strong>.<br>It allows you to <strong>draw, import, partition, and calculate areas/perimeters of polygons</strong> directly in the browser.<br>Perfect for fieldwork and planning tasks where advanced GIS software is not accessible.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2728.png" alt="✨" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Features</h2>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c2.png" alt="📂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Input &amp; Setup</h3>



<ul class="wp-block-list">
<li>Import polygon points via <strong>CSV</strong> (X, Y, Name).</li>



<li>Or start with a <strong>Sample Polygon</strong> for quick demo.</li>



<li><strong>Editable Table</strong> → add, delete, or reorder points with drag‑and‑drop.</li>



<li>Toggle point usage (include/exclude).</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2702.png" alt="✂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Partitioning</h3>



<ul class="wp-block-list">
<li>Draw interactive <strong>cut lines</strong> to partition polygons.</li>



<li><strong>Auto‑fit cut</strong> → divide polygon into exact target area.</li>



<li><strong>Blue/Yellow Preview</strong> → instantly shows both sides of the partition with area + perimeter.</li>



<li>Undo last partition with one click.</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4d0.png" alt="📐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Measurement &amp; Units</h3>



<ul class="wp-block-list">
<li>Area and perimeter auto‑calculated for each partition.</li>



<li>Supports unit selection: <strong>meters (m), feet (ft), or custom factor</strong>.</li>



<li>Real‑time labels on partitions showing <strong>Area + Perimeter</strong>.</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4ca.png" alt="📊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Outputs</h3>



<ul class="wp-block-list">
<li><strong>Download Partitions CSV</strong> → coordinates of each subdivided polygon.</li>



<li><strong>Download Summary CSV</strong> → partition names, areas, and perimeters (with totals).</li>



<li><strong>Export SVG Sketch</strong> → saves the visual polygon partition as SVG.</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3a8.png" alt="🎨" class="wp-smiley" style="height: 1em; max-height: 1em;" /> UI &amp; Usability</h3>



<ul class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f317.png" alt="🌗" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Dark/Light Theme Toggle</strong>.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4dc.png" alt="📜" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Activity Log</strong> → keeps track of actions (CSV import, cuts, undo, etc.).</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png" alt="❌" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Error alerts for invalid/self‑intersecting polygons.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f50d.png" alt="🔍" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Grid background with snap‑to‑edge option.</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f5bc.png" alt="🖼" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Preview</h2>



<figure class="wp-block-image"><img decoding="async" src="https://github.com/user-attachments/assets/99b735dd-fa7f-40f9-ac77-1de095b943ff" alt="Screenshot 2025-08-26 114745"/></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f680.png" alt="🚀" class="wp-smiley" style="height: 1em; max-height: 1em;" /> How to Use</h2>



<ol class="wp-block-list">
<li>Open <strong><code>Polygon-Partition-Tool.html</code></strong> in your browser.</li>



<li>Load points:</li>
</ol>



<ul class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c2.png" alt="📂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Import CSV, or</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c4.png" alt="📄" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Use Sample polygon.</li>
</ul>



<ol class="wp-block-list">
<li>Use <strong>handles + cut line</strong> to partition polygon.</li>



<li>Auto‑fit to a <strong>target area</strong> or apply free cut.</li>



<li>Save outputs as CSV or SVG for reporting.</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c4.png" alt="📄" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Example CSV Input</h2>



<pre class="wp-block-code"><code>Name,X,Y
P1,0,0
P2,50,0
P3,80,20
P4,80,60
P5,50,90
P6,20,80
P7,-10,50
P8,-5,20</code></pre>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Why Use This Tool?</h2>



<ul class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9d1-200d-1f4bc.png" alt="🧑‍💼" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Built for <strong>field engineers &amp; surveyors</strong> needing polygon splits quickly.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f310.png" alt="🌐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Works offline</strong> – no internet or GIS software needed.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4ca.png" alt="📊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Generates <strong>ready CSV reports</strong> for documentation.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3af.png" alt="🎯" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Accurate area/perimeter calculations with <strong>unit conversion</strong>.</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"></p><p>The post <a href="https://bgol.in/2025/08/28/polygon-partition-tool/">Polygon Partition Tool</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Multi-Converter (Linear, Area, Volume, Slope)</title>
		<link>https://bgol.in/2025/08/28/multi-converter-linear-area-volume-slope/</link>
		
		<dc:creator><![CDATA[BGol Global Admin]]></dc:creator>
		<pubDate>Thu, 28 Aug 2025 11:16:31 +0000</pubDate>
				<category><![CDATA[Tools]]></category>
		<guid isPermaLink="false">https://bgol.in/?p=842</guid>

					<description><![CDATA[<p>🧭 Surveyor Multi-Converter A powerful all-in-one offline conversion tool designed for land surveyors and civil engineers.It helps in linear, area, volume, and slope conversions with support for both international units and local Indian units often used in field practice. Runs directly in your browser without internet — perfect for fieldwork where network access is limited. ✨ Features 🔁 Linear Conversion 📐 Area Conversion 📦 Volume Conversion ⛰️ Slope Conversion &#38; Visualization 🖼️ Preview 🕒 Productivity Boosters 🚀 How to Use 📄 Example Usage ⚡ Why Use This Tool?</p>
<p>The post <a href="https://bgol.in/2025/08/28/multi-converter-linear-area-volume-slope/">Multi-Converter (Linear, Area, Volume, Slope)</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></description>
										<content:encoded><![CDATA[<iframe src="https://thevijayparmar.github.io/Tools_for_Surveyors/Linear,%20Area,%20Volume%20Converter.html" 
        width="100%" height="100%" style="border:none;min-height:600px;"></iframe>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://github.com/thevijayparmar/Tools_for_Surveyors"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4e4.png" alt="📤" class="wp-smiley" style="height: 1em; max-height: 1em;" /> DOWNLOAD THE TOOL</a></div>
</div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-9-16 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="Surveyor Converter Tool | Linear, Area, Volume, Slope" width="563" height="1000" src="https://www.youtube.com/embed/MOMqY27xVmw?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>
</div></figure>



<h1 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9ed.png" alt="🧭" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Surveyor Multi-Converter</h1>



<p class="wp-block-paragraph">A powerful <strong>all-in-one offline conversion tool</strong> designed for <strong>land surveyors</strong> and <strong>civil engineers</strong>.<br>It helps in <strong>linear, area, volume, and slope conversions</strong> with support for both <strong>international units</strong> and <strong>local Indian units</strong> often used in field practice.</p>



<p class="wp-block-paragraph">Runs directly in your <strong>browser without internet</strong> — perfect for <strong>fieldwork</strong> where network access is limited.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2728.png" alt="✨" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Features</h2>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f501.png" alt="🔁" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Linear Conversion</h3>



<ul class="wp-block-list">
<li>Convert between all standard linear units (m, cm, mm, km, inch, ft, yd, mi).</li>



<li>Special support for:</li>



<li><strong>Chain &amp; Link</strong> (1 Chain = 16 Links, 1 Link = 0.629 m).</li>



<li><strong>Feet–Inch Mode</strong> (e.g., <code>5-6</code> = 5 feet 6 inches).</li>



<li><strong>Dual input modes</strong>:</li>



<li>Single value (decimal entry).</li>



<li>Dual value (Chain–Link or Feet–Inch entry).</li>



<li>Results can be swapped instantly with the <strong>⇄ Reverse Button</strong>.</li>



<li>Copy results easily with the <strong><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4cb.png" alt="📋" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Copy Button</strong>.</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4d0.png" alt="📐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Area Conversion</h3>



<ul class="wp-block-list">
<li>Supports all common area units (m², km², hectare, acre, ft², yd²).</li>



<li>Includes <strong>local field units</strong>:</li>



<li><strong>Vaar (sq. yard)</strong></li>



<li><strong>Guntha</strong> (101.17 m²)</li>



<li><strong>Small Vigha</strong> (16 guntha = 1618.72 m²)</li>



<li><strong>Vigha</strong> (24 guntha = 2428.08 m²)</li>



<li><strong>Are</strong> (100 m²)</li>



<li><strong>Brass (100 ft²)</strong> – widely used in construction works.</li>



<li>Handles <strong>compound input formats</strong> like Vigha–Guntha (<code>3-5</code> = 3 Vigha 5 Guntha).</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4e6.png" alt="📦" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Volume Conversion</h3>



<ul class="wp-block-list">
<li>Convert between m³, L, MLt, km³, ft³.</li>



<li>Includes <strong>Brass (100 ft³)</strong> – used in stone, aggregate, and concrete works.</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26f0.png" alt="⛰" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Slope Conversion &amp; Visualization</h3>



<ul class="wp-block-list">
<li>Converts slope across <strong>Degrees <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2194.png" alt="↔" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Percent <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2194.png" alt="↔" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 1 in N</strong>.</li>



<li>Includes a <strong>triangle visualization</strong> of slope for better field understanding.</li>



<li>Handy for road, canal, and embankment engineers.</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f5bc.png" alt="🖼" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Preview</h2>



<figure class="wp-block-image"><img decoding="async" src="https://github.com/user-attachments/assets/a64e7978-c11f-4d5f-8a7c-7b6423faab84" alt="Screenshot 2025-08-26 113942"/></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f552.png" alt="🕒" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Productivity Boosters</h2>



<ul class="wp-block-list">
<li><strong>History (last 5 conversions)</strong> → Quickly reuse previous unit pairs.</li>



<li><strong>Reverse Button</strong> → Instantly swap from/to units.</li>



<li><strong>Copy Button</strong> → Copy results to clipboard in one click.</li>



<li><strong>Dark/Light Theme</strong> → Toggle based on preference or field conditions.</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f680.png" alt="🚀" class="wp-smiley" style="height: 1em; max-height: 1em;" /> How to Use</h2>



<ol class="wp-block-list">
<li>Open <strong><code>Linear, Area, Volume Converter.html</code></strong> in any browser.</li>



<li>Choose the module: <strong>Linear / Area / Volume / Slope</strong>.</li>



<li>Enter values and select units.</li>



<li>Results appear instantly with animations <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2728.png" alt="✨" class="wp-smiley" style="height: 1em; max-height: 1em;" />.</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c4.png" alt="📄" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Example Usage</h2>



<ul class="wp-block-list">
<li><strong>Linear</strong>: <code>5-6</code> (5 ft 6 in) → 1.676 m</li>



<li><strong>Area</strong>: <code>3-5</code> (3 Vigha 5 Guntha) → 8064.5 m²</li>



<li><strong>Volume</strong>: <code>1 Brass</code> → 100 ft³ = 2.8317 m³</li>



<li><strong>Slope</strong>: <code>5°</code> → 8.75% = 1 in 11.43</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Why Use This Tool?</h2>



<ul class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Covers <strong>units not available in typical converters</strong> (Chain–Link, Vigha, Brass, Feet–Inch).</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f310.png" alt="🌐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Works <strong>offline</strong>, ideal for survey sites with no network.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9d1-200d-1f4bc.png" alt="🧑‍💼" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Built for <strong>surveyors, civil engineers, and contractors</strong>.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3af.png" alt="🎯" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Minimal UI, fast, and reliable.</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"></p><p>The post <a href="https://bgol.in/2025/08/28/multi-converter-linear-area-volume-slope/">Multi-Converter (Linear, Area, Volume, Slope)</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Area Calculator of Known Shapes</title>
		<link>https://bgol.in/2025/08/28/area-calculator-of-known-shapes/</link>
		
		<dc:creator><![CDATA[BGol Global Admin]]></dc:creator>
		<pubDate>Thu, 28 Aug 2025 11:07:31 +0000</pubDate>
				<category><![CDATA[Tools]]></category>
		<guid isPermaLink="false">https://bgol.in/?p=840</guid>

					<description><![CDATA[<p>🟦 Area Calculator of Known Shapes A fun and interactive browser-based tool to calculate the area of common 2D shapes such as:Square, Rectangle, Triangle, Circle, Trapezoid, and Parallelogram 🎉.Runs completely offline and works on any device with a browser. ✨ Features 🖼️ Preview 🚀 How to Use 📄 Example Input ⚡ Why Use This Tool?</p>
<p>The post <a href="https://bgol.in/2025/08/28/area-calculator-of-known-shapes/">Area Calculator of Known Shapes</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></description>
										<content:encoded><![CDATA[<iframe src="https://thevijayparmar.github.io/Tools_for_Surveyors/Area%20Calculator%20of%20Known%20Shapes.html" 
        width="100%" height="100%" style="border:none;min-height:600px;"></iframe>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://github.com/thevijayparmar/Tools_for_Surveyors"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4e4.png" alt="📤" class="wp-smiley" style="height: 1em; max-height: 1em;" /> DOWNLOAD THE TOOL</a></div>
</div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-9-16 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="Area Calculator of Known Shapes" width="563" height="1000" src="https://www.youtube.com/embed/9sxvzYjW38M?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>
</div></figure>



<h1 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f7e6.png" alt="🟦" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Area Calculator of Known Shapes</h1>



<p class="wp-block-paragraph">A fun and interactive <strong>browser-based tool</strong> to calculate the area of common 2D shapes such as:<br><strong>Square, Rectangle, Triangle, Circle, Trapezoid, and Parallelogram</strong> <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f389.png" alt="🎉" class="wp-smiley" style="height: 1em; max-height: 1em;" />.<br>Runs completely <strong>offline</strong> and works on any device with a browser.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2728.png" alt="✨" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Features</h2>



<ul class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2795.png" alt="➕" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Supports 6 Known Shapes</strong>:</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f7e6.png" alt="🟦" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Square → A = x²</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2b1b.png" alt="⬛" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Rectangle → A = b × h</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f53a.png" alt="🔺" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Triangle → A = ½ × b × h</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26aa.png" alt="⚪" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Circle → A = πr²</li>



<li>⬡ Trapezoid → A = ½(a + b) × h</li>



<li>▭ Parallelogram → A = b × h</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3a8.png" alt="🎨" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Dark/Light Theme Toggle</strong></li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f31f.png" alt="🌟" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Animated Sparkle Effect</strong> when results appear</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4f1.png" alt="📱" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Responsive Design</strong> – Works smoothly on mobile, tablet, or desktop</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Instant Calculation</strong> as you type your values</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4e6.png" alt="📦" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>No installation required</strong> – just open the HTML file</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f5bc.png" alt="🖼" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Preview</h2>



<figure class="wp-block-image"><img decoding="async" src="https://github.com/user-attachments/assets/0840710b-33f3-4c6e-b766-eba096bab668" alt="Screenshot 2025-08-26 113800"/></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f680.png" alt="🚀" class="wp-smiley" style="height: 1em; max-height: 1em;" /> How to Use</h2>



<ol class="wp-block-list">
<li>Open <strong><code>Area Calculator of Known Shapes.html</code></strong> in your browser.</li>



<li>Select the shape you want to calculate (e.g., Square, Circle, etc.).</li>



<li>Enter the required dimensions (side, base, height, radius, etc.).</li>



<li>The tool will:</li>
</ol>



<ul class="wp-block-list">
<li>Instantly compute the <strong>area</strong></li>



<li>Display it with a <strong>highlight + sparkle animation <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2728.png" alt="✨" class="wp-smiley" style="height: 1em; max-height: 1em;" /></strong></li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c4.png" alt="📄" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Example Input</h2>



<ul class="wp-block-list">
<li><strong>Square:</strong> Side = 10 → Result = 100</li>



<li><strong>Circle:</strong> Radius = 5 → Result ≈ 78.54</li>



<li><strong>Trapezoid:</strong> a = 6, b = 10, h = 4 → Result = 32</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Why Use This Tool?</h2>



<ul class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9d1-200d-1f393.png" alt="🧑‍🎓" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Great for <strong>students</strong> learning geometry</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f477.png" alt="👷" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Useful for <strong>surveyors/engineers</strong> in quick field calculations</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3a8.png" alt="🎨" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Attractive UI with spark animations and responsive cards</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f310.png" alt="🌐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Works <strong>offline</strong>, no internet needed</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"></p><p>The post <a href="https://bgol.in/2025/08/28/area-calculator-of-known-shapes/">Area Calculator of Known Shapes</a> first appeared on <a href="https://bgol.in">BGol</a>.</p>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
