Home
last modified time | relevance | path

Searched refs:tle_str (Results 1 – 4 of 4) sorted by relevance

/dports/comms/gpredict/gpredict-2.2.1/src/sgpsdp/
H A Dtest-001.c70 char tle_str[3][80]; variable
82 if (fgets(tle_str[0], 80, fp) == NULL) in main()
88 if (fgets(tle_str[1], 80, fp) == NULL) in main()
94 if (fgets(tle_str[2], 80, fp) == NULL) in main()
102 if (Get_Next_Tle_Set(tle_str, &sat.tle) == 1) in main()
118 printf("%s", tle_str[0]); in main()
119 printf("%s", tle_str[1]); in main()
120 printf("%s", tle_str[2]); in main()
H A Dtest-002.c70 char tle_str[3][80]; variable
82 if (fgets(tle_str[0], 80, fp) == NULL) in main()
88 if (fgets(tle_str[1], 80, fp) == NULL) in main()
94 if (fgets(tle_str[2], 80, fp) == NULL) in main()
102 if (Get_Next_Tle_Set(tle_str, &sat.tle) == 1) in main()
118 printf("%s", tle_str[0]); in main()
119 printf("%s", tle_str[1]); in main()
120 printf("%s", tle_str[2]); in main()
/dports/comms/gpredict/gpredict-2.2.1/src/
H A Dtle-update.c782 gchar tle_str[3][80]; in read_fresh_tle() local
946 strncpy(tle_str[0], tle_working[0], 80); in read_fresh_tle()
948 strncpy(tle_str[1], tle_working[1], 80); in read_fresh_tle()
949 strncpy(tle_str[2], tle_working[2], 80); in read_fresh_tle()
981 strncpy(tle_str[1], tle_working[0], 80); in read_fresh_tle()
997 tle_str[1][69] = '\0'; in read_fresh_tle()
998 tle_str[2][69] = '\0'; in read_fresh_tle()
1003 catstr[i - 2] = tle_str[1][i]; in read_fresh_tle()
1009 if (Get_Next_Tle_Set(tle_str, &tle) != 1) in read_fresh_tle()
1042 ntle->line1 = g_strdup(tle_str[1]); in read_fresh_tle()
[all …]
/dports/devel/indi/indi-1.9.1/drivers/telescope/
H A Dlx200_10micron.cpp685 std::string tle_str; in SetTLEtoFollow() local
688 tle_str = (std::string) tle; in SetTLEtoFollow()
692 pos = tle_str.find( search, pos ); in SetTLEtoFollow()
695 tle_str.erase( pos, search.length() ); in SetTLEtoFollow()
696 tle_str.insert( pos, sep ); in SetTLEtoFollow()
699 snprintf(command, sizeof(command), ":TLEL0%s#", tle_str.c_str()); in SetTLEtoFollow()