### ＩＳＳ国際宇宙ステーション ###

#---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|
# 軌道
#---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|
load "00-orbit.txt"

@leo
splot @e, "o" @l
pause -1

#---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|
# AZEL
#---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|
load "11-azel.txt"

@s2e
plot @g, "a" @lp, "a" @t
pause -1

#---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|
# 高度
#---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|---+---+---+---+---|
reset											# 全クリア!!
set term qt noenhanced noraise font ",14"		# 端末＆フォントの設定 ex. "VL-Gothic-Regular,14"
set title "ISS Height ( w/o Control )"

set grid

set xlabel "Year-Month"
set ylabel "Height [Km]"

set xdata time; set timefmt "%Y-%m-%d"; set format x "%Y\n/%m"
set xtics (\
"2023-01" "2023-01-01", "" "2023-02-01", "" "2023-03-01", "04" "2023-04-01", "" "2023-05-01", "" "2023-06-01", "07" "2023-07-01", "" "2023-08-01", "" "2023-09-01", "10" "2023-10-01", "" "2023-11-01", "" "2023-12-01",\
"2024-01" "2024-01-01", "" "2024-02-01", "" "2024-03-01", "04" "2024-04-01", "" "2024-05-01", "" "2024-06-01", "07" "2024-07-01", "" "2024-08-01", "" "2024-09-01", "10" "2024-10-01", "" "2024-11-01", "" "2024-12-01",\
"2025-01" "2025-01-01", "" "2025-02-01", "" "2025-03-01", "04" "2025-04-01", "" "2025-05-01", "" "2025-06-01", "07" "2025-07-01", "" "2025-08-01", "" "2025-09-01", "10" "2025-10-01", "" "2025-11-01", "" "2025-12-01",\
)

set ytics 50
set mytics 5

plot ["2023-01-01":"2025-12-31"][0:500] "h" u 1:9 not w lp lc 7
pause -1
