parent
ac012aada2
commit
cac67e57e3
@ -109,3 +109,7 @@ The size of all data files provided by Astrodienst is around 40MB. Although it s
|
|||||||
### Fixed stars are not known yet
|
### Fixed stars are not known yet
|
||||||
|
|
||||||
Although Swiss Ephemeris has the functionality to calculate the position of fixed stars, SWE-GLib doesn't provide such functionality. This, however, is a planned feature for the close future.
|
Although Swiss Ephemeris has the functionality to calculate the position of fixed stars, SWE-GLib doesn't provide such functionality. This, however, is a planned feature for the close future.
|
||||||
|
|
||||||
|
## Licencing
|
||||||
|
|
||||||
|
As the underlying Swiss Ephemeris is published under GPL (or a commercial license I can not afford), SWE-GLib is also uses that. This means that you can currently use SWE-GLib in software published under the GNU GPL v3.
|
||||||
|
@ -1,21 +1,20 @@
|
|||||||
/*** BEGIN file-header ***/
|
/*** BEGIN file-header ***/
|
||||||
/* gswe-enumtypes.c - Enumeration types for SWE-GLib
|
/* gswe-enumtypes.c - Enumeration types for SWE-GLib
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013 Gergely Polonkai
|
* Copyright © 2013 Gergely Polonkai
|
||||||
*
|
*
|
||||||
* SWE-GLib is free software; you can redistribute it and/or modify it under
|
* SWE-GLib is free software: you can redistribute it and/or modify
|
||||||
* the terms of the GNU Lesser General Public License as published by the Free
|
* it under the terms of the GNU General Public License as published by
|
||||||
* Software Foundation; either version 2 of the License, or (at your opinion)
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* SWE-GLib is distributed in the hope that it will be useful, but WITHOUT ANY
|
* SWE-GLib is distributed in the hope that it will be useful,
|
||||||
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this library; if not, write to the Free Software Foundation,
|
* along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||||
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
*/
|
*/
|
||||||
#include "gswe-enumtypes.h"
|
#include "gswe-enumtypes.h"
|
||||||
#include "@filename@"
|
#include "@filename@"
|
||||||
|
@ -1,21 +1,20 @@
|
|||||||
/*** BEGIN file-header ***/
|
/*** BEGIN file-header ***/
|
||||||
/* gswe-enumtypes.h - Enumeration types for SWE-GLib
|
/* gswe-enumtypes.h - Enumeration types for SWE-GLib
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013 Gergely Polonkai
|
* Copyright © 2013 Gergely Polonkai
|
||||||
*
|
*
|
||||||
* SWE-GLib is free software; you can redistribute it and/or modify it under
|
* SWE-GLib is free software: you can redistribute it and/or modify
|
||||||
* the terms of the GNU Lesser General Public License as published by the Free
|
* it under the terms of the GNU General Public License as published by
|
||||||
* Software Foundation; either version 2 of the License, or (at your opinion)
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* SWE-GLib is distributed in the hope that it will be useful, but WITHOUT ANY
|
* SWE-GLib is distributed in the hope that it will be useful,
|
||||||
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this library; if not, write to the Free Software Foundation,
|
* along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||||
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
*/
|
*/
|
||||||
#ifndef __GSWE_ENUM_TYPES_H__
|
#ifndef __GSWE_ENUM_TYPES_H__
|
||||||
#define __GSWE_ENUM_TYPES_H__
|
#define __GSWE_ENUM_TYPES_H__
|
||||||
|
@ -1,20 +1,19 @@
|
|||||||
/* gswe-moment.c - Planetary moment object for SWE-GLib
|
/* gswe-moment.c - Planetary moment object for SWE-GLib
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013 Gergely Polonkai
|
* Copyright © 2013 Gergely Polonkai
|
||||||
*
|
*
|
||||||
* SWE-GLib is free software; you can redistribute it and/or modify it under
|
* SWE-GLib is free software: you can redistribute it and/or modify
|
||||||
* the terms of the GNU Lesser General Public License as published by the Free
|
* it under the terms of the GNU General Public License as published by
|
||||||
* Software Foundation; either version 2 of the License, or (at your opinion)
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* SWE-GLib is distributed in the hope that it will be useful, but WITHOUT ANY
|
* SWE-GLib is distributed in the hope that it will be useful,
|
||||||
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this library; if not, write to the Free Software Foundation,
|
* along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||||
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
*/
|
*/
|
||||||
#include "swe-glib.h"
|
#include "swe-glib.h"
|
||||||
#include "gswe-types.h"
|
#include "gswe-types.h"
|
||||||
|
@ -1,20 +1,19 @@
|
|||||||
/* gswe-moment.h - Planetary moment object for SWE-GLib
|
/* gswe-moment.h - Planetary moment object for SWE-GLib
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013 Gergely Polonkai
|
* Copyright © 2013 Gergely Polonkai
|
||||||
*
|
*
|
||||||
* SWE-GLib is free software; you can redistribute it and/or modify it under
|
* SWE-GLib is free software: you can redistribute it and/or modify
|
||||||
* the terms of the GNU Lesser General Public License as published by the Free
|
* it under the terms of the GNU General Public License as published by
|
||||||
* Software Foundation; either version 2 of the License, or (at your opinion)
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* SWE-GLib is distributed in the hope that it will be useful, but WITHOUT ANY
|
* SWE-GLib is distributed in the hope that it will be useful,
|
||||||
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this library; if not, write to the Free Software Foundation,
|
* along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||||
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
*/
|
*/
|
||||||
#ifndef __GSWE_MOMENT_H__
|
#ifndef __GSWE_MOMENT_H__
|
||||||
#define __GSWE_MOMENT_H__
|
#define __GSWE_MOMENT_H__
|
||||||
|
@ -1,21 +1,20 @@
|
|||||||
/* gswe-timestamp.c - Converter GObject between Gregorian calendar date and
|
/* gswe-timestamp.c - Converter GObject between Gregorian calendar date and
|
||||||
* Julian day
|
* Julian day
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013 Gergely Polonkai
|
* Copyright © 2013 Gergely Polonkai
|
||||||
*
|
*
|
||||||
* SWE-GLib is free software; you can redistribute it and/or modify it under
|
* SWE-GLib is free software: you can redistribute it and/or modify
|
||||||
* the terms of the GNU Lesser General Public License as published by the Free
|
* it under the terms of the GNU General Public License as published by
|
||||||
* Software Foundation; either version 2 of the License, or (at your opinion)
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* SWE-GLib is distributed in the hope that it will be useful, but WITHOUT ANY
|
* SWE-GLib is distributed in the hope that it will be useful,
|
||||||
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this library; if not, write to the Free Software Foundation,
|
* along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||||
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
*/
|
*/
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
|
@ -1,21 +1,20 @@
|
|||||||
/* gswe-timestamp.h - Converter GObject between Gregorian calendar date and
|
/* gswe-timestamp.h - Converter GObject between Gregorian calendar date and
|
||||||
* Julian day
|
* Julian day
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013 Gergely Polonkai
|
* Copyright © 2013 Gergely Polonkai
|
||||||
*
|
*
|
||||||
* SWE-GLib is free software; you can redistribute it and/or modify it under
|
* SWE-GLib is free software: you can redistribute it and/or modify
|
||||||
* the terms of the GNU Lesser General Public License as published by the Free
|
* it under the terms of the GNU General Public License as published by
|
||||||
* Software Foundation; either version 2 of the License, or (at your opinion)
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* SWE-GLib is distributed in the hope that it will be useful, but WITHOUT ANY
|
* SWE-GLib is distributed in the hope that it will be useful,
|
||||||
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this library; if not, write to the Free Software Foundation,
|
* along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||||
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
*/
|
*/
|
||||||
#ifndef __SWE_GLIB_GSWE_TIMESTAMP_H__
|
#ifndef __SWE_GLIB_GSWE_TIMESTAMP_H__
|
||||||
#define __SWE_GLIB_GSWE_TIMESTAMP_H__
|
#define __SWE_GLIB_GSWE_TIMESTAMP_H__
|
||||||
|
@ -1,20 +1,19 @@
|
|||||||
/* gswe-types.h - Basic types of SWE-GLib
|
/* gswe-types.h - Basic types of SWE-GLib
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013 Gergely Polonkai
|
* Copyright © 2013 Gergely Polonkai
|
||||||
*
|
*
|
||||||
* SWE-GLib is free software; you can redistribute it and/or modify it under
|
* SWE-GLib is free software: you can redistribute it and/or modify
|
||||||
* the terms of the GNU Lesser General Public License as published by the Free
|
* it under the terms of the GNU General Public License as published by
|
||||||
* Software Foundation; either version 2 of the License, or (at your opinion)
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* SWE-GLib is distributed in the hope that it will be useful, but WITHOUT ANY
|
* SWE-GLib is distributed in the hope that it will be useful,
|
||||||
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this library; if not, write to the Free Software Foundation,
|
* along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||||
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
*/
|
*/
|
||||||
#ifndef __SWE_GLIB_GSWE_PLANETS_H__
|
#ifndef __SWE_GLIB_GSWE_PLANETS_H__
|
||||||
#define __SWE_GLIB_GSWE_PLANETS_H__
|
#define __SWE_GLIB_GSWE_PLANETS_H__
|
||||||
|
@ -1,19 +1,18 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2013 Gergely Polonkai
|
* Copyright © 2013 Gergely Polonkai
|
||||||
*
|
*
|
||||||
* SWE-GLib is free software; you can redistribute it and/or modify it under
|
* SWE-GLib is free software: you can redistribute it and/or modify
|
||||||
* the terms of the GNU Lesser General Public License as published by the Free
|
* it under the terms of the GNU General Public License as published by
|
||||||
* Software Foundation; either version 2 of the License, or (at your opinion)
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* SWE-GLib is distributed in the hope that it will be useful, but WITHOUT ANY
|
* SWE-GLib is distributed in the hope that it will be useful,
|
||||||
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this library; if not, write to the Free Software Foundation,
|
* along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||||
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
*/
|
*/
|
||||||
#ifdef __SWE_GLIB_BUILDING__
|
#ifdef __SWE_GLIB_BUILDING__
|
||||||
#ifndef __SWE_GLIB_PRIVATE_H__
|
#ifndef __SWE_GLIB_PRIVATE_H__
|
||||||
|
@ -1,20 +1,19 @@
|
|||||||
/* SWE-GLib - GLib style wrapper library around Astrodienst's Swiss Ephemeris
|
/* SWE-GLib - GLib style wrapper library around Astrodienst's Swiss Ephemeris
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013 Gergely Polonkai
|
* Copyright © 2013 Gergely Polonkai
|
||||||
*
|
*
|
||||||
* SWE-GLib is free software; you can redistribute it and/or modify it under
|
* SWE-GLib is free software: you can redistribute it and/or modify
|
||||||
* the terms of the GNU Lesser General Public License as published by the Free
|
* it under the terms of the GNU General Public License as published by
|
||||||
* Software Foundation; either version 2 of the License, or (at your opinion)
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* SWE-GLib is distributed in the hope that it will be useful, but WITHOUT ANY
|
* SWE-GLib is distributed in the hope that it will be useful,
|
||||||
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this library; if not, write to the Free Software Foundation,
|
* along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||||
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
*/
|
*/
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
#define GETTEXT_PACKAGE "swe-glib"
|
#define GETTEXT_PACKAGE "swe-glib"
|
||||||
|
@ -1,20 +1,19 @@
|
|||||||
/* SWE-GLib - GLib style wrapper library around Astrodienst's Swiss Ephemeris
|
/* SWE-GLib - GLib style wrapper library around Astrodienst's Swiss Ephemeris
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013 Gergely Polonkai
|
* Copyright © 2013 Gergely Polonkai
|
||||||
*
|
*
|
||||||
* SWE-GLib is free software; you can redistribute it and/or modify it under
|
* SWE-GLib is free software: you can redistribute it and/or modify
|
||||||
* the terms of the GNU Lesser General Public License as published by the Free
|
* it under the terms of the GNU General Public License as published by
|
||||||
* Software Foundation; either version 2 of the License, or (at your opinion)
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* SWE-GLib is distributed in the hope that it will be useful, but WITHOUT ANY
|
* SWE-GLib is distributed in the hope that it will be useful,
|
||||||
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this library; if not, write to the Free Software Foundation,
|
* along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||||
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
*/
|
*/
|
||||||
#ifndef __SWE_GLIB_H__
|
#ifndef __SWE_GLIB_H__
|
||||||
#define __SWE_GLIB_H__
|
#define __SWE_GLIB_H__
|
||||||
|
Loading…
x
Reference in New Issue
Block a user