Git Product home page Git Product logo

Comments (8)

jpinedaf avatar jpinedaf commented on August 23, 2024

@rfriesen @low-sky what do you think of the color schemes?

from dr1_analysis.

rfriesen avatar rfriesen commented on August 23, 2024

I like the histograms. Are they all bimodal? The rms maps don't necessarily
need to be in colour, but as long as we use colour-blind-friendly schemes
like you've done I think it's fine! I would recommend setting the zero
values to NaNs so that outside the mapped region the colour is white rather
than grey.

from dr1_analysis.

jpinedaf avatar jpinedaf commented on August 23, 2024

now showing results for B18 and L1688 after re-baseline... I am setting the color for NaNs as non-white to avoid confusion about the existence of data, since white is present in the color scale while gray is not. However, I made now the gray color even lighter ('whiter').

I will do OrionA and NGC1333 Tomorrow

from dr1_analysis.

jpinedaf avatar jpinedaf commented on August 23, 2024

I just added OrionA and NGC1333, in addition to a histogram of the rms for all lines for each region.

Notice that only L1688 shows the bimodal like behaviour, where some footprints in the norther part didn't reach the requested rms. These footprints would have been re-observed if the extension were approved

from dr1_analysis.

jpinedaf avatar jpinedaf commented on August 23, 2024

change formatting of axes (via @rfriesen )

tick_labels.set_style(‘colons’)
tick_labels.set_xformat(‘hh:mm:ss')
tick_labels.set_yformat(‘dd:mm')

from dr1_analysis.

jpinedaf avatar jpinedaf commented on August 23, 2024

to remove the edges of the current maps, we should use the following piece of code

from astropy.io import fits
from GAS.first_look import trim_edge_cube
import glob

file_list=glob.glob('*/*.fits')

for file_i in file_list:
    data, hd=fits.getdata( file_i, header=True)
    fits.writeto(file_i.replace('.fits','.fits_original'), data, header=hd, clobber=True)
    trim_edge_cube(data)
    fits.writeto(file_i, data, header=hd, clobber=True)

and the latest version of the GBT GAS pipeline (GBTAmmoniaSurvey/GAS#143)

from dr1_analysis.

jpinedaf avatar jpinedaf commented on August 23, 2024

@rfriesen look at this :)

from dr1_analysis.

rfriesen avatar rfriesen commented on August 23, 2024

Ha, thanks @jpinedaf
The trouble is that trim_edge_cube won't work on the parameter maps (they are all zeroes rather than NaNs, it doesn't find an edge), so I've tried to do something further upstream in the data analysis. I have problems if I try to run anything using the NH3 fit information on the trimmed data, however.

from dr1_analysis.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.