diff --git a/examples/basic.js b/examples/basic.js index 48db4e8..e55a92d 100644 --- a/examples/basic.js +++ b/examples/basic.js @@ -8,7 +8,7 @@ timestamp.set_gregorian_full(1983, 3, 7, 11, 54, 45, 0, 1); var moment = new Swe.Moment(); moment.add_all_planets(); moment.set_timestamp(timestamp); -moment.set_coordinates(19.03990999, 47.49801000, 280); +moment.set_coordinates(19.03991, 47.49801, 280); moment.set_house_system(Swe.HouseSystem.PLACIDUS); var all_planets = moment.get_all_planets() diff --git a/examples/basic.pl b/examples/basic.pl index 9597ca2..3dab052 100644 --- a/examples/basic.pl +++ b/examples/basic.pl @@ -19,7 +19,7 @@ $timestamp->set_gregorian_full(1983, 3, 7, 11, 54, 45, 0, 1); my $moment = SweGlib::Moment->new(); $moment->set_timestamp($timestamp); -$moment->set_coordinates(19.0390999, 47.49801000, 280); +$moment->set_coordinates(19.03991, 47.49801, 280); $moment->set_house_system("placidus"); $moment->add_all_planets(); diff --git a/examples/basic.py b/examples/basic.py index 5663329..25f3ac8 100644 --- a/examples/basic.py +++ b/examples/basic.py @@ -9,7 +9,7 @@ timestamp.set_gregorian_full(1983, 3, 7, 11, 54, 45, 0, 1) moment = SweGlib.Moment() moment.set_timestamp(timestamp) -moment.set_coordinates(19.03990999, 47.49801000, 280) +moment.set_coordinates(19.03991, 47.49801, 280) moment.set_house_system(SweGlib.HouseSystem.PLACIDUS) moment.add_all_planets()