이전 데이터 개요

월별 이전 장소 통계 데이터는 2024년 1월부터 사용할 수 있습니다. 이 데이터는 추세 분석을 실행하여 특정 지역의 장소가 월별로 어떻게 변화했는지 파악하는 데 유용합니다.

설정

과거 장소 통계 데이터는 아래 표에 나열된 도시에서 사용할 수 있습니다. 이러한 데이터 교환을 구독하는 방법에 관한 추가 안내는 장소 통계 설정을 참고하세요.

스키마

이전 장소 통계 데이터의 스키마는 최신 데이터의 스키마와 동일합니다 (장소 통계 참조 참고). 단, 다음 예외가 있습니다.

제외된 필드

이전 장소 통계 데이터의 스키마에는 rating 또는 user_rating_count이 포함되지 않습니다.

추가 필드

이전 장소 통계 데이터의 스키마에는 핵심 스키마 외에 다음 필드가 포함됩니다.

필드 이름 유형 모드 설명
snapshot_date DATE NULLABLE 장소의 스냅샷 날짜입니다. 2024-01-01

쿼리 예

최신 데이터와 마찬가지로 이전 데이터를 쿼리할 때 SELECT 문에 WITH AGGREGATION_THRESHOLD가 포함되어야 합니다. 장소 통계 쿼리 작성을 참고하세요. 또한 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

브라질 상파울루BR

places_insights_historical___br___sample.places_sample_historical

캐나다 토론토CA

places_insights_historical___ca___sample.places_sample_historical

프랑스 파리FR

places_insights_historical___fr___sample.places_sample_historical

독일 베를린DE

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

미국 뉴욕시US

places_insights_historical___us___sample.places_sample_historical