Street Route#
Introduction#
- Street Route can:
Find the distance and general drive time between two points
Create a ‘Find the Nearest Location’ tool. Using a database of ‘known / owner destinations’, Street Route can be used to compare a starting point location to the database to return all the route distances and drive times to the possible destinations, which can be queried by the user to present the shortest distance or travel time to the end user.
Determine geolocations which our data sources tell us cannot be reached by vehicle travel. This differentiates Street Route from other distance solutions which return ‘As the crow flies’ distances. Examples are geo points to islands, or rural off road residences.
Click here to learn more about the Street Route Cloud API.
Licensing#
The License Key is a software key required to use the web service. You will receive your license key from your Melissa representative. If you don’t have a license key, contact the Melissa sales team at Sales@Melissa.com or 800-MELISSA ext. 3 (800-635-4772 ext. 3). Without a license key, Street Route will not function.
Initialization#
There are two different constructors that you can utilize when initializing Street Route.
Initialize the Cloud API object with a license key
StreetRoute streetRoute = new StreetRoute(MELISSA_LICENSE_KEY);
street_route = StreetRoute(MELISSA_LICENSE_KEY)
Initialize the Cloud API object, which will read the license key from the environment variable MD_LICENSE or configured using a set method
Click here to learn more about setting up the environment variable.
StreetRoute streetRoute = new StreetRoute()
street_route = StreetRoute()
Configuration#
Street Route supports both GET and POST requests.
(GET) Using one of three ways to configure each respective parameter
(POST) Using the Set Post Body Method to pass a StreetRoutePostRequest object as the pre-constructed post body containing all parameters and records to process
(POST) Using Set Methods to configure base parameters and the Add Records Method to pass records to process
Requests#
GET#
To send a GET request, there are three ways you can configure the parameters to make a request.
Method 1: Using the Set Value Method to specify the parameter and value you want to set it to
Method 2: Using direct property access to set parameter values
Method 3: Using specialized Set Methods to set parameter values
Method 1: Using Set Value Method#
This function allows you to specify input parameters and the values you went to set them to.
Format
streetRoute.SetValue("StartLatitude", START_LATITUDE);
streetRoute.SetValue("StartLongitude", START_LONGITUDE);
streetRoute.SetValue("EndLatitude", END_LATITUDE);
streetRoute.SetValue("EndLongitude", END_LONGITUDE);
street_route.set_value("start_latitude", START_LATITUDE)
street_route.set_value("start_longitude", START_LONGITUDE)
street_route.set_value("end_latitude", END_LATITUDE)
street_route.set_value("end_longitude", END_LONGITUDE)
Example
streetRoute.SetValue("StartLatitude", "33.637520");
streetRoute.SetValue("StartLongitude", "-117.606920");
streetRoute.SetValue("EndLatitude", "33.649870");
streetRoute.SetValue("EndLongitude", "-117.582960");
street_route.set_value("start_latitude", "33.637520")
street_route.set_value("start_longitude", "-117.606920")
street_route.set_value("end_latitude", "33.649870")
street_route.set_value("end_longitude", "-117.582960")
Method 2: Using Direct Property Access#
This allows you to set values directly using the Cloud API’s parameter names.
Format
streetRoute.StartLatitude = START_LATITUDE;
streetRoute.StartLongitude = START_LONGITUDE;
streetRoute.EndLatitude = END_LATITUDE;
streetRoute.EndLongitude = END_LONGITUDE;
street_route.start_latitude(START_LATITUDE)
street_route.start_longitude(START_LONGITUDE)
street_route.end_latitude(END_LATITUDE)
street_route.end_longitude(END_LONGITUDE)
Example
streetRoute.StartLatitude = "33.637520";
streetRoute.StartLongitude = "-117.606920";
streetRoute.EndLatitude = "33.649870";
streetRoute.EndLongitude = "-117.582960";
street_route.start_latitude("33.637520")
street_route.start_longitude("-117.606920")
street_route.end_latitude("33.649870")
street_route.end_longitude("-117.582960")
Method 3: Using Specialized Methods#
These functions allow you to set the input parameters for the Cloud API.
See Set Methods for a list of available parameters.
Format
streetRoute.SetStartLatitude(START_LATITUDE);
streetRoute.SetStartLongitude(START_LONGITUDE);
streetRoute.SetEndLatitude(END_LATITUDE);
streetRoute.SetEndLongitude(END_LONGITUDE);
street_route.set_start_latitude(START_LATITUDE)
street_route.set_start_longitude(START_LONGITUDE)
street_route.set_end_latitude(END_LATITUDE)
street_route.set_end_longitude(END_LONGITUDE)
Example
streetRoute.SetStartLongitude("33.637520");
streetRoute.SetStartLongitude("-117.606920");
streetRoute.SetEndLatitude("33.649870");
streetRoute.SetEndLongitude("-117.582960");
street_route.set_start_latitude("33.637520")
street_route.set_start_longitude("-117.606920")
street_route.set_end_latitude("33.649870")
street_route.set_end_longitude("-117.582960")
POST#
To send a POST request, there are two ways you can configure the parameters to make a request.
Method 1: Using the Set Post Body Method to pass a StreetRoutePostRequest object as the pre-constructed post body containing all parameters and records to process
Method 2: Using Set Methods to configure base parameters and the Add Records Method to pass records to process
A maximum of 100 records can be sent per request.
Method 1: Set Post Body#
This function allows you to pass a pre-constructed post body with all parameters and records for POST requests.
Format
streetRoute.SetPostBody(new StreetRoutePostRequest
{
CustomerID = MELISSA_LICENSE_KEY,
Records = new List<StreetRouteRecordRequest>
{
new StreetRouteRecordRequest
{
RecordID = RECORD_ID,
StartLatitude = START_LATITUDE,
StartLongitude = START_LONGITUDE,
EndLatitude = END_LATITUDE,
EndLongitude = END_LONGITUDE
},
new StreetRouteRecordRequest
{
RecordID = RECORD_ID,
StartLatitude = START_LATITUDE,
StartLongitude = START_LONGITUDE,
EndLatitude = END_LATITUDE,
EndLongitude = END_LONGITUDE
}
}
});
street_route.set_post_body(StreetRoutePostRequest(
customer_id = MELISSA_LICENSE_KEY,
records=[
StreetRouteRecordRequest(
record_id = RECORD_ID,
start_latitude = START_LATITUDE,
start_longitude = START_LONGITUDE,
end_latitude = END_LATITUDE,
end_longitude = END_LONGITUDE
),
StreetRouteRecordRequest(
record_id = RECORD_ID,
start_latitude = START_LATITUDE,
start_longitude = START_LONGITUDE,
end_latitude = END_LATITUDE,
end_longitude = END_LONGITUDE
)
]
))
Example
streetRoute.SetPostBody(new StreetRoutePostRequest
{
CustomerID = MELISSA_LICENSE_KEY,
Records = new List<StreetRouteRecordRequest>
{
new StreetRouteRecordRequest
{
RecordID = "1",
StartLatitude = "33.637520",
StartLongitude = "-117.606920",
EndLatitude = "33.649870",
EndLongitude = "-117.582960"
},
new StreetRouteRecordRequest
{
RecordID = "2",
StartLatitude = "33.637520",
StartLongitude = "-117.606920",
EndLatitude = "33.6328945",
EndLongitude = "-117.61098"
}
}
});
street_route.set_post_body(StreetRoutePostRequest(
customer_id = MELISSA_LICENSE_KEY,
records=[
StreetRouteRecordRequest(
record_id = "1",
start_latitude = "33.637520",
start_longitude = "-117.606920",
end_latitude = "33.649870",
end_longitude = "-117.582960"
),
StreetRouteRecordRequest(
record_id = "2",
start_latitude = "33.637520",
start_longitude = "-117.606920",
end_latitude = "33.6328945",
end_longitude = "-117.61098"
)
]
))
Method 2: Set Input Parameters and Add Records#
You will use set methods to configure the base parameters (license, options, transmission reference), and use the function below to add records for POST requests.
See Set Methods for a list of available parameters.
Format
streetRoute.SetLicense(MELISSA_LICENSE_KEY);
streetRoute.AddRecord(new StreetRouteRecordRequest
{
RecordID = RECORD_ID,
StartLatitude = START_LATITUDE,
StartLongitude = START_LONGITUDE,
EndLatitude = END_LATITUDE,
EndLongitude = END_LONGITUDE
});
streetRoute.AddRecord(new StreetRouteRecordRequest
{
RecordID = RECORD_ID,
StartLatitude = START_LATITUDE,
StartLongitude = START_LONGITUDE,
EndLatitude = END_LATITUDE,
EndLongitude = END_LONGITUDE
});
street_route = StreetRoute(license_key)
street_route.add_record(StreetRouteRecordRequest(
record_id = RECORD_ID,
start_latitude = START_LATITUDE,
start_longitude = START_LONGITUDE,
end_latitude = END_LATITUDE,
end_longitude = END_LONGITUDE
))
street_route.add_record(StreetRouteRecordRequest(
record_id = RECORD_ID,
start_latitude = START_LATITUDE,
start_longitude = START_LONGITUDE,
end_latitude = END_LATITUDE,
end_longitude = END_LONGITUDE
))
Example
streetRoute.SetLicense(MELISSA_LICENSE_KEY);
streetRoute.AddRecord(new StreetRouteRecordRequest
{
RecordID = "1",
StartLatitude = "33.637520",
StartLongitude = "-117.606920",
EndLatitude = "33.649870",
EndLongitude = "-117.582960"
});
streetRoute.AddRecord(new StreetRouteRecordRequest
{
RecordID = "2",
StartLatitude = "33.637520",
StartLongitude = "-117.606920",
EndLatitude = "33.6328945",
EndLongitude = "-117.61098"
});
street_route = StreetRoute(license_key)
street_route.add_record(StreetRouteRecordRequest(
record_id = "1",
start_latitude = "33.637520",
start_longitude = "-117.606920",
end_latitude = "33.649870",
end_longitude = "-117.582960"
))
street_route.add_record(StreetRouteRecordRequest(
record_id = "2",
start_latitude = "33.637520",
start_longitude = "-117.606920",
end_latitude = "33.6328945",
end_longitude = "-117.61098"
))
Response#
When submitting a request, you have the option to either get the response as a string or encapsulate the response into the respective Cloud API response object.
As a String#
Submit a GET or POST request and get the response as a string.
string response = streetRoute.Get<string>();
response = street_route.get(str)
string response = streetRoute.Post<string>();
response = street_route.post(str)
As a Response Object#
Submit a GET or POST request and encapsulate the response into the Cloud API response object.
StreetRouteResponse responseObject = streetRoute.Get<StreetRouteResponse>();
response = street_route.get(StreetRouteResponse)
StreetRouteResponse responseObject = streetRoute.Post<StreetRouteResponse>();
response = street_route.post(StreetRouteResponse)
Accessing Values#
When encapsulating the response into the Cloud API’s respective response object, there are three ways to access values. The response object structure matches the respective Cloud API’s response format.
Click here to learn more about the Street Route response format.
The record responses are typically stored in a list. In the examples below, record represents an individual record at an arbitrary position within this list.
1. Using the Get Value Method:
Pass the field name as a string to the Get Value Method, and it will return the corresponding field value.
record.GetValue("RecordID");
record.GetValue("Results");
record.get_value("RecordID")
record.get_value("Results")
2. Accessing Properties directly
Values can be accessed directly using the response object’s field names.
record.RecordID;
record.Results;
record.record_id
record.results
3. Use Specialized Methods
Use get methods corresponding to field name to get the field value.
record.GetRecordID();
record.GetResults();
record.get_record_id()
record.get_results()
Methods#
The methods listed below pertain to the Street Route Cloud API object.
For methods related to the respective Cloud API’s response object click here.
Constructors#
These methods initialize and configure instances of the Cloud API object. Use these methods to create a new object, optionally providing initial values such as a license string to customize the instance during its creation.
Method |
Description |
---|---|
|
Constructor to initialize the Street Route object. |
|
Constructor to initialize the Street Route object with a license string. |
Method |
Description |
---|---|
|
Constructor to initialize the Street Route object. |
|
Constructor to initialize the Street Route object with a license string. |
Set Methods#
These methods configure or modify parameters at the record level for the Cloud API object. Use these methods to make adjustments to the parameters during the execution of the Cloud API, ensuring flexibility in customizing API requests.
Method |
Description |
---|---|
|
Set the base URL. |
|
Set the license string. |
|
Set the endpoint. |
|
Set the format. |
|
Set the units. |
|
Set the start latitude. |
|
Set the start longitude. |
|
Set the end latitude. |
|
Set the end longitude. |
|
Set the transmission reference. |
|
Set the input parameter to a specified value. |
|
Set the post body for post requests. |
Method |
Description |
---|---|
|
Set the base URL. |
|
Set the license string. |
|
Set the endpoint. |
|
Set the format. |
|
Set the units. |
|
Set the start latitude. |
|
Set the start longitude. |
|
Set the end latitude. |
|
Set the end longitude. |
|
Set the transmission reference. |
|
Set the input parameter to a specified value. |
|
Set the post body for post requests. |
Get Methods#
These methods retrieve parameter values from the Cloud API object. Use these methods to access the parameters configured for the Cloud API at the record level, providing insight into the current state of the object’s settings.
Method |
Description |
---|---|
|
Get the base URL. |
|
Get the license string. |
|
Get the endpoint. |
|
Get the format. |
|
Get the units. |
|
Get the start latitude. |
|
Get the start longitude. |
|
Get the end latitude. |
|
Get the end longitude. |
|
Get the transmission reference. |
|
Get the value of an input parameter. |
|
Get the post body for post requests. |
Method |
Description |
---|---|
|
Get the base URL. |
|
Get the license string. |
|
Get the endpoint. |
|
Get the format. |
|
Get the units. |
|
Get the start latitude. |
|
Get the start longitude. |
|
Get the end latitude. |
|
Get the end longitude. |
|
Get the transmission reference. |
|
Get the value of an input parameter. |
|
Get the post body for post requests. |
Class Methods#
These methods perform service-level operations, handling the core processing and interactions for the Cloud API object. Use these methods to execute primary functionalities such as assembling records, clearing records, and making API requests.
Method |
Description |
---|---|
|
Add record to internal list for post body assembly. |
|
Clear the internal list of records. |
|
Makes the synchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Makes the asynchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Makes a synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Makes an asynchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Makes a synchronous getversion request and returns the parsed Cloud API version. |
|
Makes an asynchronous getversion request and returns the parsed Cloud API version. |
Method |
Description |
---|---|
|
Add record to internal list for post body assembly. |
|
Clear the internal list of records. |
|
Makes the synchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Makes the asynchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Makes a synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Makes an asynchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Makes a synchronous getversion request and returns the parsed Cloud API version. |
|
Makes an asynchronous getversion request and returns the parsed Cloud API version. |