Inclined moons that are near their ringed gas giant and planets that are near their parent star can be great tourist stops for the view.
Here's what I added to my custom file to cover these.
::Proximity::
scan.Landable and scan.DistanceFromArrivalLS < 20
;the only problem with this is that it won't detect close proximity planets around companion stars
;using semi-major access also triggers for moons around planets which I don't want
::Criteria::
if scan.Landable and scan.OrbitalInclination > 5 and scan.OrbitalPeriod < 2600000 and parents then
if parents[0].Scan and parents[0].ParentType == 'Planet' and parents[0].Scan.Rings then
return true, 'Inclined Moon', ''
end
end
::End::
::Criteria::
if scan.Landable and scan.OrbitalInclination < -5 and scan.OrbitalPeriod < 2600000 and parents then
if parents[0].Scan and parents[0].ParentType == 'Planet' and parents[0].Scan.Rings then
return true, 'Inclined Moon', ''
end
end
::End::