KVL_converter / header.py
dhhien's picture
Upload 9 files
7a654d3
raw
history blame contribute delete
313 Bytes
import streamlit as st
def header(las_file):
st.title('LAS File Header Info')
if not las_file:
st.warning('No file has been uploaded')
else:
for item in las_file.well:
st.write(f"<b>{item.descr.capitalize()} ({item.mnemonic}):</b> {item.value}", unsafe_allow_html=True)