Le satellite SCISAT, en orbite depuis le 12 août 2003, aide des équipes de scientifiques canadiens et internationaux à améliorer leur compréhension de la déplétion de la couche d'ozone, en se concentrant particulièrement sur les changements au Canada et en Arctique.
Vous pouvez accéder à cette micro application en direct au https://donnees-data.asc-csa.gc.ca/scisat-fr.
L'application repose sur l'architecture App-Launcher. Cette application doit être installée en premier lieu.
Les commandes suivantes peuvent être exécutées plus facilement dans un environnement virtuel (comme conda). Il peut donc être judicieux d'installer Anaconda au préalable.
Pour démarrer l'application :
- Ces fichiers sont accessibles en suivant ce lien vers l'accès aux données de niveau 2 de la mission ACE/SCISAT. Vous devrez remplir un formulaire décrivant votre demande de données, après quoi un courriel vous sera envoyé avec le lien vers les fichiers. Les fichiers à télécharger et à placer dans le dossier /data doivent avoir la convention de nommage suivante :
ACEFTS_L2_v4p1_FormuleChimiqueDuGaz.nc
pip install conda
conda create -name venv
conda activate venv
Puis, dans l'application dash
pip install -r requirements.txt
conda install -v venv -c conda-forge --file requirements.txt
python scisat.py
Lors de l'exécution, l'application se trouve à cet endroit.
scisat.py est l'application principale où chaque composant et la présentation de l'application sont définis
controls.py contient les options pour certains des composants (par exemple, les dropdowns)
header_footer.py contient le html pour l'en-tête et le pied de page du gouvernement du Canada. Ce html est injecté dans l'application principale.
/assets contient différents fichiers pour le style de l'application (images, redimensionnement, css)
/data contient les données csv traitées provenant du pipeline d'extraction des caractéristiques
/data_cleaning contient des scripts pythons utilisés pour nettoyer les données extraites
messages.pot et /translations contient des informations sur la traduction
config.py précise les langues disponibles pour la traduction
Il faudra apporter des modifications à app.py pour changer les couleurs et les styles des visualisations interactives ainsi que la mise en page HTML de la page.
Les traductions sont délicates avec Dash en raison de la façon dont Dash rend la page. Pour savoir comment faire de nouvelles traductions, consultez https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xiii-i18n-and-l10n
Chaque élément de texte à traduire dans Dash doit recevoir un identifiant de composant (voir la documentation sur Dash pour plus de détails à ce sujet). Le composant est ensuite rendu à nouveau lors du changement de langue.
Launched on August 12, 2003, SCISAT helps a team of Canadian and international scientists improve their understanding of the depletion of the ozone layer, with a special emphasis on the changes occurring over Canada and in the Arctic.
This project is an application that allows users to filter through the SCISAT data on multiple parameters and allows users to visualize a summary of the data from their selected parameters on a world map, a graph on the altitude, a time series, forgoing the need for downloading the data for simple insights.
This project has been developped from the Alouette app, a case study for the development of future satellite data applications so that the data from from these satellites are able to be obtained and analyzed at a larger scale and in a more user-friendly way.
The live version of this micro application is available at https://donnees-data.asc-csa.gc.ca/scisat.
This application is based on App-Launcher. Make sure to install App-Launcher before moving on with Alouette.
The following commands can be done more easily if in a virtual environment (like conda) so it may be a good idea to install Anaconda beforehand.
For starting the application:
- These files can be accessed by following this link to the Level 2 data access of the ACE/SCISAT mission. You will need to complete a form describing your data request after which an email will be sent to you with the link to the files. The files to download and place in the /data folder should have the following naming convention:
ACEFTS_L2_v4p1_ChemicalFormulaOfGas.nc
pip install conda
conda create -name venv
conda activate venv
Then, go to the Dash application
pip install -r requirements.txt
conda -v venv -c conda-forge --file requirements.txt
python scisat.py
The URL is http://127.0.0.1:8888/scisat/). Separate installation instructions for the production version of the app are provided in "SCISAT Production Installation Guide.docx".
scisat.py is the main application where each component and the layout of the application is defined
controls.py contains the options for the some of the components (e.g. dropdowns)
header_footer.py contains the html for the government of Canada header and footer. This html is injected into the main app.
/assets contains various files for the styling of the application (images, resizing, css)
/data contains the raw data in NetCDF format
/data_cleaning contains python scripts used to clean the extracted data
messages.pot and /translations contains translation information
config.py specifies the languages available for translation
There will need to be changes in app.py to change colours and styles of the interactive visualizations as well as the HTML layout of the page.
Translations are tricky with Dash due to the way it renders the page. To learn how to make new translations, consult https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xiii-i18n-and-l10n
Each text element to be translated in dash has to be given a component ID (see Dash documentation for more details on this). The component is subsequently re-rendered on language switch.