As I've discussed with Josh and Geoff, I have had an issue with insufficient character allocation for paths in GGG2020. When running on our cluster, our issued "home" directory is many directories deep, creating very long paths. As of now, the following changes allow me to run EM27 interferograms through the entire EGI/GGG2020 suite.
Path length changes:
$GGGPATH/src/collate_results/collate_results.f line 204: rlgfile=header_string(:90) --> rlgfile=header_string(:150)
$GGGPTH/src/avg_ker/avg_ker.f line 91: filename128 --> filename150
$GGGPTH/src/i2s/i2s.f line 149: infile100 --> infile128
Jacob also helped me identify an issue that seemed to come from having periods in the path (our cluster has chpc.utah.edu in the path). This fixed it:
$GGGPTH/src/write_aux/write_aux.f line 63: ldot=index(modfile,'.') --> ldot=index(modfile,'.',.TRUE.)
Josh, if you want me to create a pull request I'm happy to.
Aaron
As I've discussed with Josh and Geoff, I have had an issue with insufficient character allocation for paths in GGG2020. When running on our cluster, our issued "home" directory is many directories deep, creating very long paths. As of now, the following changes allow me to run EM27 interferograms through the entire EGI/GGG2020 suite.
Path length changes:
$GGGPATH/src/collate_results/collate_results.f line 204: rlgfile=header_string(:90) --> rlgfile=header_string(:150)
$GGGPTH/src/avg_ker/avg_ker.f line 91: filename128 --> filename150
$GGGPTH/src/i2s/i2s.f line 149: infile100 --> infile128
Jacob also helped me identify an issue that seemed to come from having periods in the path (our cluster has chpc.utah.edu in the path). This fixed it:
$GGGPTH/src/write_aux/write_aux.f line 63: ldot=index(modfile,'.') --> ldot=index(modfile,'.',.TRUE.)
Josh, if you want me to create a pull request I'm happy to.
Aaron