Skip to content
Snippets Groups Projects
Commit bfddbff9 authored by EXT Istas's avatar EXT Istas
Browse files

add cdfilb and astropy as dependencies

parent 32d22cf7
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ setup(
description="A web-based plot tool to visualize Earth core flows",
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
install_requires=["tornado", "numpy", "scipy>1.1", "h5py"],
install_requires=["tornado", "numpy", "scipy>1.1", "h5py", "cdflib", "astropy"],
test_suite="webgeodyn.tests",
include_package_data=True,
classifiers=[
......
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
......@@ -12,6 +12,18 @@ class HomePageController{
}
documentReady(){
//Add banner
let banner = new Banner(
'#maincontentdiv',
'<h3 class="ui" style="text-align: center"><a href="https://gricad-gitlab.univ-grenoble-alpes.fr/Geodynamo/pygeodyn">pygeodyn</a> (Python geomagnetic data assimilation package) and <a href="https://gricad-gitlab.univ-grenoble-alpes.fr/Geodynamo/webgeodyn">webgeodyn</a> (visualisation tool deployed on this website) are now available for download !</h3>',
'info');
//Add long description
$('#longDesc').load("view/longDesc.html");
//Add core flow descriptions
$.get("view/coreflowDesc.html", function(data){
$('#maincontentdiv .segment').append(data);
});
}
}
\ No newline at end of file
......@@ -28,5 +28,10 @@ $(document).ready(function() {
}
};
//Add downloadTab
$.get("view/downloadTab.html", function(data){
$('#tabMenu').append(data);
});
window.mc = new MainController();
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment