문서 메뉴

문서 홈MongoDB 실행 및 관리MongoDB Atlas

샘플 날씨 데이터 세트

이 페이지의 내용

  • 컬렉션
  • 인덱스
  • 샘플 문서

sample_weatherdata 데이터베이스에는 다양한 위치의 자세한 일기 예보가 포함되어 있습니다. 각 보고서에는 airTemperature, windvisibility 와 같은 판독값이 포함되어 있습니다. 각 보고서에는 GeoJSON으로 저장되는 위치가 포함되어 있습니다.

Atlas에서 제공하는 샘플 데이터를 클러스터에 로드하는 방법을 알아보려면 샘플 데이터 로드를 참조하세요.

이 데이터베이스에는 data라는 단일 컬렉션이 포함되어 있습니다.

sample_weatherdata.data 컬렉션에는 데이터 세트의 모든 일기 예보가 포함되어 있습니다. 컬렉션의 각 문서는 단일 일기 예보를 나타냅니다. 문서 내의 다양한 기상 관측은 일반적으로 내장된 객체에 존재합니다.

sample_weatherdata.data 컬렉션에는 다음과 같은 인덱스가 포함되어 있습니다.

이름
색인
설명
_id_
{ "_id": 1 }
_id 필드의 기본 키 인덱스입니다.
{
"_id": {
"$oid": "5553a998e4b02cf7151190c9"
},
"st": "x+51900+003200",
"ts": {
"$date": {
"$numberLong": "447354000000"
}
},
"position": {
"type": "Point",
"coordinates": [
{
"$numberDouble": "3.2"
},
{
"$numberDouble": "51.9"
}
]
},
"elevation": {
"$numberInt": "9999"
},
"callLetters": "PLAT",
"qualityControlProcess": "V020",
"dataSource": "4",
"type": "FM-13",
"airTemperature": {
"value": {
"$numberDouble": "4.8"
},
"quality": "1"
},
"dewPoint": {
"value": {
"$numberDouble": "4.6"
},
"quality": "1"
},
"pressure": {
"value": {
"$numberDouble": "1032.6"
},
"quality": "1"
},
"wind": {
"direction": {
"angle": {
"$numberInt": "170"
},
"quality": "1"
},
"type": "N",
"speed": {
"rate": {
"$numberDouble": "0.5"
},
"quality": "1"
}
},
"visibility": {
"distance": {
"value": {
"$numberInt": "999999"
},
"quality": "9"
},
"variability": {
"value": "N",
"quality": "9"
}
},
"skyCondition": {
"ceilingHeight": {
"value": {
"$numberInt": "99999"
},
"quality": "9",
"determination": "9"
},
"cavok": "N"
},
"sections": [
"AG1",
"MD1",
"OA1",
"SA1"
],
"precipitationEstimatedObservation": {
"discrepancy": "2",
"estimatedWaterDepth": {
"$numberInt": "999"
}
},
"atmosphericPressureChange": {
"tendency": {
"code": "2",
"quality": "1"
},
"quantity3Hours": {
"value": {
"$numberDouble": "1.2"
},
"quality": "1"
},
"quantity24Hours": {
"value": {
"$numberDouble": "99.9"
},
"quality": "9"
}
},
"seaSurfaceTemperature": {
"value": {
"$numberDouble": "5.5"
},
"quality": "9"
}
}
← 샘플 트레이닝 데이터 세트

이 페이지의 내용