Wentao Li
Wentao Li
@akrherz, I feel that logically, it should correspond to the count of messages; for checking the byte size of the file, in fact, there's no need to use pygrib either.
@jswhit Alright, I see your point, but I believe this usage is not straightforward. At least, I wasn't aware of it until you mentioned it. In contrast, the `len` function...
https://www.mapzen.com/blog/elevation/ > Terrarium format PNG tiles contain raw elevation data in meters, in Mercator projection (EPSG:3857). All values are positive with a 32,768 offset, split into the red, green, and...
该功能将分流到另一个项目:https://github.com/Clarmy/pyterrain
@ailen9466 已经在 1.1.1 版本中修复了这个问题
没明白哪里有问题
明白了,参考一下这个 Issue:https://github.com/cnmetlab/cnmaps/issues/97
这个可以实现,后面有时间我添加一下。
@huddao 这个之前考虑过直接添加接壤国家的地图边界到包数据中: #41 ,目前还没做这个功能。 目前如果要自己做,可以考虑先自己解析接壤国家的国界线,用 MapPolygon 实例化成可以操作的多边形实例,然后用中国的国界对它做减法。 ```python from cnmap import MapPolygon # 假设已实例化后的印度国界为 raw_india_polygon,是 MapPolygon 对象。 intersect = get_adm_maps(country="中华人民共和国", only_polygon=True, record="first") & raw_india_polygon new_india_polygon = raw_india_polygon - intersect #...
@hakurena 参考这个 issue:#97