﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="https://www.w3.org/2005/Atom">
  <channel>
    <title>Newest KB Articles in BridgeStation Web Edition</title>
    <description>Recent additions to the knowledge base from BridgeStation</description>
    <link>https://www.bridgestation.co.uk/support/kb/c2/bridgestation-web-edition.aspx</link>
    <pubDate>Wed, 10 Jun 2026 13:40:07 GMT</pubDate>
    <generator>SmarterTrack Enterprise 100.0.9578</generator>
    <atom:link href="https://www.bridgestation.co.uk/Support/RSS.ashx?catid=2&amp;type=newestkbarticles" rel="self" type="application/rss+xml" />
    <item>
      <title>How to load data from our GeoJSON API into QGIS</title>
      <link>https://www.bridgestation.co.uk/support/kb/a341/how-to-load-data-from-our-geojson-api-into-qgis.aspx</link>
      <pubDate>Fri, 05 Jun 2026 09:58:35 GMT</pubDate>
      <guid isPermaLink="false">kbarticle341</guid>
      <description>&lt;p data-path-to-node="4"&gt;This guide walks you through loading spatial data directly from our GeoJSON API into QGIS using a simple Python script.&lt;/p&gt;&lt;h3 data-path-to-node="5"&gt;Step 1: Open the QGIS Python Editor&lt;/h3&gt;&lt;p data-path-to-node="6"&gt;You do not need an external coding environment; QGIS has a Python console built right in.&lt;/p&gt;&lt;ol start="1" data-path-to-node="7"&gt;&lt;li&gt;&lt;p data-path-to-node="7,0,0"&gt;Open a new or existing &lt;b data-path-to-node="7,0,0" data-index-in-node="23"&gt;QGIS&lt;/b&gt; project.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-path-to-node="7,1,0"&gt;In the top menu, click &lt;b data-path-to-node="7,1,0" data-index-in-node="23"&gt;Plugins &amp;gt; Python Console&lt;/b&gt; (Shortcut: &lt;code data-path-to-node="7,1,0" data-index-in-node="59"&gt;Ctrl+Alt+P&lt;/code&gt; on Windows, &lt;code data-path-to-node="7,1,0" data-index-in-node="82"&gt;Cmd+Option+P&lt;/code&gt; on Mac).&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-path-to-node="7,2,0"&gt;A panel will open at the bottom of your screen. Look at the toolbar inside that panel and click the &lt;b data-path-to-node="7,2,0" data-index-in-node="100"&gt;Notepad icon&lt;/b&gt; (&lt;i data-path-to-node="7,2,0" data-index-in-node="114"&gt;Show Editor&lt;/i&gt;). A blank text editor will slide open on the right side.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;h3 data-path-to-node="8"&gt;Step 2: Paste the Script&lt;/h3&gt;&lt;p data-path-to-node="9"&gt;Copy the following Python script and paste it into the blank text editor panel:&lt;/p&gt;&lt;div style="display: block;"&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;Python&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;pre class="prettyprint"&gt;import requests
import os
from qgis.core import QgsProject, QgsVectorLayer

# 1. Provide your API URL and Key
endpoint_url = &amp;quot;YOUR_API_URL_HERE&amp;quot;
api_key = &amp;quot;YOUR_API_KEY_HERE&amp;quot;

# 2. Fetch the data securely via API headers
response = requests.get(endpoint_url, headers={&amp;#39;ApiKey&amp;#39;: api_key})
response.raise_for_status() 

# 3. Save the data to a temporary file on your computer
temp_file = os.path.join(os.path.expanduser(&amp;#39;~&amp;#39;), &amp;#39;temp_api_data.geojson&amp;#39;)
with open(temp_file, &amp;#39;w&amp;#39;, encoding=&amp;#39;utf-8&amp;#39;) as f:
    f.write(response.text)

# 4. Load the file directly into your map
vlayer = QgsVectorLayer(temp_file, &amp;quot;API Data Layer&amp;quot;, &amp;quot;ogr&amp;quot;)
if vlayer.isValid():
    QgsProject.instance().addMapLayer(vlayer)&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;h3 data-path-to-node="11"&gt;Step 3: Run and View Your Data&lt;/h3&gt;&lt;ol start="1" data-path-to-node="12"&gt;&lt;li&gt;&lt;p data-path-to-node="12,0,0"&gt;Replace &lt;code data-path-to-node="12,0,0" data-index-in-node="8"&gt;&amp;quot;YOUR_API_URL_HERE&amp;quot;&lt;/code&gt; with your actual API endpoint link. BridgeStation provides a number of standard GeoJSON endpoints. To tailor the data request to your specific requirements and obtain a dedicated endpoint for your authority, please contact BridgeStation Support.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-path-to-node="12,1,0"&gt;Replace &lt;code data-path-to-node="12,1,0" data-index-in-node="8"&gt;&amp;quot;YOUR_API_KEY_HERE&amp;quot;&lt;/code&gt; with your personal API key.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-path-to-node="12,2,0"&gt;Click the &lt;b data-path-to-node="12,2,0" data-index-in-node="10"&gt;Green Play Button&lt;/b&gt; (&lt;i data-path-to-node="12,2,0" data-index-in-node="29"&gt;Run Script&lt;/i&gt;) at the top of the script editor panel.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p data-path-to-node="13"&gt;A new layer named &lt;b data-path-to-node="13" data-index-in-node="18"&gt;&amp;quot;API Data Layer&amp;quot;&lt;/b&gt; will instantly appear in your QGIS Layers panel on the left.&lt;/p&gt;&lt;blockquote data-path-to-node="14"&gt;&lt;p data-path-to-node="14,0"&gt;&lt;b data-path-to-node="14,0" data-index-in-node="0"&gt;Tip:&lt;/b&gt; If you cannot see the data on your map right away, right-click &lt;b data-path-to-node="14,0" data-index-in-node="68"&gt;&amp;quot;API Data Layer&amp;quot;&lt;/b&gt; in your Layers panel and select &lt;b data-path-to-node="14,0" data-index-in-node="117"&gt;Zoom to Layer&lt;/b&gt;. QGIS will center your screen directly over the newly loaded data.&lt;/p&gt;&lt;/blockquote&gt;</description>
    </item>
    <item>
      <title>Hidden Critical Element</title>
      <link>https://www.bridgestation.co.uk/support/kb/a329/hidden-critical-element.aspx</link>
      <pubDate>Tue, 31 Oct 2023 12:25:19 GMT</pubDate>
      <guid isPermaLink="false">kbarticle329</guid>
      <description>&lt;div id="isPasted"&gt;In structures, a hidden component/element is one that would not usually be visually inspected as part of a principal inspection. A hidden component is not identified from normal principal inspection techniques such as:&lt;/div&gt;&lt;ul&gt;&lt;li&gt;visual inspection from a touching distance&amp;nbsp;&lt;/li&gt;&lt;li&gt;using access techniques such as mobile elevated work platforms (MEWPs), roped access etc&lt;/li&gt;&lt;li&gt;hammer tapping&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;Elements are hidden if they are inaccessible for inspection without excavation or removal or material or other structural components.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Critical elements as per &lt;strong&gt;CS 451 Structural review and assessment of highway structures&lt;/strong&gt;, are those elements whose failure would result in significant local collapse or global collapse of the structure.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;strong&gt;Is Element Hidden? Attribute&lt;/strong&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;To specify if an element is hidden, use the &amp;quot;Is element hidden?&amp;quot; attribute in element details. If set to &amp;quot;yes&amp;quot;, in the element hierarchy, the suffix &amp;quot;hidden&amp;quot; is added to the element name.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;img src="/support/AvatarHandler.ashx?kbattchid=166" style="width: 750px;" class="fr-fil fr-dib fr-shadow"&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;The structure summary page will highlight if one or more hidden critical element exists.&lt;/div&gt;&lt;div&gt;&lt;img src="/support/AvatarHandler.ashx?kbattchid=164" style="width: 443px;" class="fr-fil fr-dib fr-shadow"&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;This element attribute is available in the following primary/critical elements:&lt;/div&gt;&lt;div&gt;&lt;img src="/support/AvatarHandler.ashx?kbattchid=165" style="width: 539px;" class="fr-fil fr-dib"&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;</description>
    </item>
    <item>
      <title>BridgeStation Update 2016 - User Interface Improvements, Structure Files and Standard Reports Upgrades</title>
      <link>https://www.bridgestation.co.uk/support/kb/a259/bridgestation-update-2016-user-interface-improvements-structure-files-and-standard-reports-upgrades.aspx</link>
      <pubDate>Tue, 19 Jul 2016 09:54:55 GMT</pubDate>
      <guid isPermaLink="false">kbarticle259</guid>
      <description>&lt;p&gt;The 2016 BridgeStation update includes three main improvements along with other minor bug fixes.&lt;/p&gt;

&lt;h3&gt;User Interface Improvements&lt;/h3&gt;

&lt;div&gt;The menu system has been redesigned and simplified. The Action Menu now includes sub-menu items. You may need to mouse over a few menu items to find the module you are looking for.&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;img alt="" src="/support/AvatarHandler.ashx?radfile=%5cCommon%5cUI%20%2d%20Menu%20System%5cSubMenuItem%2deg%2epng" style="width: 475px; height: 279px;" /&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;On some pages the actions menu won't display, but its still available via the &lt;strong&gt;Options Button &lt;/strong&gt;top-left.&amp;nbsp;&lt;img alt="" src="/support/AvatarHandler.ashx?radfile=%5cCommon%5cUI%20%2d%20Menu%20System%5cOptions%2dHotDog%2epng" style="width: 25px; height: 27px;" /&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;img alt="" src="/support/AvatarHandler.ashx?radfile=%5cCommon%5cUI%20%2d%20Menu%20System%5cPopOutMenu%2epng" style="width: 220px; height: 253px;" /&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;Getting support is now&amp;nbsp;via the &lt;strong&gt;Support&lt;/strong&gt; link top-right.&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;img alt="" src="/support/AvatarHandler.ashx?radfile=%5cCommon%5cUI%20%2d%20Menu%20System%5cSupportMenu%2epng" style="width: 277px; height: 113px;" /&gt;&lt;/div&gt;

&lt;h3&gt;Structure Files Upgrade&lt;/h3&gt;

&lt;div&gt;Also included is an upgrade to the way BridgeStation stores and presents your Structure Files. Gone are the three photographs, document and drawing tabs. Instead you can access all your relevant files through one page. Click on the &lt;strong&gt;Files &lt;/strong&gt;item in the new &lt;strong&gt;Structure Menu&lt;/strong&gt;.&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;img alt="" src="/support/AvatarHandler.ashx?radfile=%5cCommon%5cDocument%20Management%5cStructureMenu%5fFilesItem%2epng" style="width: 148px; height: 230px;" /&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;If you are working on an inspection form, you can get to the inspection folder to upload your photos and documents by clicking the &lt;strong&gt;Inspection Files &lt;/strong&gt;tab.&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;img alt="" src="/support/AvatarHandler.ashx?radfile=%5cCommon%5cUI%20%2d%20Menu%20System%5cInspectionFiles%5fTab%2epng" style="width: 573px; height: 144px;" /&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;You can learn more about the Structure Files Upgrade here:&lt;/div&gt;

&lt;div&gt;&lt;a href="http://www.bridgestation.co.uk/support/kb/a205/structure-files-introduction.aspx"&gt;Structure Files - Introduction&lt;/a&gt;&lt;/div&gt;

&lt;div&gt;&lt;a href="http://www.bridgestation.co.uk/support/kb/a206/structure-files-modifications.aspx"&gt;Structure Files - Modifications&lt;/a&gt;&lt;/div&gt;

&lt;h3&gt;Standard Reports&lt;/h3&gt;

&lt;div&gt;Finally there is an update to the standard reports module. These are pre-loaded reports&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;img alt="" src="/support/AvatarHandler.ashx?radfile=%5cCommon%5cReports%20%2d%20Standard%5cStandardReports%5fmenu%5fitem%2epng" style="width: 612px; height: 328px;" /&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;You can read more about the reports here:&lt;/div&gt;

&lt;div&gt;&lt;a href="http://www.bridgestation.co.uk/support/kb/a240/standard-reports.aspx"&gt;Standard Reports&lt;/a&gt;&lt;/div&gt;</description>
    </item>
  </channel>
</rss>