Dave,
Thanks, the log is great resource for troubleshooting; if you include the WeeWX startup portion of the log it provides detail on how WeeWX is configured and if you have debug set high enough you get a good picture of what is going on. The log is the first place to look when things don't work.
It looks like the SDR driver is not being fed any data from rtl_433 that contains lightning related data. Your sensor map maps fields from AcuriteAtlasPacket packets (which appears to be correct) and correctly sets up lightning_strike_count as a delta:
Jun 7 16:14:29 raspberrypi weewx[25278] INFO user.sdr: sensor map is {'outTemp': 'temperature.0010.AcuriteAtlasPacket', 'outHumidity': 'humidity.0010.AcuriteAtlasPacket', 'windSpeed': 'wind_speed.0010.AcuriteAtlasPacket', 'windDir': 'wind_dir.0010.AcuriteAtlasPacket', 'UV': 'uv.0010.AcuriteAtlasPacket', 'rain_total': 'rain_total.0010.AcuriteAtlasPacket', 'radiation': 'lux.0010.AcuriteAtlasPacket', 'outTempBatteryStatus': 'battery.0010.AcuriteAtlasPacket', 'lightning_distance': 'strike_distance.0010.AcuriteAtlasPacket', 'lightning_strike_count': 'strike_count.0010.AcuriteAtlasPacket', 'luminosity': 'lux.0010.AcuriteAtlasPacket'}
Jun 7 16:14:29 raspberrypi weewx[25278] INFO user.sdr: deltas is {'rain': 'rain_total', 'lightning_strike_count': 'lightning_strike_count'}
but according to the log SDR is only seeing AcuriteTowerPacketV2 packets from rtl_433:
Jun 7 16:15:23 raspberrypi weewx[25278] INFO user.sdr: unmapped: ['{"time" : "2022-06-07 22:15:20", "model" : "Acurite-Tower", "id" : 9794, "channel" : "A", "battery_ok" : 1, "temperature_C" : 17.300, "humidity" : 48, "mic" : "CHECKSUM"}\n', '{"time" : "2022-06-07 22:15:20", "model" : "Acurite-Tower", "id" : 9794, "channel" : "A", "battery_ok" : 1, "temperature_C" : 17.300, "humidity" : 48, "mic" : "CHECKSUM"}\n'] ({'dateTime': 1654640120, 'usUnits': 16, 'protocol.2642.AcuriteTowerPacketV2': None, 'model.2642.AcuriteTowerPacketV2': 'Acurite-Tower', 'sensor_id.2642.AcuriteTowerPacketV2': '0000', 'channel.2642.AcuriteTowerPacketV2': 'A', 'temperature.2642.AcuriteTowerPacketV2': 17.3, 'humidity.2642.AcuriteTowerPacketV2': 48.0, 'battery.2642.AcuriteTowerPacketV2': 1, 'mod.2642.AcuriteTowerPacketV2': None, 'freq.2642.AcuriteTowerPacketV2': None, 'rssi.2642.AcuriteTowerPacketV2': None, 'snr.2642.AcuriteTowerPacketV2': None, 'noise.2642.AcuriteTowerPacketV2': None})
Jun 7 16:15:23 raspberrypi weewx[25278] INFO user.sdr: unmapped: ['{"time" : "2022-06-07 22:15:20", "model" : "Acurite-Tower", "id" : 9794, "channel" : "A", "battery_ok" : 1, "temperature_C" : 17.300, "humidity" : 48, "mic" : "CHECKSUM"}\n'] ({'dateTime': 1654640120, 'usUnits': 16, 'protocol.2642.AcuriteTowerPacketV2': None, 'model.2642.AcuriteTowerPacketV2': 'Acurite-Tower', 'sensor_id.2642.AcuriteTowerPacketV2': '0000', 'channel.2642.AcuriteTowerPacketV2': 'A', 'temperature.2642.AcuriteTowerPacketV2': 17.3, 'humidity.2642.AcuriteTowerPacketV2': 48.0, 'battery.2642.AcuriteTowerPacketV2': 1, 'mod.2642.AcuriteTowerPacketV2': None, 'freq.2642.AcuriteTowerPacketV2': None, 'rssi.2642.AcuriteTowerPacketV2': None, 'snr.2642.AcuriteTowerPacketV2': None, 'noise.2642.AcuriteTowerPacketV2': None})
Jun 7 16:15:23 raspberrypi weewx[25278] INFO user.sdr: unmapped: [] ({'dateTime': 1654640120, 'usUnits': 16, 'protocol.2642.AcuriteTowerPacketV2': None, 'model.2642.AcuriteTowerPacketV2': 'Acurite-Tower', 'sensor_id.2642.AcuriteTowerPacketV2': '0000', 'channel.2642.AcuriteTowerPacketV2': 'A', 'temperature.2642.AcuriteTowerPacketV2': 17.3, 'humidity.2642.AcuriteTowerPacketV2': 48.0, 'battery.2642.AcuriteTowerPacketV2': 1, 'mod.2642.AcuriteTowerPacketV2': None, 'freq.2642.AcuriteTowerPacketV2': None, 'rssi.2642.AcuriteTowerPacketV2': None, 'snr.2642.AcuriteTowerPacketV2': None, 'noise.2642.AcuriteTowerPacketV2': None})
I would take a step back and work through the
How to diagnose problems section of the SDR readme. Start by running rtl_433 directly to see what packets it is picking up. If rtl_433 is not picking up any Acurite Atlas packets then SDR has no chance. I'm not an Acurite user but looking at some other threads on Acurite Atlas and SDR the Atlas seems to emit packets containing lightning data roughly every 15 seconds. By all means post the rtl_433 output if you wish.
Gary