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

Polish

parent 22070db7
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
"""This script plots markers on a map for the position of extrema and
arrows between markers for edges in the graph. The color changes with
the component of the graph.
"""
import itertools
import sys
......
#!/usr/bin/env python3
"""This script reads an edgelist. Note that the script loads the whole
graph into memory, with networkx. For the global graph on 30 years,
this requires about 13 GiB of main memory. The file e_overestim.txt
has to be in the same directory as the edgelist file given as argument
of the script.
"""This script reads an edgelist and prints some information about the
corresponding graph. Note that the script loads the whole graph into
memory, with networkx. For the global graph on 30 years, this requires
about 13 GiB of main memory. The file e_overestim.txt has to be in the
same directory as the edgelist file given as argument of the script.
"""
......
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