File size: 2,024 Bytes
cb2bdbd
 
 
 
 
 
 
00a88d2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ce4502f
 
00a88d2
cb2bdbd
 
 
 
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
import solara


@solara.component
def Page():
    with solara.Column(align="center"):
        markdown = """
        ## Dcascade
        
        ### Credits
            dcascade: A Python package for the analysis of drainage networks           
                                                                                                                          
            DCASCADEmodel Written by                                                   
            Marco Tangi (marco.tangi@polimi.it) - Politecnico di Milano, Italy                     
            and Simone Bizzi (simone.bizzi@unipd.it) - University of Padova, Italy     
                - https://doi.org/10.1029/2021WR030784                                 
                - https://github.com/mtangi/DCASCADEmodel.git                          
                                                                                                                                 
            Written in Python                                                                           
                - https://github.com/elisabozzolan/dcascade_py.git                     
            by Elisa Bozzolan (elisa.bozzolan@unipd.it>) - University of Padova, Italy     
                                                                                          
            Restyled in Python                                                                                                     
                - https://github.com/saferplaces/dcascade_py.git                       
            by Stefano Bagli (stefano.bagli@gecosistema.com) - Gecosistema srl, Italy  
            and Valerio Luzzi (valerio.luzzi@gecosistema.com) - Gecosistema srl, Italy 

            * The model is currently in development phase, hence some functionalities might not work as intended.
                                                                                                                                 
        
        """

        solara.Markdown(markdown)