#!usr/bin/env python # -*- coding:utf-8 -*- """ @author: Suyue @file: flyzhexian.py @time: 2024/09/04 @desc: """ import pandas as pd import matplotlib Read More
posted @ 2024-09-04 17:25 秋刀鱼CCC Views(19) Comments(0) Diggs(0) Edit
之前的笔记折线实在是太细了,并且还有点透明,放在论文中特别难看,现在修改一下折线,并且绘制双y轴 #!usr/bin/env python # -*- coding:utf-8 _*- """ @author:Suyue @file:zhexian.py @time:2024/04/$ {DAY} Read More
posted @ 2024-08-30 23:22 秋刀鱼CCC Views(26) Comments(0) Diggs(0) Edit
有一堆雷达图,想放到一张图上展示 #!usr/bin/env python # -*- coding:utf-8 -*- """ @author: Suyue @file: piccon.py @time: 2024/08/27 @desc: """ import os import PIL.Ima Read More
posted @ 2024-08-27 16:51 秋刀鱼CCC Views(91) Comments(0) Diggs(0) Edit
还是之前的那一堆csv数,主要算每列的中位数、四分位数、最大值、最小值等 我在这里做个笔记,方便下次用的时候直接粘过来用 #!usr/bin/env python # -*- coding:utf-8 -*- """ @author: Suyue @file: vilolinpic.py @time Read More
posted @ 2024-08-15 16:41 秋刀鱼CCC Views(93) Comments(0) Diggs(0) Edit
我有一堆雷达相关的csv数据,但是第一行没有标题,后面进行计算不方便,所以需要给数据加标题 #!usr/bin/env python # -*- coding:utf-8 -*- """ @author: Suyue @file: biaoti.py @time: 2024/08/13 @desc: Read More
posted @ 2024-08-15 11:16 秋刀鱼CCC Views(26) Comments(0) Diggs(0) Edit
雷达回波的代码挺简单的,关键是运行环境的问题,之前用python3.8,根本画不出来图,尤其是地图类的,即使安装了cartopy也不行。 后来在一番折腾之后,尝试用了python3.9,一切都变得简单了起来,首先弄个虚拟环境python3.9,然后按装一系列的包:cartopy,cinrad等包 具 Read More
posted @ 2024-08-14 11:28 秋刀鱼CCC Views(123) Comments(0) Diggs(0) Edit
我这里有2023年6月-2024年8月每日的温度数据,想画一个小提琴图,看看其中值等信息 代码如下: #!usr/bin/env python # -*- coding:utf-8 -*- """ @author: Suyue @file: vilolinpic.py @time: 2024/08/ Read More
posted @ 2024-08-13 15:46 秋刀鱼CCC Views(20) Comments(0) Diggs(0) Edit
根据网上的一些关于风云4号卫星的数据处理方法与本人自己的修改 风云4号卫星云顶温度出图代码如下: 对于色斑的选择下一步还需要继续修改和精进 #!usr/bin/env python # -*- coding:utf-8 -*- """ @author: Suyue @file: CTT_map.py Read More
posted @ 2024-07-22 17:46 秋刀鱼CCC Views(145) Comments(0) Diggs(0) Edit
增雨飞机作业路线是excel形式存储的文件,里面有经度、纬度、作业高度的信息,画一个作业路线的3d图 代码如下: #!usr/bin/env python # -*- coding:utf-8 -*- """ @author: Suyue @file: shiyan.py @time: 2024/0 Read More
posted @ 2024-07-05 10:53 秋刀鱼CCC Views(30) Comments(0) Diggs(0) Edit
用中国区的数据,查看风云4a的云顶温度 #!usr/bin/env python # -*- coding:utf-8 -*- """ @author: Suyue @file: CTT.py @time: 2024/06/12 @desc: """ import netCDF4 from netC Read More
posted @ 2024-06-24 10:56 秋刀鱼CCC Views(27) Comments(0) Diggs(0) Edit