Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

...

...

...

...

...


Warning
titleElgin Roadworks data no longer support

Due to changes to the API and data we are not currently supporting the Elgin System Connection. Please contact the Astun Support Portal if you require any further information.

Astun supply a python script to download the Elgin data but you will first need to customise it for your connection details.

...

General Connection Details

XMLpath

Enter the path to where you wish the Elgin data to be copied e.g. D:\Astun\Data\Elgin\\. You need to make sure that you include the double backslash at the end of the path.

Code Block
titleCode snippet
XMLpath = ""


Elgin

These are the required parameters for the request to the Elgin server.

...

Note

The OrganisationID and OrganisationName are no longer provided by Elgin so just enter a dummy 4 figure number for the OrganisationID [7289 definitely works] and your own Organisation name for the OrganisationName.

Using a Proxy Server

useProxy

Change to True if you are using a Proxy Server to connect to Elgin.

Code Block
titleCode snippet
useProxy = False


NTLM

If you change useProxy to True then you must also enter the following proxy authentication details in the following section:

...

Code Block
titleCode snippet
NTLM = {
    "Domain": "",
    "User": "",
    "Password": "",
}


URL & Port Number

You will also need to specify the URL and the Port Number for the local proxy server in the following section:

...