[Therion] Joining old and new surveys

2015-02-23 Thread Footleg
If you are genuinely processing Compass data which was originally measured
in feet and inches, then use that format in your Therion data files and
just tell Therion which units your data is in. If however you are working
with data that was stored in Compass but originally surveying in metric,
then you can use my cave converter program to convert Compass data to
Survex data. Not quite Therion format, but very close and you can cut and
paste the numbers from the Survex file into Therion files. This will
convert the data back to metric from the imperial units saved in a Compass
file.

http://wscc.darkgem.com/caveconverter/

Footleg

On 17 February 2015 at 14:50, Martin Sluka  wrote:

>
> > 17. 2. 2015 v 13:34, Graham Mullan :
> >
> > One always has to remember, however, that Compass natively stores all
> linear
> > measurements in feet and decimal feet, not in metres. This is the case
> however the
> > data is inputted. I have accidentally ended up with some alarmingly long
> caves before
> > remembering this!
>
> Therion may too. :)
>
> m.s.
> ___
> Therion mailing list
> Therion at speleo.sk
> http://mailman.speleo.sk/mailman/listinfo/therion
>
-- next part --
An HTML attachment was scrubbed...
URL: 
<http://mailman.speleo.sk/pipermail/therion/attachments/20150223/7d15508f/attachment.html>


[Therion] MacOSX error and solution: ImageMagick after upgrading from Mt.Lion to Mavericks

2015-02-23 Thread Olly Betts
On Sat, Feb 21, 2015 at 08:40:57PM +0100, Martin Sluka wrote:
> Why is ImageMagick trying to load JPG coder at
> /usr/local/Cellar/imagemagick/6.8.8-9/lib/ImageMagick//modules-Q16/coders/jpeg.la?
> Why the double slash after ImageMagick// ?

Repeating a slash (any number of times) in a Unix filename is generally
ignored (the OS itself should ignore it, though programs which parse
filenames might not be written with the possibility in mind).

A doubled slash often arises from building a path like:

   directory + '/' + relative_path

when directory already has a trailing '/'.

Cheers,
Olly