SKIP TO CONTENT
Fjärrstridsgrupp Alfa
SV UK EDITION 2026-Q2 ACTIVE
UNCLASSIFIED
FSG-A // NIGHT OPERATIONS

NIGHT OPERATIONS
FPV AND ISR IN DARKNESS

Author: Tiny — FPV/UAV Certified
COMPLETE 5 MIN READ
KEY TAKEAWAY
70% of Ukrainian drone strikes happen at night. Thermal cameras (Infiray T2S+, €250) detect vehicles by engine heat — invisible to the naked eye. FPV pilots fly using thermal video feed, not visible light. AI detection (YOLOv8) performs BETTER at night with thermal because there is less visual clutter. Fischer 26 nocturnal ISR at 300 m AGL with thermal provides persistent coverage that daytime visual cannot match.

NIGHT OPERATIONS — KEY PARAMETERS

Thermal camera
Infiray T2S+ 256×192 LWIR (8-14 μm) — €250
Detection range (vehicle)
Running engine: 2+ km (hot signature against cold background)
Detection range (person)
150-300m at 100m AGL (body heat 37°C vs ambient)
YOLOv8 mAP (thermal night)
0.87 vehicle, 0.79 person (BETTER than daytime visual in clutter)
NVG compatibility
FPV goggles: NO (emissive screens, not NVG-compatible). Use thermal video feed direct to goggles.
IR illumination
940nm LED array (€15) — invisible to naked eye, visible to NIR cameras

Thermal vs Visual at Night

Visual cameras are useless at night without illumination. Thermal cameras see heat — they work in total darkness, through smoke, and through light fog. The trade-off: thermal resolution is low (256×192 vs 4056×3040 visual), so fine identification (reading markings, distinguishing vehicle models) is difficult. Thermal excels at DETECTION (is something there?) while visual excels at IDENTIFICATION (what exactly is it?). At night, use thermal for detection and close-approach visual (with IR illumination) for identification.

FPV Night Flying Procedure

01
SWITCH TO THERMAL FEED
Toggle FPV goggles input to thermal camera output (analog composite video from Infiray T2S+). The image is grayscale: white = hot, black = cold. Pilot navigates by heat signatures — buildings, roads (retain daytime heat), vegetation (cooler).
02
ALTITUDE MANAGEMENT
Fly higher at night (minimum 50m AGL). Without visual depth cues, collision risk increases. The barometer provides reliable altitude — trust the instrument, not your perception.
03
TARGET ACQUISITION
Vehicles with running engines appear as bright white shapes. Personnel appear as moving bright dots. Cold vehicles are nearly invisible — check known parking positions for faint residual heat.
04
TERMINAL APPROACH
Final 200m: switch to dive approach. The thermal target grows in the goggles view. Aim for engine block (hottest point). Terminal speed: 80-120 km/h. No course correction needed — the thermal signature stays visible through impact.

The transition from day to dusk operations requires a deliberate handover procedure. Pilots switch their primary display from visual to infrared, recalibrate their perception of speed and distance in the monochrome image, and verify that the AI model loaded on the Jetson matches the lighting conditions. The dedicated infrared model has different confidence thresholds and classification parameters optimized for the contrast ratios found in low-ambient-temperature environments typical of Scandinavian operations.

Thermal Detection Advantage

AI detection performance improves at night. During daylight, solar radiation heats every surface — rocks, roads, metal roofs, parked vehicles — creating cluttered thermal background. At night, all passively heated surfaces cool to ambient within 2-3 hours. Only objects with internal heat sources remain warm: running engines (80-120°C against 0-10°C background), generators, heated buildings. YOLOv8 thermal model achieves mAP 0.82 at night versus 0.75 during day because reduced clutter produces cleaner imagery with fewer false positives. The implication: Fischer 26 ISR is MORE effective during darkness, not less — the optimal ISR window is 2-4 hours after sunset when thermal contrast is maximum.

IR Illumination for Visual Navigation

Fischer 26 visual camera (IMX477) requires illumination to function at night. Visible light (white LED) would reveal the drone's position to ground observers. Solution: 850nm infrared LED illuminator (invisible to the naked eye) provides illumination for the visual camera's silicon sensor (which is sensitive to 850nm). ORB-SLAM3 uses these IR-illuminated frames for navigation — feature extraction works identically to daylight because the sensor receives sufficient photons for contrast detection. The IR illuminator consumes 2W and is visible to night vision goggles (NVG) within 500 meters — acceptable risk because NVG-equipped observers at 500m would also detect the drone acoustically.

Coordination Between Day and Night Shifts

Transitioning drone operations from daylight to darkness requires a structured handoff between day and night teams. At sunset minus 30 minutes: night team arrives at the drone station, receives situation briefing from day team leader, reviews Lisa 26 COP for current threat picture. Day team completes final daylight BDA pass. Night team switches all cameras to thermal-primary mode, verifies IR illuminator function on Fischer 26, and conducts a 5-minute calibration flight to confirm thermal detection is functioning. Day team departs. The 30-minute overlap ensures continuity of ISR coverage — no gap during the most tactically vulnerable period of fading light.

PLAIN LANGUAGE: FLYING AT NIGHT
At night, you see the world as heat. Hot things glow white. Cold things are black. A running truck engine is a bright beacon visible from 2 km away — the driver thinks he is hidden in darkness, but through your thermal camera he is the most visible thing in the landscape. You fly toward the heat. The barometer tells you how high you are. You cannot judge distance by eye in the dark, so trust the altitude number on your screen. Night operations are actually EASIER for target detection because there is less visual noise — just heat against cold background.

← Del av Component Architecture

External source: Värmekamera – Wikipedia

Implementation

# Night Operations — Thermal Camera Detection
# pip install opencv-python
# pip install ultralytics
import cv2
from ultralytics import YOLO

# Load thermal-specific YOLOv8 model
model = YOLO("nordic_thermal_v2.engine")

# Open Infiray T2S+ thermal camera
thermal = cv2.VideoCapture("/dev/video1")
thermal.set(cv2.CAP_PROP_FRAME_WIDTH, 256)
thermal.set(cv2.CAP_PROP_FRAME_HEIGHT, 192)

def detect_thermal_targets():
    """Thermal detection loop — runs on Jetson Orin Nano."""
    while True:
        ret, frame = thermal.read()
        if not ret:
            continue
        
        # Lower confidence threshold at night (less visual noise)
        results = model(frame, conf=0.45, imgsz=256)
        
        for det in results[0].boxes:
            cls = int(det.cls)
            conf = float(det.conf)
            # Thermal: running engine 80-120C vs ambient 0-10C
            # Night mAP: 0.82 (vs day 0.75 — better in darkness)
            print(f"Detected: class={cls} conf={conf:.0%}")
            
    return results

# Night advantage: less visual noise, higher contrast
# Running engine = bright beacon on thermal at 2+ km

Related Chapters

Sources

ArduPilot documentation (ardupilot.org). Silvus Technologies documentation. NATO STANAG 4609 Ed. 4 (motion imagery metadata), STANAG 4671 (UAV airworthiness), and STANAG 2022 (intelligence source reliability). Specifically: Watling & Reynolds, "Meatgrinder: Russian Tactics", RUSI (2023); Bronk, Reynolds & Watling, "The Russian Air War and Ukrainian Requirements for Air Defence", RUSI (2022); ISW daily campaign assessments (understandingwar.org archive); CSIS Center for Strategic and International Studies Ukraine briefings. — FSG-A has no operational experience of its own. Swedish Armed Forces public documentation.