NCAR / ucomp-pipeline

Data processing pipeline for UCoMP
Other
6 stars 3 forks source link

Update level 1 and 2 filenames #201

Closed mgalloy closed 1 year ago

mgalloy commented 1 year ago

Level 1 filenames

Current level 1 name:

YYYYMMDD.HHMMSS.ucomp.WWWW.l1.N.fts

There is some confusion with the N being interpreted as part of the l1, so that you get something like l1.3.fts which looks like level 1.3. Should we put a p or something else to indicate that it is number of points? like:

YYYYMMDD.HHMMSS.ucomp.WWWW.l1.pN.fts
YYYYMMDD.HHMMSS.ucomp.WWWW.l1.ptsN.fts

For example:

20220202.215823.ucomp.1074.l1.p3.fts
20220202.215823.ucomp.1074.l1.pts3.fts

Level 2 filenames

With #195, we will have two level 2 products: one for individual level 1 files and one corresponding to averages (or what used to be called "quick inverts").

Candidate for level 2 filenames (combining dynamics and polarization):

20220202.215823.ucomp.1074.l2.fts

The average filenames would not change:

20220202.ucomp.1074.l2.synoptic.mean.fts
20220202.ucomp.1074.l2.synoptic.median.fts
20220202.ucomp.1074.l2.waves.mean.fts
20220202.ucomp.1074.l2.waves.median.fts

But what should the filename of the file corresponding to the old quick invert file would be?

But maybe the average filenames should be:

20220202.ucomp.1074.l1.synoptic.mean.fts
20220202.ucomp.1074.l1.synoptic.median.fts
20220202.ucomp.1074.l1.waves.mean.fts
20220202.ucomp.1074.l1.waves.median.fts

So that the file corresponding to the old quick invert file would be:

20220202.ucomp.1074.l2.synoptic.mean.fts
20220202.ucomp.1074.l2.synoptic.median.fts
20220202.ucomp.1074.l2.waves.mean.fts
20220202.ucomp.1074.l2.waves.median.fts

What do we name the png files:

20220902.032124.ucomp.1074.l2.all.png
20220902.032124.ucomp.1074.l2.center_intensity.png
20220902.032124.ucomp.1074.l2.line_width.png
20220902.032124.ucomp.1074.l2.peak_intensity.png
20220902.032356.ucomp.1074.l2.enhanced_intensity.png
20220902.032124.ucomp.1074.l2.los_velocity.png

20220902.032124.ucomp.1074.l2.weighted_average_radial_azimuth.png
20220902.032124.ucomp.1074.l2.weighted_average_intensity.png
20220902.032124.ucomp.1074.l2.weighted_average_linear_polarization.png
20220902.032124.ucomp.1074.l2.weighted_average_q.png
20220902.032124.ucomp.1074.l2.weighted_average_u.png
20220902.032356.ucomp.1074.l2.weighted_average_azimuth.png

What do we name the mp4 files:

20220901.ucomp.1074.l2.peak_intensity.mp4   
20220901.ucomp.1074.l2.los_velocity.mp4
20220901.ucomp.1074.l2.center_intensity.mp4 
20220901.ucomp.1074.l2.line_width.mp4  
20220901.ucomp.1074.l2.enhanced_intensity.mp4  

20220901.ucomp.1074.l2.weighted_average_azimuth.mp4             
20220901.ucomp.1074.l2.weighted_average_q.mp4
20220901.ucomp.1074.l2.weighted_average_u.mp4       
20220901.ucomp.1074.l2.weighted_average_intensity.mp4     
20220901.ucomp.1074.l2.weighted_average_linear_polarization.mp4

Questions

Answers

Implementation