You must be a Spectrum Technology Platform administrator (admin) to perform this task.
To install routing Spectrum Product Data (SPD):
-
Verify that the Spectrum Technology Platform server is running before you begin.
-
Download your Spectrum Product Database (SPD) format files from Precisely using the link provided in the Precisely communication or from data.precisely.com. If the download is a zip file, extract it to a temporary location.
-
Open a command-line window.
-
Connect to the Spectrum Technology Platform server by typing this command:
connect --h servername:port --u username --p password --s SSLtrueFalse
For example,
connect --h myserver:8080 --u admin --p myPassword1 --s false
-
Install the routing data to the Spectrum server by typing:
productdata install --f fileOrDirectory --w waitOrReturn
For example:
productdata install --f C:/Downloads/C1A122018/CA_Driving.spd --w
To import and extract multiple Spectrum Product Data (.spd) files, when installing both pedestrian and driving data for example, provide the path to the folder:
productdata install --f C:/Downloads/C1A122018 --w
-
Run the following command to view information about the Spectrum data:
productdata list
This command lists all the information related to Spectrum Product Data (SPD), which are:
- PRODUCT
- COMPONENT
- QUALIFIER
- VINTAGE
- EXPIRATION
- DESCRIPTION
- IDENTIFIER
-
Run one of the following commands to generate a template for adding Spectrum data to Spectrum.
The current file folder or the path you specified now has a template file (.json) that contains information like:
[{"product":"Spatial",
"module":"routing",
"name":"enter database name",
"properties":{"isSPD":"true",
"DatasetPaths":"${spectrum.spd.Spatial/routing/add IDENTIFIER from productdata list};"},
"maxActive":4}
-
Configure the JSON template (.json) file by adding the database display name for the name tag and adding the IDENTIFIER information from running productdata list (in step 2) to the DatasetPaths tag.
For example:
[{"product":"Spatial",
"module":"routing",
"name":"Austria",
"properties":{"isSPD":"true",
"DatasetPaths":"${spectrum.spd.Spatial/routing/A1T_Pedestrian_Mar_2019};"},
"maxActive":4}]
-
Save your changes to the template file.
-
Run the import command to add the SPD to the Management Console.
ermdb import --f path_to_JSON_template
For example, if the template is stored in a JSON file named ermdbresource.json, then the command will look like:
ermdb import --f C:/Downloads/File/ermdbresource.json
You are now ready to create a database resource for the routing data as described in Creating a Routing Database Resource.
For more information about these Product Data CLI commands, see Product Data and Spatial and Routing Databases in the Spectrum Technology Platform Administration Guide.