• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

src/H03-May-2022-1,5351,249

AngleMeasure.qrcH A D25-Dec-2021146 76

COPYINGH A D25-Dec-202117.6 KiB341281

ChangeLogH A D25-Dec-2021574 3423

READMEH A D25-Dec-20211.3 KiB4830

README

1AngleMeasure plugin for Stellarium
2==================================
3
4A simple tool to measure the angular distance between two points.
5
6TODO
7====
8
9+ Better selection and clearing - it's a tad confusing at the moment
10+ Smarter label position / ability to change label position
11
12BUILDING THE PLUGIN
13===================
14
15Please note, these instructions are only directly applicable to Linux.
16Windows and OSX targets will probably require modification of the
17CMakeLists.txt file.
18
190.  Install and build the SVN version of Stellarium as per the
20instructions on the Stellarium wiki:
21
22  http://stellarium.org/wiki/index.php/Compilation_on_Linux
23
24NOTE: that the main program build must be set so that the libStelMain.so
25file will be generated.  This is achieved by setting the
26GENERATE_STELMAINLIB variable in the main Stellarium CMakeLists.txt file
27to 1, like so:
28
29  SET(GENERATE_STELMAINLIB 1)
30
311.  Set the environment variable STELROOT to the root of the Stellarium
32source tree.  The Stellarium build directory is expected to be:
33
34  $STELROOT/builds/unix
35
362.  Create a sub-directory builds/unix and change into that directory.
37
383.  Run:
39
40  cmake ../..
41  make
42  make install
43
44If all goes well, the relevant files should be built and copied to your
45~/.stellarium/modules directory.
46
47
48