From bje at air.net.au Sun Aug 28 22:40:54 2022 From: bje at air.net.au (Ben Elliston) Date: Sun, 28 Aug 2022 22:40:54 +1000 Subject: [NEMO-devel] Renewables.ninja integration Message-ID: Hi all This weekend, I've finished the work to integrate Renewables.ninja PV and wind data traces into NEMO. These are implemented as two new generator classes: class NinjaPV(RenewablesNinja): def __init__(self, polygon, capacity, latlong, daterange, axes, azimuth=180, tilt=None, label=None, build_limit=None): class NinjaWind(RenewablesNinja): def __init__(self, polygon, capacity, latlong, daterange, machine, height, label=None, build_limit=None): This closely matches the information you can supply directly with a web browser (https://renewables.ninja), but NEMO will submit these requests using the API and download the trace data on the fly. There are a few little issues to work out, but otherwise, it's ready! I'll merge this work into the master branch in the coming days. Cheers, Ben