You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GCS-GISControlDlg-for-981A-.../QB_ImgProcessFun.h

25 lines
610 B
C

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#ifndef QB_IMGPROCESS_H
#define QB_IMGPROCESS_H
#ifdef IMGPROCESS_EXPORTS
#define IMGPROCESS_API __declspec(dllexport)
#else
#define IMGPROCESS_API __declspec(dllimport)
#endif
//10 功能:基于经纬度读取地面高程
//输入:
// 1. fLonDeg: 经度(度)
// 2. fLatDeg: 纬度(度)
// 3. sDir: 高程数据文件存储路径, 默认设为:"D:\\ElevationData"
//
//输出:
// 1. fElevator:高程(米)
//
//返回值若函数运行成功返回true否则返回false
IMGPROCESS_API bool GetElevation( float& fElevator, double dLonDeg, double dLatDeg, string sDir);
IMGPROCESS_API void ClearDem();
#endif