File size: 1,703 Bytes
382dd3c
f1bf352
 
 
 
 
 
 
 
 
 
 
 
 
0f42330
f1bf352
 
 
 
 
 
 
 
 
 
 
 
7d242db
f1bf352
22cdaae
f1bf352
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a0d61de
f1bf352
 
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59

import gradio as gr
import numpy as np
import pandas as pd
def greet(year,co2_emission,No2_emission,so2_emission,Global_Warming,Methane_emission):
  
  



  

  #Equation
  total1="2.29209688*(x1)+(-17.24834114)*(x2)+(-34.46449984)*(x3)+441.88734541(x4)+(-10.5704468)*(x5)+3032.3276611889232"
  eq1=2.29209688*(co2_emission)+(-17.24834114)*(No2_emission)+(-34.46449984)*(so2_emission)+441.88734541*(Global_Warming)+(-10.5704468)*(Methane_emission)+3032.3276611889232
  

  
  



  


  #app section
  if(year==1996):
    return total1,eq1

 
      
  else:
      return "no",0


 





demo = gr.Interface(
  fn=greet,
  inputs=["number","number","number","number","number","number"],
  outputs=["text","number"],
  title="BARA SHIGRI",
  css="div {background-image: url('https://drive.google.com/uc?export=view&id=1o4Q6O7LAFTpejs4zwOo6X-BYfrjjyTVr');background-size: 2000px 2000px;}",
  description=
  "Bara Shigri feeds the Chandra River which after its confluence at Tandi with the Bhaga River is known as Chandrabhaga or Chenab."
  "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."
  "Across the Bara Shigri is another glacier known as Chhota Shigri. It is, as the name suggests, a comparatively smaller glacier.",
  description_font_color="Black"

    
)
demo.launch(share=True)