Function to create Bluesky Scenarios #479
Unanswered
turrengoechea
asked this question in
Q&A
Replies: 2 comments
-
Scenario files are simple text files with the extension .SCN. So you can write them in Python using print:
f = open(“myscensrio.scn”,”w”)
print (……,file=f)
f.close()
Check out the example scenario files. The format is for each line: a time stamp (starting at zero for the start of the run) and the carrot “>” followed by any command as you would enter it in the command window:
HH:MM:SS.hh> command line
E.g.:
00:00:21.04>KL204 ALT 2000
See the command reference in the wiki for commands like CRE and ADDWPT, DEST etc to create your scenarios.
Best regards,
Jacco Hoekstra
On 3 Sep 2023, at 11:01, Tomás De Urrengeochea Cantavenera ***@***.***> wrote:
Hi, I want to make a function to create scenarios in Bluesky with python. How can i do it?
—
Reply to this email directly, view it on GitHub<https://urldefense.com/v3/__https://github.com/TUDelft-CNS-ATM/bluesky/discussions/479__;!!PAKc-5URQlI!_QxJg3UcrUZ5uY9lbOoXoWkBgIuduE-JnTDhyMppSTsxktIpE7aT8Ie7z4bpIQdq4_7BxAsNS9B1TyzStINxKaR5xPATsw$>, or unsubscribe<https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/ABWT2BG3U7NUIJNH5JH5DK3XYRBQFANCNFSM6AAAAAA4JFSVJI__;!!PAKc-5URQlI!_QxJg3UcrUZ5uY9lbOoXoWkBgIuduE-JnTDhyMppSTsxktIpE7aT8Ie7z4bpIQdq4_7BxAsNS9B1TyzStINxKaThWpolbg$>.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you for your replay |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I want to make a function to create scenarios in Bluesky with python. How can i do it?
Beta Was this translation helpful? Give feedback.
All reactions