Luggage Dimension Converter helps travelers: - Convert dimensions from inches to centimeters - Calculate total size with ease - Ensure compliance with airline luggage restrictions
Built with Shiny, simple UI, and intuitive logic.
Travelers often struggle to: - Convert US-size luggage to metric units - Understand total luggage dimensions - Know whether it fits airline policies
You input hight, width, and depth in inch and your values will be converted.
shinyApp(
ui = fluidPage(
numericInput("length", "Length (in):", 25),
verbatimTextOutput("cm")
),
server = function(input, output) {
output$cm <- renderText({
paste("Length in cm:", round(input$length * 2.54, 2))
})
}
)
Your attention is valuable to us