亚马逊盆地塔帕若斯河与亚马逊河交汇处气象数据集分析

LBA-ECO CD-01 Meteorological Data, Tapajos and Amazon Rivers, Santarem, Brazil: 2001

简介

该数据集包含 2001 年 7 月和 8 月在巴西圣塔伦附近亚马逊盆地塔帕若斯河与亚马逊河交汇处附近收集的气象数据。边界层和高空测量数据由声学测深仪-声雷达仪、带光学经纬仪的探空气球和无线电探空仪收集。无线电探空仪除了测量风速和风向外,还测量了气压、温度和相对湿度。测量数据由五个当地站以不同的频率进行。该数据集包含 41 个逗号分隔的数据文件。数据集附带的支持信息包括:天气预报:天气预报用于确定 CIRSAN 实验期间气球飞行的有利条件,并帮助确定无线电探空仪的发射频率。研究期间的每日观测和预报天气描述(Weather_forecasts_Santarem.txt)也包含在内。卫星图像:提供了 CIRSAN 期间的所有卫星图像。这是来自各种仪器和卫星平台的图像的汇编。 (参见 readme_sat.txt)。共有 42 幅 .gif 格式的图片。CPTEC 分析文件:CPTEC 全球分析建模活动使用了 CIRSAN 测量数据。太平洋和南美地区的模型输出结果以 GRIB 格式提供。(参见 readme_GPSA.txt)

摘要

Radiosonde Data (2 files):

File #1: CIRSAN_radiosonde_Belterra_July_2001.csv

File #2: CIRSAN_radiosonde_Belterra_August_2001.csv

Radiosonde Data File Contents and Organization:

ColumnHeadingUnits/formatDescription
1DateYYYYMMDDSample date (YYYYMMDD)
2YearyyyyYear sampled. All samples were collected in 2001
3MonthmmMonth sampled. All samples included in this file were collected in July
4DayddDay sampled (day of the month)
5T_lunchGMT, Time balloon was launched given in GMT. Local time is GMT-5
6Asc_ratem/sBalloon ascention rate reported in meters per second (m/s)
7Ht_geospmGeopotential height in meters (m) at time measurements were recorded
8Air_presshPaAir pressure recorded in hPa
9Air_Tdegrees CAir temperature reported in degrees Celsius
10U_rel%Relative humidity reported in percent
11T_dewpointdegrees CDewpoint temperature reported in degrees Celsius
12Wind_dirdegreesWind direction
13Windspeedm/sWind magnitude in meters per second
14T_potdegrees KPotential temperature
15R_mixg/kgWater vapor mixing ratio
Missing data are represented by -9999.9

Pilot Balloon Data (3 files):

File #3: CIRSAN_pilot_balloon_Belterra_August_2001.csv

File #4: CIRSAN_pilot_balloon_Boim_July_2001.csv

File #5: CIRSAN_pilot_balloon_Pindobal_July_2001.csv

Pilot Balloon Data File Contents and Organization:

ColumnHeadingUnits/formatDescription
1DateYYYYMMDDSample date (YYYYMMDD)
2YearyyyyYear sampled. All samples were collected in 2001
3MonthmmMonth sampled. All samples included in this file were collected in August
4DayddDay sampled (day of the month)
5HourGMTTime at start of the sampling period in 24 hour clock. Time reported is GMT time
6TimesElapsed time since the start of measurements
7Dist_EWmBalloon distance in meters (m) on WEST-EAST axis from launching point (negative values indicate west) at sampling point
8Dist_NSmBalloon distance in meters(m) on SOUTH-NORTH axis from launching point ( negative values indicate south) at sampling point
9HeightmBalloon height in meters above ground level ( m) at sampling point
10U_windspeedm per sZonal wind speed in meters per second
11V_windspeedm per sMeridional wind speed In meter per second
12Mag_windspeedm per sWind magnitude in meters per second
13Direct_winddegreesWind direction in degrees with north represented by 0 and south by 180

Sonic radar (sodar) data

The 36 data files are named as follows:

YYYYMMDD_Santarem_sodar.csv. Each file contains data for one day, and includes days 20010713 - 20010816.

YYYY = year
MM = month
DD = day

Example file name: 20010713_santarem_sodar.csv

File format for 36 sonic radar data files:

ColumnHeadingUnits/formatDescription
1YearYYYYYear in which measurements were collected (YYYY)
2MonthMMonth in which measurements were collected (M)
3DayDDDay on which measurements were collected (DD)
4HourHour at which measurement series started on a 24 hour clock. Time reported is GMT and local time is GMT -4
5MinuteMinute at which measurement series started on a 24 hour clock. Time reported is GMT and local time is GMT -4
6Inv_layermInversion layer depth
7AltmHeight above ground level
8C_tempsquaredTemperature structure function
9Velm per sWind magnitude
10DirdegreesWind direction
11Sd_dirdegreesWind direction standard deviation
12Vert_velm per sVertical velocity
13Sd_vert_velm per sVertical velocity standard deviation
14Sd_Zonal_velm per sZonal wind standard deviation
15Sd_meridional_velm per sMeridional wind standard deviation
16Stability_index“See Automatic Stability Classification Routine description in Section 5 of the guide documentation”
Missing data are represented by -9999.9

代码

!pip install leafmap
!pip install pandas
!pip install folium
!pip install matplotlib
!pip install mapclassify
 
import pandas as pd
import leafmap
 
url = "https://github.com/opengeos/NASA-Earth-Data"
df = pd.read_csv(url, sep="\t")
df
 
leafmap.nasa_data_login()
 
 
results, gdf = leafmap.nasa_data_search(
    short_name="CD01_CIRSAN_Meteorology_2001_1114",
    cloud_hosted=True,
    bounding_box=(-55.42, -3.07, -54.56, -2.2),
    temporal=("2001-08-01", "2001-08-16"),
    count=-1,  # use -1 to return all datasets
    return_gdf=True,
)
 
 
gdf.explore()
 
#leafmap.nasa_data_download(results[:5], out_dir="data")

网址推荐

知识星球

知识星球 | 深度连接铁杆粉丝,运营高品质社群,知识变现的工具 (zsxq.com)https://wx.zsxq.com/group/48888525452428

机器学习

https://www.cbedai.net/xg 

干旱监测平台

慧天干旱监测与预警-首页https://www.htdrought.com/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

此星光明

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值