Spaces:
Sleeping
Sleeping
padmapriya commited on
Commit ·
5702bfe
1
Parent(s): 3e0d945
Update app.py
Browse files
app.py
CHANGED
|
@@ -15,13 +15,14 @@ def greet(year,co2_emission,no2_emission,so2_emission,global_warming,methane_emi
|
|
| 15 |
if(year>=2023):
|
| 16 |
return eqn,tot
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
|
|
|
| 26 |
|
| 27 |
-
|
|
|
|
| 15 |
if(year>=2023):
|
| 16 |
return eqn,tot
|
| 17 |
|
| 18 |
+
demo = gr.Interface(
|
| 19 |
+
fn=greet, inputs=['number','number','number','number','number'],
|
| 20 |
+
outputs=['text','number'],
|
| 21 |
+
title="BARA SHIGRI",
|
| 22 |
+
description="Bara Shigri feeds the Chandra River which after its confluence at Tandi with the Bhaga River is known as Chandrabhaga or Chenab."
|
| 23 |
+
"According to Hugh Whistler’s 1924 writing, Shigri is applied par-excellence to one particular glacier that emerges from the mountains on the left bank of the Chenab. It is said to be several miles long, and the snout reaches right down to the river, lying athwart the customary road from Kulu to Spiti... In 1836 this glacier dammed the Chenab River, causing the formation of a large lake, which eventually broke loose and carried devastation down the valley."
|
| 24 |
+
"Across the Bara Shigri is another glacier known as Chhota Shigri. It is, as the name suggests, a comparatively smaller glacier.",
|
| 25 |
+
css='div {background-image: url("https://drive.google.com/uc?export=view&id=1gQA86IDVYGmnXAccJHnULm3V99jn7sUn");background-size: 2000px 2000px;}'
|
| 26 |
+
)
|
| 27 |
|
| 28 |
+
demo.launch(inline=False)
|