Geocoder Service
The Geocoder Service resolves geolocation information within Meridian. Meridian supports several geocoder services. By default, geolocation resolution is disabled.
When enabled, geolocation is performed based on the presence of address-related asset fields assigned to a node. See the provisioning documentation for steps to define asset fields on a requisition.
Configuration
To enable or configure the Geocoder Service, use the web-based configuration tool. In the web UI, click the
.
If you would prefer to manually edit the config files, you can set the active Geocoder Service via the property activeGeocoderId in ${OPENNMS_HOME}/etc/org.opennms.features.geocoder.cfg .
|
The Google Geocoder API requires at least an apiKey
or a clientId
and signature
.
For more details, see the official documentation.
Property | Description | Type | Default |
---|---|---|---|
Required |
|||
apiKey |
The apiKey provided by the Google Cloud Platform.
Required only if |
String |
empty string |
clientId |
The Google Geocoder API client ID.
Required only if |
String |
empty string |
signature |
The Google Geocoder API signature. |
String |
empty string |
Optional |
|||
useEnterpriseCredentials |
If authentication with clientId and signature is required, set this to true. |
Boolean |
false |
useSystemProxy |
Should the system-wide proxy settings be used? Configure the system proxy settings in opennms.conf. |
Boolean |
false |
timeout |
The connection timeout in milliseconds the Geocoder tries to resolve a single geolocation. |
Integer |
500 |
These properties are recorded in ${OPENNMS_HOME}/etc/org.opennms.features.geocoder.google.cfg .
|
MapQuest
For more details, refer to the official documentation.
Property | Description | Type | Default |
---|---|---|---|
Required |
|||
apiKey |
The API key. |
String |
empty string |
url |
The URL template for the MapQuest Geocoder API.
The |
String |
http://www.mapquestapi.com/geocoding/v1/address?format=json&key={apikey}&maxResults=1&location={query} |
Optional |
|||
useSystemProxy |
Should the system-wide proxy settings be used? Configure the system proxy settings in opennms.conf. |
Boolean |
false |
These properties are recorded in ${OPENNMS_HOME}/etc/org.opennms.features.geocoder.mapquest.cfg .
|
Nominatim
For more details, see the official documentation and check the Nominatim Usage Policy before using the geocoder service.
Property | Description | Type | Default |
---|---|---|---|
Required |
|||
acceptUsageTerms |
To use the Nominatim Geocoder Service you must accept the Nominatim Usage Policy.
Set this to |
Boolean |
false |
url |
The URL template for the Nominatim Geocoder API.
The |
String |
https://nominatim.openstreetmap.org/search?format=json&email={email}&limit=1&q={query} |
According to the official documentation, provide this in case you are making a large number of requests. Alternatively, provide this information in the userAgent property. |
String |
empty string |
|
referer |
Note that either |
String |
empty string |
userAgent |
Note that either |
String |
OpenNMS-NominatimGeocoderService/2.0 |
Optional |
|||
useSystemProxy |
Should the system-wide proxy settings be used? Configure the system proxy settings in system properties. |
Boolean |
false |
These properties are recorded in ${OPENNMS_HOME}/etc/org.opennms.features.geocoder.nominatim.cfg .
|