疾风亦有龟途 | 搜索
综合排序时间浏览量
全部分类安卓/IOS后端运维web前端软件安装学习/科研疾风龟途月记还是月季技巧杂糅
找到约 7 条结果
气象数据读取(5)---时空特征匹配
inputValue - v) <= IntervalValue) {
matchResult.add(fileList.get(i).getPath());
}
}
return matchResult;
}
/**
* case2 用户给定经度
*
* @param inputValue 输入你要设定的经度值,比如说东经20.0,西经35.21等等
* @param IntervalValue 输入阈值范围,比如说±3°,那就是3.0。
* @param filePath 输入你要检索的文件夹路径
* @return
*/
public List getLonMat(Double inputValue, Double IntervalValue, String filePath) {
List matchResult = new ArrayList<
2020/09/02 06:40
1511
时空
经度
纬度
海拔
温度
Python制图+Java数据处理---高效制作雷评报告
或者3km的闪击点要素。我们需要计算辖区内各个闪击点与站点的距离。给定两个点A和B,已知两点的经纬度值,和地球半径。我们可以很快计算得到两者之间的距离。 public class getDistance {
public static double getDis(double latitude1, double longitude1,
double latitude2, double longitude2) {
// 纬度
double lat1 = Math.toRadians(latitude1);
double lat2 = Math.toRadians(latitude2);
// 经度
double lng1 = Math.toRadians(longitude1);
double lng2 = Math.toRadians(longitude2);
// 纬度之差
2021/11/08 11:13
1412
雷评
闪电
java
python
皮卡丘
气象灾害风险普查中雷灾资料的数据清洗与百度地图正/逆地理编码使用
);
if (json.getInteger("status") == 0) {
return json.getJSONObject("result").getJSONObject("location");
}
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
通过上面的方法,我们返回了一个Json字符串,这个字符串里面包含了目的地的经度和纬度。 有了经度和纬度,我们通过逆地理编码,就可以获得目的地所在的乡镇。 3.目的地所在乡镇的获取getTownByLatAndLng 根据获得的经纬度,我们通过访问相应的接口,服务器会返回给我们一个json字符串,如下所示: {
"status": 0,
"result": {
"location": {
"lng": 115.26599353332347,
"lat": 36.070504134133987
},
"formatted_
2022/04/22 15:07
1610
风险普查
雷电
百度地图
气象数据读取(3)---COSMIC掩星数据读取
for (File itemFile : fileList) {
try {
ncData = NetcdfFile.open(itemFile.getPath());
mNc.add(ncData);
} catch (IOException e) {
e.printStackTrace();
}
}
return mNc;
}
/**
* 获取掩星点纬度,24
*
* @return
*/
public List getRoLat() {
return getGlobalVariablesLists(24, mLat);
}
/**
* 获取掩星点经度,25
*
* @return
*/
public List<
2020/08/29 06:30
2111
cosmic
java
掩星
数据提取
气象数据读取(2)--- FY-3C(风云)掩星数据读取
}
return mNc;
}
/**
* 获取掩星点纬度,11
*
* @return
*/
public List getRoLat() {
return getGlobalVariablesLists(11, mLat);
}
/**
* 获取掩星点经度,12
*
* @return
*/
public List getRoLon() {
return getGlobalVariablesLists(12, mLon);
}
/**
* 获取掩星事件发生年份
*
* @return
*/
public List getRoYear() {
return getGlobalVariablesLists(0, mYear);
}
/**
*
2020/08/29 05:22
1910
风云
掩星
java
NC
数据提取
气象数据读取(4)--- 优雅的交汇
= new ArrayList();
return isFyFile ? getGlobalVariablesLists(11, sb, nf) : getGlobalVariablesLists(24, sb, nf);
//return getGlobalVariablesLists(11, mLat);
}
/**
* 获取掩星点经度
* GNOS是12
* COSMIC是
*
* @return
*/
public List getRoLon(List nf) {
List sb = new ArrayList();
return isFyFile ? getGlobalVariablesLists(12, sb, nf) : getGlobalVariablesLists(25, sb, nf);
}
/**
*
2020/08/29 06:39
1585
解耦
java
掩星
nc
优雅
风云3E-黎明之星
) {
ncBean latLonInfo = getLatLonInfo(netcdfFile);
ncBeans.add(latLonInfo);
}
createExcel(ncBeans,"type");
matlab画图 figure('color','white')
load coast;
%绘制全球海岸线
plot(long,lat,'color',[0,0,0],'LineWidth',1);hold on;
axis equal;axis tight;grid on;
%scatter(geolon,geolat,'filled','b')
hold on
x2=scatter(meolon,meolat,'filled','g');
hold on
x1=scatter(igsolon,igsolat,'filled','r');
legend([x1(1),x2(1)],'IGSO', 'MEO');
ylabel('纬度/°')
xlabel('经度/°')
set(gca,
2022/07/17 08:50
1887
黎明之星
FY
风云
热门标签