I have a bunch of data with just the street addresses. I have to transform these addresses to the exact building/store names. I DO NOT want longitude/latitude values, just the building name.
Is there any tool for this other than the Address tools? How can I proceed further?
For example, My input data is as below;
| raw_store |
| 769 DONALD LYNCH BLVD MARLBOROUGH MA 01752 USA |
| 7677 E BROADWAY TUCSON AZ 8571 |
I want the output to be:
| raw_store | clean_Store |
| 769 DONALD LYNCH BLVD MARLBOROUGH MA 01752 USA | BEST BUY |
| 7677 E BROADWAY TUCSON AZ 8571 | THE HOME DEPOT |
| | |
How can I link GOOGLE API for the address lookup? Or is there any other easy way to handle this?
Thanks.