4 Star 26 Fork 10

Yonghe/GeoFlying

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
NearistInter.cs 1.79 KB
一键复制 编辑 原始数据 按行查看 历史
Yonghe 提交于 2020-10-02 09:33 . first
using System;
using System.Collections.Generic;
using System.Text;
namespace GeoFly
{
// Saptial Interpolation for Meteorological Data
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++|
| ***************************************** |
| * * |
| * Nearist Station Interpolation Method * |
| * * |
| ***************************************** |
| * * |
| * Zhang Dong, GeoFly, Nanjing Univ * |
| * written in: 02/2004 * |
| * * |
| ***************************************** |
+++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
class NearistInter : IDWInter
{
public NearistInter(StationInfo station)
{
}
public NearistInter(MapExtent extent, double gridresolustion)
{
}
//输出由多站点插值到某一单站点
//的时序计算结果
public bool SpatialGridOut(List<string> saStationName, //栅格数据输出
float fx, float fy, int snum, int nsize)
{
return false;
}
int GetNearistStationID()
{
return 0;
}
};
class PetInfoSet
{
double dLat; //纬度
double dElev; //高程
string sTav; //平均气温
string sWnd; //平均风速
string sRhmd; //相对湿度
string sShr; //日照百分率
string sMMTemp; //最高最低气温
PetInfoSet() { ResetContent(); }
void ResetContent()
{
dLat = 38.0;
dElev = 1500;
sTav = sWnd = sRhmd = sShr = sMMTemp = "";
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/sucksis/geo-flying.git
git@gitee.com:sucksis/geo-flying.git
sucksis
geo-flying
GeoFlying
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385