science This product or feature is in Experimental (pre-GA). Pre-GA products and features might have limited support, and changes to pre-GA products and features might not be compatible with other pre-GA versions. Pre-GA Offerings are covered by the
Google Maps Platform Service Specific Terms . For more information, see the
launch stage descriptions . Before you can query Places Insights data, you must first
sign up to get access to the Places Insights product.
Google 会使用 AI 技术将内容翻译成您偏好的语言。AI 翻译可能包含错误。
发送反馈
历史数据概览
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
自 2024 年 1 月起,系统会提供按月汇总的历史 Places Insights 数据。
此数据有助于进行趋势分析,了解某个区域内的地点如何逐月变化。通过跟踪商家和兴趣点随时间的变化情况,用户可以识别新兴的经济集群以及当地市场动态的变化。
设置
**注意** :您必须先注册 才能访问 Places Insights 产品,然后才能查询 Places Insights 数据。 历史 Places Insights 数据是 Places Insights 的一部分。如需了解如何订阅和设置 Places Insights,请参阅设置
Places Insights 。
架构
历史 Places Insights 数据的架构与最新
数据的架构相同(请参阅 Places Insights
参考文档 ),但有以下
例外情况。
排除的字段
历史 Places Insights 数据的架构 不 包含 rating 或
user_rating_count。
**注意** : 如果这些字段对您的使用情形很重要,请填写此
反馈表单 。
您的反馈有助于我们确定未来改进的优先级。
其他字段
除了核心架构之外,历史 Places Insights 数据的架构还包含以下字段。
Field Name
Type
Mode
Description
Example
snapshot_date
DATE
NULLABLE
The snapshot date for the place.
2024-01-01
示例查询
与最新数据一样,查询历史数据时,SELECT 语句必须包含 WITH AGGREGATION_THRESHOLD。(请参阅编写 Places Insights
查询 )。此外,您可能还需要按 snapshot_date 进行 GROUP BY。以下示例展示了如何按月查询正常营业的餐厅数量。
SELECT WITH AGGREGATION_THRESHOLD
snapshot_date ,
COUNT ( * ) AS count
FROM
`PROJECT_NAME .places_insights___us.places_historical`
WHERE
'restaurant' IN UNNEST ( types )
AND
business_status = "OPERATIONAL"
GROUP BY snapshot_date
ORDER BY snapshot_date ASC ;
可用列表
历史 Places Insights 表格位于相应国家/地区的 Places Insights BigQuery 列表中。
如需浏览和订阅您所在区域的数据交换,请参阅设置 Places Insights 中的设置说明。
发送反馈
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可 获得了许可,并且代码示例已根据 Apache 2.0 许可 获得了许可。有关详情,请参阅 Google 开发者网站政策 。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2026-07-09。
需要向我们提供更多信息?
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2026-07-09。"],[],[]]