提供对MICAPS文件, 卫星云图, 天气雷达等数据的读写, 并访问CIMISS和MICAPS CASSANDRA数据库文件等.
Go to file
2020-03-15 00:37:10 +08:00
documents Add examples and documents. 2020-02-17 21:29:11 +08:00
examples Support to read CMADaaS dataset. 2020-03-12 22:33:31 +08:00
nmc_met_io Add support micaps 2, 3, 5, 7, 8 type file read. 2020-03-15 00:37:10 +08:00
.gitignore add .vscode to ignore 2019-07-04 09:25:35 +08:00
LICENSE Update get_station_data function. 2019-07-03 22:07:05 +08:00
MANIFEST.in Update get_station_data function. 2019-07-03 22:07:05 +08:00
README.md Fix the dump problem. 2020-03-12 22:46:32 +08:00
setup.py Add examples and documents. 2020-02-17 21:29:11 +08:00

气象数据读写及访问程序库

提供对MICAPS文件, 卫星云图, 天气雷达等数据的读写, 并访问CMADaaS, CIMISS和MICAPS CASSANDRA数据库文件等.

Only Python 3 is supported.

Dependencies

Other required packages:

  • numpy
  • scipy
  • xarray
  • pandas
  • protobuf
  • urllib3
  • tqdm
  • python-dateutil

Install

Using the fellowing command to install packages:

  pip install git+git://github.com/nmcdev/nmc_met_io.git

or download the package and install:

  git clone --recursive https://github.com/nmcdev/nmc_met_io.git
  cd nmc_met_io
  python setup.py install

设置CIMISS和MICAPS服务器的地址及用户信息

在系统用户目录下("C:\Users\用户名\.nmcdev\"或"/home/用户名/.nmcdev/"), 新建文本文件config.ini, 里面内容模板为:

[CIMISS]
DNS = xx.xx.xx.xx
USER_ID = xxxxxxxxx
PASSWORD = xxxxxxxx

[CMADaaS]
DNS = xx.xx.xx.xx
PORT = xx
USER_ID = xxxxxxxxx
PASSWORD = xxxxxxxx
serviceNodeId = NMIC_MUSIC_CMADAAS

[MICAPS]
GDS_IP = xx.xx.xx.xx
GDS_PORT = xxxx

# Cached file directory, if not set,
#   /home/USERNAME/.nmcdev/cache (linux) or C:/Users/USERNAME/.nmcdev/cache (windows) will be used.
[CACHE]
# CACHE_DIR = ~ 

这里xxxx用相应的地址, 接口和用户信息代替.