#AJS # The catalogue plane with MSX and IRAS crossmatched sources and SIMBAD # object types is called MSX-IRAS-SIMBAD # we apply the first filter ### Source of 1_star.ajs ### #Normal stars #AJS filter Filter011 { $[CLASS_OBJECT]="Star" { draw cyan cross } } ########################## # activate it filter Filter011 on pause 3 select MSX-IRAS-SIMBAD sync # create a new plane with these sources createplane NormalStars sync # save the filtered sources as votable export NormalStars NormalStars.xml votable sync # then hide the new plane and de-activate filter hide NormalStars filter Filter011 off # ### Source of 2_extragal.ajs #Extragalactic objects #AJS filter Filter0413 { $[CLASS_OBJECT]="Seyfert_1" || $[CLASS_OBJECT]="Galaxy" { draw green cross } } ########################## # filter Filter0413 on pause 3 select MSX-IRAS-SIMBAD sync createplane ExtraGalactic sync export ExtraGalactic ExtraGalactic.xml votable sync hide ExtraGalactic filter Filter0413 off # ### Source of 3_agb.ajs #AGB stars #AJS filter Filter01 { $[CLASS_OBJECT]="AGB\*" || $[CLASS_OBJECT]="Mira" || $[CLASS_OBJECT]="C\*" { draw pink square } } ########################## filter Filter01 on pause 3 select MSX-IRAS-SIMBAD sync createplane AGB sync export AGB AGB.xml votable sync hide AGB filter Filter01 off # ### Source of 4_ohir.ajs #Stars with envelope of OH/IR type #AJS filter Filter02 { $[CLASS_OBJECT]="OH/IR" { draw red square } } ########################## filter Filter02 on pause 3 select MSX-IRAS-SIMBAD sync createplane OHIR sync export OHIR OHIR.xml votable sync hide OHIR filter Filter02 off # ### Source of 5_pagb.ajs #Post-AGB #AJS filter Filter03 { $[CLASS_OBJECT]="post-AGB\*" { draw red rhomb } } ########################## filter Filter03 on pause 3 select MSX-IRAS-SIMBAD sync createplane PostAGB sync export PostAGB PostAGB.xml votable sync hide PostAGB filter Filter03 off # ### Source of 6_pne.ajs #Planetary Nebulae #AJS filter Filter04 { $[CLASS_OBJECT]="PN" { draw orange square } } ########################## filter Filter04 on pause 3 select MSX-IRAS-SIMBAD sync createplane PNe sync export PNe PNe.xml votable sync hide PNe filter Filter04 off # ### Source of 7_yso.ajs #Young Stellar Objetcs #AJS filter Filter041 { $[CLASS_OBJECT]="YSO" || $[CLASS_OBJECT]="HH" || $[CLASS_OBJECT]="DkNeb" || $[CLASS_OBJECT]="HII" || $[CLASS_OBJECT]="pMS\*" || $[CLASS_OBJECT]="TTau\*" #|| $[CLASS_OBJECT]="WR\* { draw blue dot } } ########################## filter Filter041 on pause 3 select MSX-IRAS-SIMBAD sync createplane YSO sync export YSO YSO.xml votable sync hide YSO filter Filter041 off # ### Source of 8_unclass.ajs #Sources with no classification #AJS filter Filter099 { $[CLASS_OBJECT]="IR" || $[CLASS_OBJECT]="RADIO" || $[CLASS_OBJECT]="PN\?" { draw darkGray rhomb } } ########################## filter Filter099 on pause 3 select MSX-IRAS-SIMBAD sync createplane Unclassified sync export Unclassified Unclassified.xml votable sync hide Unclassified filter Filter099 off