Fair Point. In terms of reading the files. I have another custom built file convertor which takes the file and compresses them into a zip format for use in another program. Unfortunately, this is black box to me and there are no error messages. The above attachments are displayed in notepad++. In both files they show up with CR LF and are both in UTF-8 encoding (not 100% sure if this is notepad ++ default or whether it actual in this format). I can read either of the files in Arcgis desktop 10.3.1 - through to Arcgis desktop 10.7.1 and they display correctly. I can also read the files in Qgis 3.10. I can convert the files to ascii in both arcgis and qgis (gdal-translate). The qgis version puts a white space at the front of each row. I have to remove this using a powershell command to make it work in the custom file converter: code $file_path =$args[0] $file_path_out = $args[1] $content = Get-Content $file_path $content | Foreach {$_.trimstart(" ")} | Set-Content $file_path text My guess is that M9 exports out as .asc and .grd in a different format to arcgis/qgis. I was hoping there might be a way to adjust the formatting of the .asc in M9. I have a work around…. It just would have been nice to not have to translate from say .tiff > .asc > .zip…. Rather just go .asc > .zip
|