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.
#pragma once
/**
* 将上下标字符转换
*
* \param xyz_input 散点文件(.xyz)
* \param grid_output 输出文件(.grd)
* \param step 网格间距步长
* \param tension 张力 (默认应该为0)
* \param fault_file 需要计算的断层文件(没有填空值)(.dat)
* \param boundary_file 需要计算的边界文件(一般是将原图插值完整后裁剪的边界文件)(.txt x\y\序号)
* \return
*/
bool GmtSurfaceInterp(const char* xyz_input, const char* grid_output,
double step, double tension, const char* fault_file, const char* boundary_file, const char* outputfile, double contourStep, int contourMarkStep,
double XMin, double YMin, double XMax, double YMax);