Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
contrib:complimentarycaveapps [2020/12/20 15:38] – Compass2Therion added beni | contrib:complimentarycaveapps [2023/11/21 20:19] (current) – [Qave] typos sluka | ||
---|---|---|---|
Line 47: | Line 47: | ||
* Author: Rich Smith | * Author: Rich Smith | ||
- | * Version: 1.3.11 September | + | * Version: 1.7.0 September |
* Platform: Android 4.3 + | * Platform: Android 4.3 + | ||
* Program language: EN | * Program language: EN | ||
* Program manual lang.: EN | * Program manual lang.: EN | ||
* Links: https:// | * Links: https:// | ||
- | | + | |
+ | https:// | ||
+ | | ||
The SexyTopo cave and underground surveying app for Android. Next-gen surveying with a sexy interface. It interfaces with a Disto-X and builds up a model of the cave. It provides a sketching environment for the cave surveyor to collect the details, and exports all the information to Therion, Survex, Compass, text (PocketTopo Therion) and SVG. | The SexyTopo cave and underground surveying app for Android. Next-gen surveying with a sexy interface. It interfaces with a Disto-X and builds up a model of the cave. It provides a sketching environment for the cave surveyor to collect the details, and exports all the information to Therion, Survex, Compass, text (PocketTopo Therion) and SVG. | ||
Line 117: | Line 119: | ||
* Author: Pauline Piechowiak (Svist) | * Author: Pauline Piechowiak (Svist) | ||
- | * Version: | + | * Version: 2.4.1 May 10, 2023 |
* Platform: Android - 4.0 and above | * Platform: Android - 4.0 and above | ||
* Program language: EN | * Program language: EN | ||
Line 123: | Line 125: | ||
* Video manual lang.: EN | * Video manual lang.: EN | ||
* Link: [[https:// | * Link: [[https:// | ||
+ | * Compatible hardware: DistoX 2, [[https:// | ||
- | Simple application | + | Simple application |
Tutorials (by Derek Bristol): https:// | Tutorials (by Derek Bristol): https:// | ||
Line 135: | Line 138: | ||
Features:\\ | Features:\\ | ||
- | - connecting to DistoX via bluetooth\\ | + | - connecting to DistoX, DistoX BLE, BRIC5, Shetland Attack Pony, CaveSniper |
+ | - calibration of DistoX. | ||
- measurements processing\\ | - measurements processing\\ | ||
- measurements preview\\ | - measurements preview\\ | ||
Line 252: | Line 256: | ||
* Author: Benedikt Hallinger | * Author: Benedikt Hallinger | ||
* Link: [[https:// | * Link: [[https:// | ||
- | * Platform: Linux, Windows (64bit) | + | * Platform: Linux, Windows (64bit), MacOS |
therionsurface2survex takes a therion source file containing a surface mesh (`surface ... grid ... endsurface`) and converts it into a survex .swx file. This can be compiled by `cavern` into a survex .3d file, which may be combined with your cave's 3d-file. | therionsurface2survex takes a therion source file containing a surface mesh (`surface ... grid ... endsurface`) and converts it into a survex .swx file. This can be compiled by `cavern` into a survex .3d file, which may be combined with your cave's 3d-file. | ||
Line 267: | Line 271: | ||
* Link: https:// | * Link: https:// | ||
* Platform: Cross-Platform (Java 11 needed) | * Platform: Cross-Platform (Java 11 needed) | ||
+ | |||
+ | ---- | ||
+ | ==== Survex2Therion converter ==== | ||
+ | It translates data from Survex format (*.svx) to the format used by Therion (*.th). | ||
+ | |||
+ | * Author: Andrew Atkinson | ||
+ | * Link: https:// | ||
+ | * Platform: Cross-Platform (Python) | ||
+ | |||
+ | Written for the data set I was managing, not a comprehensive converter, hopefully it will be a useful starting point for other people wishing to convert from Survex format to Therion. | ||
+ | |||
+ | To use run this script in your root directory of the data set. | ||
+ | |||
+ | ==== Remove empty lines and areas ==== | ||
+ | Therion editor did (still can?) leave empty lines or areas, that have been reported to cause problems. This command line pipe removes these | ||
+ | |||
+ | * Author: Andrew Atkinson | ||
+ | * Platform: Linux CLI | ||
+ | |||
+ | This script was written for a specific data set. It has not been tested beyond, it is placed here as a starting point for others. | ||
+ | **Warning**, | ||
+ | |||
+ | < | ||
+ | grep -rnIH -A 1 "^area " * |grep endarea|tac|awk -F- ' | ||
+ | </ | ||
+ | |||
+ | The above works for areas, substitute line and endline to also do areas. | ||
+ | It is strongly recommended that the pipe is built up one step at a time to check it works on the data set. Below is an explanation of each step with known problems indicated. | ||
+ | |||
+ | < | ||
+ | grep -rnIH -A 1 "^area " * | ||
+ | </ | ||
+ | |||
+ | Lists all lines in files with the ' | ||
+ | |||
+ | < | ||
+ | grep endarea | ||
+ | </ | ||
+ | |||
+ | From the above list only the lines that contain endarea | ||
+ | |||
+ | < | ||
+ | tac | ||
+ | </ | ||
+ | |||
+ | Reverses the order. When the lines area removed it is done by line number, so have to go from the end of the file otherwise susequent lines will have changed number. | ||
+ | |||
+ | < | ||
+ | awk -F- ' | ||
+ | </ | ||
+ | |||
+ | Deletes the lines, the -i just does it, removing the -i dumps it to screen, without changing the file | ||
+ | |||
+ | |||
+ | |||
+ |