Docs Menu
Docs Home
/
MongoDB Atlas
/ /

気象用サンプル データセット

項目一覧

  • コレクション
  • Indexes
  • サンプルドキュメント

sample_weatherdataデータベースには、さまざまな場所からの詳細な天気予報が含まれています。 各レポートには、 airTemperaturewindvisibilityなどの読み取りが含まれています。 各レポートには、 GeoJSON として保存されるロケーションが含まれています。

Atlas が提供するサンプルデータをクラスターにロードする方法について学ぶには、サンプルデータのロード」を参照してください。

このデータベースには、data という単一のコレクションが含まれています。

sample_weatherdata.dataコレクションには、データセット内のすべての気象レポートが含まれています。 コレクション内の各ドキュメントは、1 つの気象レポートを表します。 ドキュメント内のさまざまな気象観察は通常、埋め込みオブジェクトに存在します。

sample_weatherdata.data コレクションには、以下のインデックスが含まれます。

名前
Index
説明
_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"
}
}

戻る

トレーニング