This post has been republished via RSS; it originally appeared at: New blog articles in Microsoft Tech Community.
Any commercial or government organization, small or big, collects and stores a lot of data in multiple systems. Getting insides and doing Machine Learning across all these different datasets is challenging. For example, you are an insurance company that insures houses, and you would like to understand if an address is located in a flood zone to calculate the risks involved. You need some analytics system that can combine, transform, and enrich the data to give you the insides you need.
Getting geospatial insides in big data
Azure Synapse is a limitless analytics service that combines enterprise data warehousing and Big Data analytics. It gives you the freedom to query data on your terms. By combining Azure Maps geospatial capabilities with Azure Synapse and SynapseML, you can enrich your data with location-aware capabilities. SynapseML geospatial services can geocode addresses, reverse-geocode coordinates, and check if a coordinate is inside a polygon. The geocoder is very tolerant of typos and incomplete addresses. It will also handle everything from exact street addresses or street intersections and higher-level geographies such as city centers, counties, states, etc.
How to visualize customer addresses on a floodplain?
Before you can start using SynapseML to geocode, you need to obtain a Azure Maps key and set it in your environment. Learn here how to get a Azure Maps key.
Load address data
King County (WA) publishes floodplain- and tax parcel data. We can use the addresses in the tax parcel data and the Azure Maps geocoder to calculate coordinates. Then, using these coordinates and the floodplain data, we can enrich or dataset with a flag indicating whether the house is in a flood zone or not. The following data has been sourced from King County's Open data portal.
Wire-up the Address Geocoder
We will use the address geocoder to enrich the dataset with location coordinates of the addresses.
Setup Check Point In Polygon
Now that we have geocoded the addresses, we can now use the CheckPointInPolygon function to check if a property is in a flood zone or not.
Read the complete tutorial on the SynapseML GitHub page.
