Spaces:
Sleeping
Sleeping
File size: 1,286 Bytes
4e14f7e d5fef68 4e14f7e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import solara
@solara.component
def Page():
with solara.Column(align="center"):
markdown = """
## A Interactive Web App for Visualizing Tennessee Historical Imagery
### Introduction
This web app allows users to visualize historical imagery for Tennessee. The historical imagery is provided by the Tennessee Department of Transportation (TDOT) and includes aerial 2-ft resolution photos taken between 1997 and 2006.
The original imagery in MrSID format was download from the [TNGIC Google Drive](https://drive.google.com/drive/folders/1qYlPFBLkcOpO4xjvBvHwMH9RDtbsSNkv). The imagery was then converted to Cloud Optimized GeoTIFF format
and hosted on Source Cooperative.
- Web App: <https://giswqs-tn-historical-imagery.hf.space>
- GitHub: <https://github.com/opengeos/tn-historical-imagery>
- Hugging Face: <https://huggingface.co/spaces/giswqs/tn-historical-imagery>
- Dataset: <https://source.coop/repositories/giswqs/tn-imagery>
### Acknowledgements
This work is supported by the U.S. Geological Survey through Grant/Cooperative Agreement No. G23AP00683 (GY23-GY27) in collaboration with [AmericaView](https://americaview.org).
"""
solara.Markdown(markdown)
|