Remove LUA example

LUA-LGI seems to be buggy with GLists (or I a too lame), thus the
example code cannot be reproduced in LUA yet.
This commit is contained in:
Gergely Polonkai 2014-03-15 20:27:05 +01:00
parent 41a80ca365
commit 2fa75d0906
1 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
local lgi = require 'lgi'
local SweGlib = lgi.require('SweGlib', '2.0')
SweGlib.init()
local timestamp = SweGlib.Timestamp.new()
timestamp:set_gregorian_full(1983, 3, 7, 11, 54, 45, 0, 1)
local moment = SweGlib.Moment.new()
moment:set_timestamp(timestamp)
moment:set_timestamp(timestamp)
moment:set_coordinates(19.03990999, 47.49801000, 280)
moment:set_house_system(SweGlib.HouseSystem.PLACIDUS)
moment:add_all_planets()
local planet = moment:get_planet(SweGlib.Planet.SUN)
io.write(planet:get_position(), "\n")