From e4c7ce4977cd89cb0c1fe4054bd320f4d400f2a7 Mon Sep 17 00:00:00 2001 From: eneller Date: Tue, 20 Jan 2026 13:48:49 +0100 Subject: [PATCH] chore: move app from R to Rmd --- src/{app.R => app.Rmd} | 3 +++ 1 file changed, 3 insertions(+) rename src/{app.R => app.Rmd} (99%) diff --git a/src/app.R b/src/app.Rmd similarity index 99% rename from src/app.R rename to src/app.Rmd index 4ad7876..14419c2 100644 --- a/src/app.R +++ b/src/app.Rmd @@ -1,3 +1,5 @@ +# Web Interface +```{r shiny} # Flight Trajectory Analysis - Shiny GUI Application # This app allows interactive selection of flights and displays trajectory analysis @@ -552,3 +554,4 @@ server <- function(input, output, session) { # Run the application shinyApp(ui = ui, server = server) +``` \ No newline at end of file