science このプロダクトまたは機能は、試験運用版(pre-GA)です。一般提供前のプロダクトと機能では、サポートが制限されることがあります。また、一般提供前のプロダクトや機能の変更は、他の一般提供前のバージョンと互換性がない場合があります。pre-GA のサービスには、
Google Maps Platform サービス固有の規約が適用されます。詳細については、
リリース ステージの説明をご覧ください。
登録してプレイス分析情報をお試しください。
過去のデータの概要
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
月ごとの過去のプレイス分析データは、2024 年 1 月からご利用いただけます。このデータは、エリア内の場所が月ごとにどのように変化したかを把握するための傾向分析を行う場合に役立ちます。
セットアップ
過去の Places Insights データは、以下の表に記載されている都市で利用できます。これらのデータ交換に登録する手順については、プレイス分析を設定するをご覧ください。
スキーマ
過去の Places Insights データのスキーマは、最新のデータと同じです(Places Insights リファレンスを参照)。ただし、次の例外があります。
除外済みフィールド
過去の Places Insights データのスキーマには、rating
や user_rating_count
は含まれていません。
その他のフィールド
過去の Places Insights データのスキーマには、コアスキーマに加えて次のフィールドが含まれます。
フィールド名 |
型 |
モード |
説明 |
例 |
snapshot_date |
DATE |
NULLABLE |
スポットのスナップショットの日付。 |
2024-01-01 |
クエリの例
最新のデータと同様に、履歴データをクエリする際の SELECT
ステートメントには WITH AGGREGATION_THRESHOLD
を含める必要があります。(Places Insights クエリを作成するをご覧ください)。また、GROUP BY
snapshot_date
を行うこともおすすめします。次の例は、月ごとの営業中のレストランの数をクエリする方法を示しています。
SELECT WITH AGGREGATION_THRESHOLD
snapshot_date,
COUNT(*) AS count
FROM
`PROJECT_NAME.places_insights_historical___us.places_historical`
WHERE
'restaurant' IN UNNEST(types)
AND
business_status = "OPERATIONAL"
GROUP BY snapshot_date
ORDER BY snapshot_date ASC;
利用可能なリスティング
次の表に、サポートされている都市と国を示し、登録用のリンクを記載しています。各都市と国について、サンプルデータと完全なデータを購読できます。
サンプルデータ
国、市区町村 |
購読リンク |
テーブル名 |
シドニー(オーストラリア) | AU |
places_insights_historical___au___sample.places_sample_historical
|
サンパウロ(ブラジル) | ブラジルレアル |
places_insights_historical___br___sample.places_sample_historical
|
トロント(カナダ) | カナダ |
places_insights_historical___ca___sample.places_sample_historical
|
パリ(フランス) | FR |
places_insights_historical___fr___sample.places_sample_historical
|
ベルリン(ドイツ) | ドイツ |
places_insights_historical___de___sample.places_sample_historical
|
ロンドン(英国) | GB |
places_insights_historical___gb___sample.places_sample_historical
|
ムンバイ(インド) | IN |
places_insights_historical___in___sample.places_sample_historical
|
ジャカルタ(インドネシア) | ID |
places_insights_historical___id___sample.places_sample_historical
|
ローマ(イタリア) | IT |
places_insights_historical___it___sample.places_sample_historical
|
東京(日本) | JP |
places_insights_historical___jp___sample.places_sample_historical
|
メキシコシティ(メキシコ) | MX |
places_insights_historical___mx___sample.places_sample_historical
|
マドリード(スペイン) | ES |
places_insights_historical___es___sample.places_sample_historical
|
チューリッヒ(スイス) | CH |
places_insights_historical___ch___sample.places_sample_historical
|
ニューヨーク市(アメリカ合衆国) | 米国 |
places_insights_historical___us___sample.places_sample_historical
|
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-10-02 UTC。
[[["わかりやすい","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"]],["最終更新日 2025-10-02 UTC。"],[],[]]