gicait / PyAEZ

PyAEZ is a python package consisted of many algorithms related to Agro-ecalogical zoning (AEZ) framework.
MIT License
74 stars 51 forks source link

Rainfed and irrigated yield the same #135

Open maobw12 opened 1 month ago

maobw12 commented 1 month ago

I have a question, I simulated the same value of NB2 yield under rainfed and irrigated, why is this happening? I thought it was due to the rainfall data, but after I changed the rainfall data, the result is still the same. May I know where I should address this issue? 91c965db9327643bf0bc18fc3b30f9a 8523d507f05926ff13c8c5cdc2b0f59

NokuzaSezo97 commented 1 month ago

Hi @maobw12,

I think there's something misstep happened during preprocessing all raster data into numpy arrays (very rectangular in the northern part). From my experience, it has something to do with reprojection to geographic coordinate system and regridding method. Please readjust the data accordingly as gridded data preparation is very sensitive to geographic locations shift if the settings are not correctly done.

Regards,

Swun Wunna Htet

maobw12 commented 1 month ago

I'll check. I would like to ask if the rainfall data is in mm/day, so is it monthly average rainfall?Or is it cumulative rainfall data?

NokuzaSezo97 commented 1 month ago

@maobw12,

If you're using daily data, precipitation should be total precipitation per day.

If you're using monthly data, precipitation should be suitable with monthly mean precipitation.

Regards,

Swun Wunna Htet

maobw12 commented 1 month ago

thanks for your answer!