Geofencing in Hybris: Custom Shipping/Sourcing Zones
A geofence is a virtual perimeter or a fence around a geographical real-world area of interest. In e-commerce, these areas can be used for different purposes, from personalization to delivery cost or time calculation.
One of the real examples from my previous e-commerce projects is about the warehouse selection strategy. It used the customer address data to determine the most cost efficient way to source the product and move it to the point of sale for a local pick up or deliver to the customer address.
When the product is available at warehouse A, there is no problem at all – that warehouse is nearest to the customer. However, if the product is only available at other warehouses (for example, warehouse B), the cost of moving the product to the customer location or local store for pick up, may be too high for the seller. In that project, the delivery price is always fixed for all products, all customers, and all regions served.
The simplest way to deal with customer and warehouse locations is using postal codes.
However, this approach is not good for the following reasons:
- Using tables makes the system too complex in terms of management. Generally, postal codes cover the relatively small areas. In order to define the warehouses and delivery areas using the postal codes, you will need to deal with a really huge amount of data. Using primary and secondary warehouses doubles that.
- Using business rules doesn’t help here because the postal code system is generally too simple. You can’t group postal codes together by the delivery cost just because all these areas are close to each other. Some postal codes shouldn’t be grouped because there is a river between them and no bridges nearby.
Solution
There are three components in the system:- Storefront geofencing module
- Geofence editor
- Geofencing API
Storefront module
Storefront geofencing module is integrated into the customer address form. When the customer creates or updates the address, the following operations are performed:- Geocoding. The latitude and longitude are calculated for the address. The Google Maps Geocoding API is used to get a latitude/longitude point to determine at the next phase if it is within one of your fences. Take into account that there are usage limits in the free version of Google Geocoding API, namely 2,500 free requests per day and 50 requests per second.
- List all fences that contain the point. Geofencing API is used for retrieving the fences. Geofencing API is a service component of the solution.
- Delivery cost calculation
- Product availability
- Product price
- Delivery price
- Taxes etc.
Geofence editor
Geofence editor is a Google Maps based web application that uses Geofence API for storing and retrieving data. Using the geofence editor you are able to:- Create a polygon to define the area
- Name the polygon and save it
Geofencing API
The architecture involves the storing, indexing, and serving of complex fences. Each fence is represented as a polygon along with some metadata. The key function of the API is finding all fences a certain point is in. This process isn’t actually as straight forward and, depending on the complexity of the fences, can include some intense calculations. That is why Google AppEngine is used for the API. The following components of Google AppEngine are used in the module: The code itself and the data are hosted in the Google Cloud. Depending on the complexity of the fences, more or less resources are needed for the calculation. For the most e-commerce related cases, the basic configuration is enough. These are the interfaces in the API:- Adding fences to the Google DataStore collection.
- Listing all fences from Google DataStore
- Getting a fence metadata by its id
- Building and storing the index to memcache
- Finding all fences a certain point is in
- Finding a fence that intersect with a polyline.
- Finding a fence that intersect with a polygon.