From: Peter K. <pet...@wa...> - 2013-05-28 19:04:36
|
On 05/27/2013 05:19 AM, yinjinfang88 wrote: [...] > I have a another question. There is a variable named cloud_mask > in CloudSat data, which demonstrates the reliability of the Rader > reflectivity. I want to get rid of the Rader reflectivity when the value > of cloud_mask is less than 20. However, I don't know where I can add > some condition select and judgement sentences in ccplot. Could you > please show me a example? Hi Yin, That should go somewhere below: 1408 np.place(data, data == -88.88, float("nan")) Reading the dataset would go under: 1307 try: # Try CloudSat names. A command-line flag would be nice. E.g. -f filter, where filter is none or cloudmask=n, and n is integer specifying low threshold of CPR Cloud Mask. Patch attached. Do let me know if you spot any bugs in it. The feature is documented in the man page. Regards, Peter |