-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Giant Cube: HCNO (12m + 7m + TP) #386
Comments
@ashleythomasbarnes noted edge issues in the peak intensity map: |
Field |
@ashleythomasbarnes the reason for your edge effects is as I said: these are the boundaries between sub-regions: if you want peak intensity maps without those problems, limit the range to -60 < v < 68 km/s. Or we can try to come up with an edge-excluding mask. You might do that by, e.g.: data = fits.getdata('HNCO_7m12mTP_CubeMosaic_downsample9.fits')
mask = np.isnan(data)
mask = scipy.ndimage.binary_dilation(mask, iterations=5)
data[mask] = 0
peak = np.max(data, axis=0) but be wary of the costs of doing that... (even with spectral cube as the backend) |
@ashleythomasbarnes I guess this is related to what Álvaro mentioned during the f2f meeting? That most cubes still appear to have some continuum throughout the mosaic, particularly near Sgr B2/A*. What you're showing seems to confirm that pretty clearly. |
HNCO_CubeMosaic_downsampled9.fits - first 381 channels are blank, then intermittent blank channels subsequently. |
Field The solution appears to be this: |
This thread is for discussion of the fully-combined HCNO cubes.
As of 11/13/2023, there are the following cubes:
The 20230910 versions are deprecated and were just kept as backups; they'll be deleted sometime.
This one is badly broken and being removed
The preferred, right now, are:
The text was updated successfully, but these errors were encountered: