利用points計算有效時間

2021-10-06 04:08:19 字數 1013 閱讀 6874

模式cube中包含四個座標:

forecast_reference_time、forecast_period、latitude、longitude,

有效時間valid time需要利用forecast_reference_time 和 forecast_period 進行計算。

import iris..

....

.# 計算valid time的points

newpoints=cube.coord(

'forecast_reference_time'

).points+

int(period)

# 加入時間座標,先去除原先的time座標

cube.remove_coord(

'time'

)cube.add_aux_coord(iris.coords.auxcoord(newpoints,standard_name=

'time'

,units=cube.coord(

'forecast_reference_time'

).units,0)

# 公升降座標

iris.util.demote_dim_coord_to_aux_coord(cube,

'forecast_reference_time'

)iris.util.promote_aux_coord_to_dim_coord(cube,

'time'

)

newpoints = oldcube.coord(

'time'

).points

newcoord = oldcube.coord(

'time'

).copy(points = newpoints)

cube.add_aux_coord(newcoord,0)

#如果需要加到主座標

#cube.add_dim_coord(newcoord,0)

怎樣有效利用時間?

總有人說 如果你把看電視的時間用來寫作,早就寫出一部 了!這話確實令人難以反駁 毫無疑問,把時間用在寫 上無疑要比消磨在看電視上更有意義。但是這個說法隱含了這樣乙個假設 時間是 可替換的 你可以輕易地用看電視的時間來寫作。但實際上並非如此。時間的 品質 也不盡相同。比方說,如果在搭地鐵時沒帶記事本,...

7 3 計算貨款 10point s

輸出資料結果小數點後保留兩位小數 include cout setiosflags ios fixed setprecision 2 銷售一的 編號 銷售件數 銷售單價 銷售二的 編號 銷售件數 銷售單價 銷售三的 編號 銷售件數 銷售單價 總銷售額 平均每件商品的實際售價 101 5 23.5 1...

hdu 4613 Points《計算幾何》

題意 判斷乙個集合中的點能不能由另乙個集合中的點,通過平移,旋轉,放縮得到 思路 先求出集合中的點的凸包,然後列舉每一條邊作為起點 看原集合中的點能否與要比較的集合中的點一一對應 1 include 2 include 3 include 4 include 5 include 6 include ...