Hi, I don't know if this has been answered before but I found that for the Generic radar tower there is no entry in the sensors.lua file located in \Saved Games\DCS\Mods\tech\SAMSitesAssetPack\Database\Sensors
I added these lines and now it works perfectly with skynet IADS once the 2SAP assets are added in the appropriate lua file of the skynet IADS:
----Addition of Generic radar tower as EWR
GENERIC_RADART =
{
Name = "EWR Generic radar tower",
category = SENSOR_RADAR,
type = RADAR_AS,
scan_volume =
{
azimuth = {-180.0, 180.0},
elevation = {-15.0, 60.0}
},
max_measuring_distance = 600000.0,
detection_distance =
{
[HEMISPHERE_UPPER] =
{
[ASPECT_HEAD_ON] = 500000.0,
[ASPECT_TAIL_ON] = 500000.0
},
[HEMISPHERE_LOWER] =
{
[ASPECT_HEAD_ON] = 500000.0,
[ASPECT_TAIL_ON] = 500000.0
}
},
lock_on_distance_coeff = 0.6,
multiple_targets_tracking = true,
velocity_limits =
{
radial_velocity_min = 25.0,
},
scan_period = 10.0,
}
declare_sensor(GENERIC_RADART)
----END Addition
I used the data from the 1L119 Nebo-SVU as I didn't had any other reference.
Feel free to contact me if you have any other reference that can adjust the 'Generic radar tower'
Hope this helps,
Amedee
PS: if someone is interested in adding EWR from 2SAP into skynet IADS I have the code to add in the correct lua file.