
import os, sys
import glob
import numpy as np

from astropy.time import Time

gpstime = 1186740018
skymap = "../data/GW170814/LALInference_v1.fits"
cl = 0.9

outputDir = "../output/GW170814/%.3f_SWOPE_Nickel"%cl
system_command = "python gwemopt_run --telescope SWOPE,Nickel --doSchedule --doSkymap --doPlots --skymap %s --gpstime %d -o %s --doTiles --doSingleExposure --filters g --exposuretimes 30.0 --powerlaw_cl %.3f"%(skymap,gpstime,outputDir,cl)
print(system_command)

