Search found 4 matches
- Tue Jul 18, 2023 11:28 pm America/New_York
- Forum: Home
- Question: MODIS SIN Grid data(MOD16A2) visualization.
- Replies: 7
Re: MODIS SIN Grid data(MOD16A2) visualization.
1) You used (lon, lat) and (lons, lats) coordinates, both of them wgs84, and asked why this map is shifting. It is impossible to understand "simple and straight" point when we follow jupyter notebook you shared. 2) Of course, maps will shift if you are projecting them and there is no solut...
- Tue Jul 18, 2023 5:01 am America/New_York
- Forum: Home
- Question: MODIS SIN Grid data(MOD16A2) visualization.
- Replies: 7
Re: MODIS SIN Grid data(MOD16A2) visualization.
lats= np.linspace(lat.min(),lat.max(),2400) this one is wrong. It should be
lats= np.linspace(lat.max(),lat.min(),2400)
lats= np.linspace(lat.max(),lat.min(),2400)
- Sun Jul 16, 2023 10:47 pm America/New_York
- Forum: Home
- Question: MODIS SIN Grid data(MOD16A2) visualization.
- Replies: 7
Re: MODIS SIN Grid data(MOD16A2) visualization.
hdf and netcdf files are stored latitude maximum to minimum (left to right). I think the problem is line 19 in your code. Latitude values need to decrease, not increase, in numpy array.
- Sun Jul 16, 2023 10:35 pm America/New_York
- Forum: Home
- Question: Cloud Flags of MOD21 (TES) Products
- Replies: 1
Cloud Flags of MOD21 (TES) Products
I have been trying to use TES-based LST products by using APPEARS software. Even though I followed quality standards defined in the user handbook, there are LST values that are unreasonable above physical limits, like more than 100 °C in Aqua night products. The exact pixel has a much more reasonabl...