You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
258 B
Python

3 years ago
#!/bin/python3
import ddresc_visu.draw as v
from time import sleep
import argparse
3 years ago
FILE = '/mnt/TAP9701/2021-08-11_Pm_ddresc_mapfile'
visu = v.Visualisation(FILE, start=1000**3, end=30*1000**3)
3 years ago
def redraw():
visu.reload()
3 years ago
while True:
redraw()
sleep(5)