mirror of
https://github.com/csete/gpredict
synced 2026-08-13 17:39:46 -04:00
git-svn-id: https://gpredict.svn.sourceforge.net/svnroot/gpredict/trunk@122 ab6734ba-2843-0410-b83b-99c217ef6c0f
108 lines
3.9 KiB
C
108 lines
3.9 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
|
/*
|
|
Gpredict: Real-time satellite tracking and orbit prediction program
|
|
|
|
Copyright (C) 2001-2008 Alexandru Csete, OZ9AEC.
|
|
Parts are Copyright John A. Magliacane, KD2BD 1991-2003 (indicated below)
|
|
|
|
Authors: Alexandru Csete <oz9aec@gmail.com>
|
|
John A. Magliacane, KD2BD.
|
|
|
|
Comments, questions and bugreports should be submitted via
|
|
http://sourceforge.net/projects/gpredict/
|
|
More details can be found at the project home page:
|
|
|
|
http://gpredict.oz9aec.net/
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, visit http://www.fsf.org/
|
|
*/
|
|
|
|
#include <glib.h>
|
|
#include <glib/gi18n.h>
|
|
#include "sgpsdp/sgp4sdp4.h"
|
|
#include "sat-log.h"
|
|
#ifdef HAVE_CONFIG_H
|
|
# include <build-config.h>
|
|
#endif
|
|
#include "tle-tools.h"
|
|
|
|
|
|
|
|
|
|
/** \brief Convert NASA 2-line orbital element set to tle_t structure.
|
|
* \param line1 The first line containing the satellite name.
|
|
* \param line2 The second line.
|
|
* \param line3 The third line.
|
|
* \param checksum Flag indicating whether to perform checksum check.
|
|
* \param tle Pointer to a tle_t structure where the TLE data will be put.
|
|
* \return TLE_CONV_SUCCESS if the conversion is successful or TLE_CONV_ERROR
|
|
* if an error has occurred during the conversion.
|
|
*
|
|
* This function converts NASA 2-line orbital element data (as read from a tle
|
|
* file) into a tle_t structure, which is used all over in gpredict. Note that
|
|
* a standard 2-line data actually consists of three lines, the extra line
|
|
* containing the name of the satellite in a field of 25 characters.
|
|
*
|
|
* The flag checksum can be used to control whether verification of the checksum
|
|
* should be fperformed or not. If the flag is TRUE and the checksum is invalid,
|
|
* an error message is logged and the function returns TLE_CONV_ERROR. The caller
|
|
* can still ignore the error code since the tle structure will be populated;
|
|
* however, the data may be nonsense.
|
|
*/
|
|
gint
|
|
twoline2tle (gchar *line1, gchar *line2, gchar *line3,
|
|
gboolean checksum, tle_t *tle)
|
|
{
|
|
|
|
/* check function parameters */
|
|
if G_UNLIKELY((line1 == NULL) || (line2 == NULL) || (line3 == NULL)) {
|
|
sat_log_log (SAT_LOG_LEVEL_BUG,
|
|
_("%s: NULL input data!"), __FUNCTION__);
|
|
return TLE_CONV_ERROR;
|
|
}
|
|
if G_UNLIKELY(tle == NULL) {
|
|
sat_log_log (SAT_LOG_LEVEL_BUG,
|
|
_("%s: NULL output storage!"), __FUNCTION__);
|
|
return TLE_CONV_ERROR;
|
|
}
|
|
|
|
|
|
|
|
return TLE_CONV_SUCCESS;
|
|
}
|
|
|
|
|
|
|
|
/** \brief Convert internal tle_t structure to NASA 2-line oribital element set.
|
|
* \param tle Pointer to the tle_t structure that holds the data to be
|
|
* converted.
|
|
* \param line1 Pointer to unallocated memory where the first line will be
|
|
* stored. The pointer should be freed when no longer needed.
|
|
* \param line2 Pointer to unallocated memory where the second line will be
|
|
* stored. The pointer should be freed when no longer needed.
|
|
* \param line3 Pointer to unallocated memory where the third line will be
|
|
* stored. The pointer should be freed when no longer needed.
|
|
* \return TLE_CONV_SUCCESS if conversion went OK, TLE_CONV_ERROR otherwise.
|
|
*
|
|
* \note An error message will be logged if an error occurs.
|
|
*/
|
|
gint
|
|
tle2twoline (tle_t *tle, gchar *line1, gchar *line2, gchar *line3)
|
|
{
|
|
return TLE_CONV_SUCCESS;
|
|
}
|
|
|
|
|
|
|
|
|