| Getting Started | Documentation | Glish | Learn More | Programming | Contact Us |
| Version 1.9 Build 1488 |
|
| Package | dish | |
| Module | dish | |
| Tool | dish |
| scan | scan number(s) to flag | ||
| Allowed: | integer or vector of ints | ||
| Default: | F | ||
| ints | integration number | ||
| Allowed: | integer or vector of ints | ||
| Default: | F | ||
| polarization | polarization number(s) to flag | ||
| Allowed: | integer or vector of ints | ||
| Default: | F | ||
| channel | channel (range) to flag | ||
| Allowed: | integer or vector of ints | ||
| Default: | F | ||
| flag | flag (T) or unflag (F) | ||
| Allowed: | boolean | ||
| Default: | T | ||
d.open('stjul13SP');
d.gms();
d.plotc(36)
d.flag(36,channel=100:120) #flag all subscans, polarizations of scan
#36 in the channel range of 100:120
d.plotc(36) #you should see the range masked
d.flag(36,flag=F); #unset all flagging
d.plotc(36) #it's back!
d.flag(36,channel=500:550,polarization=1)
d.plotc(36) #you should see a gap just in the first
#polarization
d.flag(36,flag=F);
d.flag(36,1) #flag just the first integration
d.plotc(36) #should look okay though it doesn't
#include the first integration
d.plotc(36,1) #masked
d.plotc(36,2) #okay