Global Address Object:Interface Use: Difference between revisions
Created page with "← Global Address Object Reference {| class="mw-collapsible" cellspacing="2" style="background-color:#f9f9f9; border:1px solid #aaaaaa..." |
No edit summary |
||
(15 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{GlobalAddressObjectNav | |||
|InterfaceCollapse= | |||
}} | |||
{ | |||
{ | |||
| | |||
{{CustomTOC}} | {{CustomTOC}} | ||
Line 78: | Line 15: | ||
The first set of steps is to initialize the instance of the GlobalAddr Interface. | The first set of steps is to initialize the instance of the GlobalAddr Interface. | ||
<li>If necessary, call '''SetLicenseString''' and pass the | <li>If necessary, call '''SetLicenseString''' and pass the License Key as mentioned in [[Global Address Object:Licensing#Parameter|Licensing]]. Again, this is not necessary if the License Key is provided as the recommended environment variable.</li> | ||
<li>Call the '''SetPathToGlobalAddrFiles''' function with file a path as a parameter pointing to the location of the Global Address Object reference data files.</li> | <li>Call the '''SetPathToGlobalAddrFiles''' function with file a path as a parameter pointing to the location of the Global Address Object reference data files.</li> | ||
Line 110: | Line 47: | ||
<pre> | <pre> | ||
Result = addPtr.SetInputParameter( | Result = addPtr.SetInputParameter(“inputCountry”, “Spain”) | ||
Result = addPtr.SetInputParameter(“inputAddressLine1”, “Carretera Rioseco 2”) | Result = addPtr.SetInputParameter(“inputAddressLine1”, “Carretera Rioseco 2”) | ||
Result = addPtr.SetInputParameter(“inputAddressLine2”, “34170 Villamartín De Campos Palencia”) | Result = addPtr.SetInputParameter(“inputAddressLine2”, “34170 Villamartín De Campos Palencia”) | ||
Line 117: | Line 54: | ||
Notice that the input in this case is in an address line format. Global Address Object will attempt to field and parse these address lines before processing the verification and correction of the address data. | Notice that the input in this case is in an address line format. Global Address Object will attempt to field and parse these address lines before processing the verification and correction of the address data. | ||
Setting the '''outputPreference''' parameter tells the Global Address Object to return the results based on the language/alphabet parameter specified. This is accomplished via either translation, transliteration, or a combination of both. | |||
Setting the ''' | |||
Once we have our parameters set, we are ready to make the processing call to do some work on the input address data. | Once we have our parameters set, we are ready to make the processing call to do some work on the input address data. | ||
Line 178: | Line 60: | ||
==Functions for Processing Input== | ==Functions for Processing Input== | ||
There are 3 functions that process data provided to the Global Address Object, but only '''VerifyAddress''' utilizes the input parameters set in | There are 3 functions that process data provided to the Global Address Object, but only '''VerifyAddress''' utilizes the input parameters set in [[#Setting Parameters for Input|Setting Parameters for Input]]. '''TranslateText''' and '''TransliterateText''' are utilized to map or move any input value and language combination to another output value and language combination. | ||
===VerifyAddress=== | ===VerifyAddress=== | ||
Line 191: | Line 73: | ||
The return integer ''intval'' from this call has no determination or value related to the results of the call. The return only defined a 0 or 1 for the success or failure of the function call itself. Getting to the results of the '''VerifyAddress''' call itself, is the job of '''GetOutputParameter''' and '''GetOutputParameterNames'''. | The return integer ''intval'' from this call has no determination or value related to the results of the call. The return only defined a 0 or 1 for the success or failure of the function call itself. Getting to the results of the '''VerifyAddress''' call itself, is the job of '''GetOutputParameter''' and '''GetOutputParameterNames'''. | ||
<!-- | |||
==Moving Between Alphabets and Character Sets (Not Yet Available)== | |||
'''<span style="color:red">Currently not available. This will be enabled soon in a future update.</span>''' | |||
Most address quality tools deploy only one type of technology for moving address data between alphabets and languages and this is typically referred to as '''Character Set Mapping Technology (CSMT)''' or transliteration. Transliteration is the practice of transcribing or mapping a word or text in one writing system into another writing system. This is done word by word and/or letter by letter. Most mappings for transliteration map to letters with similar pronunciation, thus they include elements of transcription which specifically maps the sounds of one letter to the best matching script in another language. | Most address quality tools deploy only one type of technology for moving address data between alphabets and languages and this is typically referred to as '''Character Set Mapping Technology (CSMT)''' or transliteration. Transliteration is the practice of transcribing or mapping a word or text in one writing system into another writing system. This is done word by word and/or letter by letter. Most mappings for transliteration map to letters with similar pronunciation, thus they include elements of transcription which specifically maps the sounds of one letter to the best matching script in another language. | ||
Transliteration is completely different from translation which involves a change in language which preserves the meaning. Translation, for example, recognizes the difference between son and sun as it moves between alphabets. | Transliteration is completely different from translation which involves a change in language which preserves the meaning. Translation, for example, recognizes the difference between son and sun as it moves between alphabets. | ||
Melissa Data's Global Address Object gives you the choice to use either translation or transliteration. | |||
===TranslateText=== | ===TranslateText=== | ||
Line 214: | Line 100: | ||
===TransliterateText=== | ===TransliterateText=== | ||
The '''TransliterateText''' function utilizes character set mapping of the input data to arrive at the appropriate output/destination language/alphabet. This is accomplished through the extensive reference data Melissa Data uses for address quality and in most cases maintains the meaning in the destination alphabet. | The '''TransliterateText''' function utilizes character set mapping of the input data to arrive at the appropriate output/destination language/alphabet. This is accomplished through the extensive reference data Melissa Data uses for address quality and in most cases maintains the meaning in the destination alphabet. | ||
The code here looks similar but the results can be different: | The code here looks similar but the results can be different: | ||
Line 232: | Line 114: | ||
The function takes very similar inputs but the outputs are different, '''Москва''' explicitly transliterated to Latin is Moskva, not Moscow. Melissa Data utilizes the best of transliteration with transcription as well as translation in address validation and correction and will produce the best Latin match of Moscow. | The function takes very similar inputs but the outputs are different, '''Москва''' explicitly transliterated to Latin is Moskva, not Moscow. Melissa Data utilizes the best of transliteration with transcription as well as translation in address validation and correction and will produce the best Latin match of Moscow. | ||
--> | |||
==Getting Results and Output== | ==Getting Results and Output== | ||
Line 241: | Line 120: | ||
===GetInputParameterNames=== | ===GetInputParameterNames=== | ||
'''GetInputParameterNames''' returns the application an array/list of input parameter names like the input values referenced in [[#Setting Parameters for Input|Setting Parameters for Input]]. '''GetOutputParameterNames''' functions in the same manner | '''GetInputParameterNames''' returns the application an array/list of input parameter names like the input values referenced in [[#Setting Parameters for Input|Setting Parameters for Input]]. | ||
===GetOutputParameterNames=== | |||
'''GetOutputParameterNames''' functions in the same manner as '''GetInputParameterNames''', but is specifically for getting outputted results from the address verification/correction process initialized with '''verifyAddress'''. | |||
For a complete list of input and output parameter names with definitions, see [[Global Address Object:Parameters|Parameters]]. | For a complete list of input and output parameter names with definitions, see [[Global Address Object:Parameters|Parameters]]. | ||
The GetOutputParameter function is the counterpart to | ===GetOutputParameter=== | ||
Sample Address | The '''GetOutputParameter''' function is the counterpart to '''SetOutputParameter'''. This function takes in a parameter name, such as administrativeArea and returns the value “Queensland” for an address such as the one below. | ||
91 Queen Street, Brisbane QLD 4000 Australia | |||
;Sample Address | |||
:91 Queen Street, Brisbane QLD 4000 Australia | |||
In this example, QLD is the administrative area (US terms State/Province) abbreviation for Queensland. | In this example, QLD is the administrative area (US terms State/Province) abbreviation for Queensland. | ||
<pre> | |||
House number = 91 | |||
Street = Queen Street | |||
Postal Code = 4000 | |||
Administrative Area = QLD | Administrative Area = QLD | ||
City/Locality = Brisbane | City/Locality = Brisbane | ||
Country Name = Australia | Country Name = Australia | ||
</pre> | |||
To pass this fielded address data to the object as parameters the following calls would be coded: | To pass this fielded address data to the object as parameters the following calls would be coded: | ||
Result = addPtr.SetInputParameter( | |||
<pre> | |||
Result = addPtr.SetInputParameter(“inputCountry”, “Australia”) | |||
Result = addPtr.SetInputParameter(“premiseNumber”, “91”) | Result = addPtr.SetInputParameter(“premiseNumber”, “91”) | ||
Result = addPtr.SetInputParameter(“PostalCode”, “4000”) | Result = addPtr.SetInputParameter(“PostalCode”, “4000”) | ||
Line 265: | Line 155: | ||
// Now that all input values are set, call verifyAddress to attempt to process input | // Now that all input values are set, call verifyAddress to attempt to process input | ||
Intval = VerifyAddress() | Intval = VerifyAddress() | ||
// Now get values if intval is successful | |||
If intval = true | |||
outputResult1 = addPtr.GetOutputParameter(“administrativeArea”) | |||
outputResult2 = addPtr.GetOutputParameter(“inputAdministrativeArea”) | |||
End if | |||
</pre> | |||
< | |||
The variable outputResult1 contains the resulting administrative area, as already mentioned: Queensland. It important to note that outputResult2 also contains a value which is the original input value of QLD as administrative area. | |||
[[Category:Global Address Object]] | [[Category:Global Address Object]] | ||
[[Category:Reference]] | [[Category:Reference]] |
Latest revision as of 23:44, 20 June 2022
← Global Address Object Reference
Global Address Object Navigation | |||||
---|---|---|---|---|---|
| |||||
| |||||
| |||||
| |||||
|
Creating an Instance
- Create an instance of the Global Address Object’s GlobalAddr Interface.
- If necessary, call SetLicenseString and pass the License Key as mentioned in Licensing. Again, this is not necessary if the License Key is provided as the recommended environment variable.
- Call the SetPathToGlobalAddrFiles function with file a path as a parameter pointing to the location of the Global Address Object reference data files.
- Call the InitializeDataFiles function. If it returns anything other than 0, then initialization has failed. Check the return value of the GetInitializeErrorString function to find out why this happened.
- At this point, we are ready to load the GlobalAddr with address input data for verification correction etc.
Set addPtr = new instance of GlobalAddr
The first set of steps is to initialize the instance of the GlobalAddr Interface.
CALL InitializeDataFiles RETURNING result If result <> 0 THEN Call GetInitializeErrorString RETURN ErrorMessage Display ErrorMessage Else Process Addresses End If
Setting Parameters for Input
Setting input address data is the first step in global address validation. Before any verification or correction can be completed, the originating input address data must be set into the Global Address Object’s input parameters. Parameters are set into the Global Address Object as name/value pairs. The complete list of name/value pairs for input and output can be found in Parameters.
So, using our Global Address Object addPtr defined previously, we will set the following sample address into the input parameters:
- Sample Address
- Carretera Rioseco 2
- 34170 Villamartín De Campos Palencia
- SPAIN
Result = addPtr.SetInputParameter(“inputCountry”, “Spain”) Result = addPtr.SetInputParameter(“inputAddressLine1”, “Carretera Rioseco 2”) Result = addPtr.SetInputParameter(“inputAddressLine2”, “34170 Villamartín De Campos Palencia”)
Notice that the input in this case is in an address line format. Global Address Object will attempt to field and parse these address lines before processing the verification and correction of the address data.
Setting the outputPreference parameter tells the Global Address Object to return the results based on the language/alphabet parameter specified. This is accomplished via either translation, transliteration, or a combination of both.
Once we have our parameters set, we are ready to make the processing call to do some work on the input address data.
Functions for Processing Input
There are 3 functions that process data provided to the Global Address Object, but only VerifyAddress utilizes the input parameters set in Setting Parameters for Input. TranslateText and TransliterateText are utilized to map or move any input value and language combination to another output value and language combination.
VerifyAddress
The VerifyAddress function takes in no parameters, but reads from the values set in the SetInputParameter call(s) to attempt to process the input data for fielding, parsing, verification/correction and return formatting. The results from calling VerifyAddress are accessible by utilizing the functions defined in Getting Results and Output.
The call is very straightforward, but again, dependent on input parameters being defined.
Intval = VerifyAddress()
The return integer intval from this call has no determination or value related to the results of the call. The return only defined a 0 or 1 for the success or failure of the function call itself. Getting to the results of the VerifyAddress call itself, is the job of GetOutputParameter and GetOutputParameterNames.
Getting Results and Output
There are three functions available for getting return values and results from the Global Address Object: GetInputParameterNames, GetOutputParameterNames and GetOutputParameter.
GetInputParameterNames
GetInputParameterNames returns the application an array/list of input parameter names like the input values referenced in Setting Parameters for Input.
GetOutputParameterNames
GetOutputParameterNames functions in the same manner as GetInputParameterNames, but is specifically for getting outputted results from the address verification/correction process initialized with verifyAddress.
For a complete list of input and output parameter names with definitions, see Parameters.
GetOutputParameter
The GetOutputParameter function is the counterpart to SetOutputParameter. This function takes in a parameter name, such as administrativeArea and returns the value “Queensland” for an address such as the one below.
- Sample Address
- 91 Queen Street, Brisbane QLD 4000 Australia
In this example, QLD is the administrative area (US terms State/Province) abbreviation for Queensland.
House number = 91 Street = Queen Street Postal Code = 4000 Administrative Area = QLD City/Locality = Brisbane Country Name = Australia
To pass this fielded address data to the object as parameters the following calls would be coded:
Result = addPtr.SetInputParameter(“inputCountry”, “Australia”) Result = addPtr.SetInputParameter(“premiseNumber”, “91”) Result = addPtr.SetInputParameter(“PostalCode”, “4000”) Result = addPtr.SetInputParameter(“AdministrativeArea”, “QLD”) Result = addPtr.SetInputParameter(“Locality”, “Brisbane”) Result = addPtr.SetInputParameter(“thoroughfareName”, “Queen Street”) // Now that all input values are set, call verifyAddress to attempt to process input Intval = VerifyAddress() // Now get values if intval is successful If intval = true outputResult1 = addPtr.GetOutputParameter(“administrativeArea”) outputResult2 = addPtr.GetOutputParameter(“inputAdministrativeArea”) End if
The variable outputResult1 contains the resulting administrative area, as already mentioned: Queensland. It important to note that outputResult2 also contains a value which is the original input value of QLD as administrative area.