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

what is correct input format of precipitation data? #123

Open yelvk opened 4 months ago

yelvk commented 4 months ago

I am confused about the precipitation data input , My data and the sample data are both monthly data. my data is the acumulation of the whole month , while sample data seems like mean accumulation of every day in the month.

LAO's sample data of precipitation ,like "LAOprecipitaion[ : , : , 6]" , it's value changes from 3 to30, while my data of precipitation , "myprecipitaion[ : , : , 6]" , it's value changes from 20 to 200 . But LAO's precipitation is more than my study area in real world . And in this situation ,my irr yield is completely same as rain yield . I think this means wrong data input ,value is too big.

Then i processed the data , make monthly value divided by the number of days in the month , the value will change from 0.6 to 7 . But in this situation ,the rain yield is all zero , value is too small

Now i dont know how to deal with the precipitation

NokuzaSezo97 commented 4 months ago

Hi @yelvk,

The precipitation is the total accumulated precipitation (either for a single month for monthly data, and for 24-hour for daily data).

Regards,

Swun Wunna Htet

yelvk commented 4 months ago

Hi @yelvk,

The precipitation is the total accumulated precipitation (either for a single month for monthly data, and for 24-hour for daily data).

Regards,

Swun Wunna Htet

thanks for your answer