initial upload

This commit is contained in:
2024-09-10 20:25:18 +08:00
parent b8de03ee4f
commit f1cc876972
377 changed files with 2721267 additions and 34 deletions

13
gm3d/out_obs.cpp Normal file
View File

@@ -0,0 +1,13 @@
#include "gm3d.h"
int GM3D::OutObs(char* filename){
ofstream outfile;
if (open_outfile(outfile,filename)) return -1;
outfile << "# y(m)-easting x(m)-northing ele(m) obs-val(mGal|Eo) obs-dev(mGal|Eo)" << endl;
for (int i = 0; i < obs_num_; i++){
outfile << obs_p_[i].y << " " << obs_p_[i].x << " " << -1.0*obs_p_[i].z << " "
<< setprecision(16) << obs_p_[i].val << " " << obs_p_[i].dev << endl;
}
outfile.close();
return 0;
}