lsst-uk / lasair-lsst

Apache License 2.0
0 stars 0 forks source link

Make fake Sherlock #118

Closed gpfrancis closed 2 months ago

gpfrancis commented 6 months ago

Make a fake version of Sherlock that returns random (but deterministic) classifications.

RoyWilliams commented 6 months ago
RoyWilliams commented 6 months ago

The RA and Dec of the alert can be randomised at the same stage by the fake Sherlock. These sprinkle the alerts over the whole sphere

RA   = random.uniform(0.0, 359.999)
Dec = math.asin(random.uniform(-1, 1)) * 180/math.pi
gpfrancis commented 2 months ago

Merged into develop.