1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
<!--
//-----------------------------------------------------------------------------
// Copyright (C) 2002-2017 Thomas S. Ullrich
//
// This file is part of "xyscan".
//
// This file may be used under the terms of the GNU General Public License.
// This project is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License.
//
// Author: Thomas S. Ullrich
// Last update: Oct 4, 2017
//-----------------------------------------------------------------------------
-->
<html>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Coordinate Systems</title>
<body style="font-family: Arial, Helvetica, sans-serif, Geneva">
<h2>Coordinate Systems</h2>
<p><em>xyscan</em> uses 2 coordinate systems:</p>
<dl>
<dt><u>Local Coordinates</u>
</dt><dd>These are essentially the screen
coordinates of the window in which the plot is displayed. The units are screen pixel. The upper left corner of the plot is defined as the origin (0,0) of the plot. <em>x</em> increases to the
right, <em>y</em> increases downwards. They are displayed on the top of the <em>Coordinate Display</em> window once a plot is loaded.
</dd><dt><u>Plot Coordinates</u>
</dt>
<dd>These are the coordinate of the plot/data points you want to scan. In order to transform local coordinates into plot coordinates, <em>xyscan</em> needs <a href="markers.html">markers</a> to
be set along the axis and needs to know if the axis have a linear or logarithmic scale. The user has to provide the position
of the markers in plot coordinates.</dd></dl>
</body>
</html>
|