Skip to content
Snippets Groups Projects
Commit a9d728ae authored by Lionel GUEZ's avatar Lionel GUEZ
Browse files

Polish

parent 0369034b
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ program examine_eddy ...@@ -4,7 +4,7 @@ program examine_eddy
! outside_points all the extrema of opposite sign (including those ! outside_points all the extrema of opposite sign (including those
! not associated to an eddy) plus the extrema of same sign ! not associated to an eddy) plus the extrema of same sign
! associated to an eddy. Note that coord and outside_points may not ! associated to an eddy. Note that coord and outside_points may not
! be exactly equal to waht they were in inst_eddies because: there ! be exactly equal to what they were in inst_eddies because: there
! is a multiplication of coord by rad_to_deg when writing the ! is a multiplication of coord by rad_to_deg when writing the
! shapefile and a multiplication by deg_to_rad when reading it; ! shapefile and a multiplication by deg_to_rad when reading it;
! set_all_extr is called with a different value of dummy argument ! set_all_extr is called with a different value of dummy argument
......
...@@ -18,10 +18,10 @@ import time ...@@ -18,10 +18,10 @@ import time
import csv import csv
def loop_inst_eddies(files, bbox, d, my_slice): def loop_inst_eddies(files, bbox, d, my_slice):
"""files is a sequence of file paths. The first file must exist, """files is a sequence or iterator of file paths. The first file must
others can be missing. bbox is a tuple of four real numbers. d is exist, others can be missing. bbox is a tuple of four real
a date index (integer value) for the first date. my_slice is the numbers. d is a date index (integer value) for the first
slice index (integer value) in the SHPC. date. my_slice is the slice index (integer value) in the SHPC.
""" """
......
...@@ -44,8 +44,8 @@ le graphe en composantes connexes, ou chercher le graphe amont ou aval ...@@ -44,8 +44,8 @@ le graphe en composantes connexes, ou chercher le graphe amont ou aval
à partir d'un noeud du graphe. à partir d'un noeud du graphe.
Des bibliothèques Python de traitement de graphe semblent bien Des bibliothèques Python de traitement de graphe semblent bien
adaptées pour cette partie. En Python. Création d'une liste de chemins adaptées pour cette partie. Création d'une liste de chemins qui
qui recouvrent tout le graphe. recouvrent tout le graphe.
Vocabulaire : fusion pour \Eng{merging} et division pour Vocabulaire : fusion pour \Eng{merging} et division pour
\Eng{splitting}. \Eng{splitting}.
...@@ -121,6 +121,22 @@ Mémoire vive nécessaire pour charger le graphe global sur 28 ans, sans ...@@ -121,6 +121,22 @@ Mémoire vive nécessaire pour charger le graphe global sur 28 ans, sans
attributs, avec Graph-tool : environ \np{6.1} GiB. Il faut au moins 11 attributs, avec Graph-tool : environ \np{6.1} GiB. Il faut au moins 11
GiB avec Networkx. GiB avec Networkx.
Script \verb+trajectory.py+. Cf. tableau \ref{tab:trajectory}.
\begin{table}[htbp]
\centering
\begin{tabular}{llll}
Cas & v0.28 & v0.29 & v0.30 \\
\hline
Greece\_trajectories & OK & KO & OK \\
Division\_fusion & KO & OK & OK \\
Test\_order\_edges & OK & KO & OK \\
Traj\_component & KO & KO & OK \\
\end{tabular}
\caption{Tests du script \texttt{trajectory.py}. KO signifie que les
trajectoires obtenues par le script ne sont pas satisfaisantes.}
\label{tab:trajectory}
\end{table}
\section{\texttt{segments.py}} \section{\texttt{segments.py}}
Définition d'un segment : si un tourbillon se divise, c'est-à-dire si Définition d'un segment : si un tourbillon se divise, c'est-à-dire si
......
...@@ -11,7 +11,10 @@ Input: ...@@ -11,7 +11,10 @@ Input:
Output: the graph of segments with cost. Output: the graph of segments with cost.
The inst_eddies property of vertices is not modified by this script. The inst_eddies property of vertices is not modified by this
script. All the content of the input graph is part of the output graph
so the input file may be removed, if desired, after running this
script.
""" """
......
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
"""This script reads a graph of segments in graph-tool or graphml """This script reads a graph of segments in graph-tool or graphml
format and creates the corresponding Graphviz file. If the graph has format and creates the corresponding Graphviz file. If the graph has
cost values then the edges are labeled with them. If the file cost values then the edges are labeled with them. If the option -t is
traj_segm.json is found then the label of each node tells which given then the label of each node tells which trajectory the segment
trajectory the segment belongs to. belongs to.
""" """
......
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