Can I store names of Google Places API if I refresh them every 30 days?

For my master's thesis I'm building a framework on Android in which I gather information about the user's location. I create 'locations', based on the user's coordinates and visible MAC-adresses. I want to enrich these locations with information from several APIs like Foursquare and Google.

In the terms of the Google Places API one can read in Section 10.5.d (https://developers.google.com/maps/terms#section_10_5):

No caching or storage. You will not pre-fetch, cache, index, or store any Content to be used outside the Service, except that you may store limited amounts of Content solely for the purpose of improving the performance of your Maps API Implementation due to network latency (and not for the purpose of preventing Google from accurately tracking usage), and only if such storage:

  • is temporary (and in no event more than 30 calendar days);
  • is secure;
  • does not manipulate or aggregate any part of the Content or Service; and
  • does not modify attribution in any way.
  • So, I know I am allowed to store the id of the Google Places, but I was wondering if I'm allowed to store the name (and category) of the locations, as long as I refresh them every 30 days? The name would be displayed to the user to show his current location, and the category would be used to determine a joint category, based on both the Google Places and Foursquare category.

    链接地址: http://www.djcxy.com/p/63168.html

    上一篇: 在Android设备上本地缓存Google Places API数据以获取历史记录功能

    下一篇: 如果我每30天刷新一次,我可以存储Google Places API的名称吗?