-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspatial_mapping.py
More file actions
255 lines (206 loc) · 9.68 KB
/
spatial_mapping.py
File metadata and controls
255 lines (206 loc) · 9.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
from scipy import ndimage, signal
import numpy.ma as ma
from osgeo import osr
import numpy as np
import gdal
def transform(a = 1):
# from prof. lewis
wgs84 = osr.SpatialReference( ) # Define a SpatialReference object
wgs84.ImportFromEPSG( 4326 ) # And set it to WGS84 using the EPSG code
modis_sinu = osr.SpatialReference() # define the SpatialReference object
# In this case, we get the projection from a Proj4 string
modis_sinu.ImportFromProj4 ( \
"+proj=sinu +lon_0=0 +x_0=0 +y_0=0 +a=6371007.181 +b=6371007.181 +units=m +no_defs")
utm = osr.SpatialReference( )
utm.ImportFromProj4 ('+proj=utm +zone=50 +datum=WGS84 +units=m +no_defs')
# add more ....
if a ==1:
# from modis to wgs 84
tx = osr.CoordinateTransformation(modis_sinu, wgs84)
elif a == 2:
# from wgs 84 to modis
tx = osr.CoordinateTransformation(wgs84,modis_sinu)
elif a == 3:
# from wgs 84 to modis
tx = osr.CoordinateTransformation(wgs84, utm)
elif a == 4:
tx = osr.CoordinateTransformation(utm, wgs84)
# the following two transforms shold be tested before the usage....
# generally WGS84 is reccommonded as the base to convert between
# different projections
elif a == 5:
tx = osr.CoordinateTransformation(modis_sinu, utm)
elif a == 6:
tx = osr.CoordinateTransformation(utm, modis_sinu)
# elif:
# even more .....
else:
tx = 0
print 'please define your own transformation....'
return tx
# since we have the origins and the steps, we can write a function
# to calculate modis tile number with the lat and lon as the inputs
x_step = -463.31271653
y_step = 463.31271653
m_y0, m_x0 = -20015109.354, 10007554.677
def mtile_cal(lat, lon):
# a function calculate the tile number for MODIS, based on the lat and lon
tx = transform( a = 2)# from wgs84 to modis
ho,vo,z = tx.TransformPoint(lon, lat)# still use the function instead of using the equation....
h = int((ho-m_y0)/(2400*y_step))
v = int((vo-m_x0)/(2400*x_step))
return h,v
def get_Mpix_wgs(h,v, pix_num):
tx = transform(a=1)
v0,h0 = m_x0+2400*v*x_step, m_y0+2400*h*y_step
v1, h1 = m_x0 + (v+1)*x_step *2400, (h+1)*y_step*2400 + m_y0
hs = np.arange(h0,h1,(h1-h0)/pix_num)# The last coordinates should not included
vs = np.arange(v0,v1,(v1-v0)/pix_num)
h_array = np.tile(hs, pix_num)
v_array = np.repeat(vs, pix_num)
wgs = np.array(tx.TransformPoints(np.array([h_array, v_array]).T))
return wgs
def get_m_corners(h,v):
tx = transform(a=1) # from modis to wgs84
# Work out the boundaries of the new dataset in the target projection
x_size, y_size = 2400, 2400
geo_t0, geo_t3 = m_y0 + h*2400*y_step , m_x0 + v*2400*x_step
(ul_lon, ul_lat, ulz ) = tx.TransformPoint( geo_t0, geo_t3)
(lr_lon, lr_lat, lrz ) = tx.TransformPoint( geo_t0 + y_step*y_size, \
geo_t3 + x_step*x_size )
(ll_lon, ll_lat, llz ) = tx.TransformPoint( geo_t0 , \
geo_t3 + x_step*x_size )
(ur_lon, ur_lat, urz ) = tx.TransformPoint( geo_t0 + y_step*y_size, \
geo_t3 )
return ul_lon, ul_lat, lr_lon, lr_lat, ll_lon, ll_lat, ur_lon, ur_lat
def bilineanr(coords, dic, cors):
'''
basically a bilinear interpolation in matrix form (https://en.wikipedia.org/wiki/Bilinear_interpolation)
--------------------------------------------------------------------------------------------------------------
coords is the coordinates [(x1, y1), (x2, y2)...] needed to transfer
dic is a dictionary of the Upper lfet (UL), UR, LL, LR 's lat and lons
example: dic ={'LL_LAT': 36.35288,
'LL_LON': 113.00651,
'LR_LAT': 36.41186,
'LR_LON': 115.6326,
'UL_LAT': 38.51077,
'UL_LON': 112.88999,
'UR_LAT': 38.57451,
'UR_LON': 115.59258}
cors = {'ulx':ulx, 'llx': llx, 'urx': urx, 'lrx': lrx, 'uly': uly, 'lly': lly, 'ury': ury, 'lry': lry}
corners is the (x, y) corresponding to the shape of the area (array)
'''
a = np.matrix([[1, dic['UL_LAT'], dic['UL_LON'], dic['UL_LAT']*dic['UL_LON']],
[1, dic['LL_LAT'], dic['LL_LON'], dic['LL_LAT']*dic['LL_LON']],
[1, dic['UR_LAT'], dic['UR_LON'], dic['UR_LAT']*dic['UR_LON']],
[1, dic['LR_LAT'], dic['LR_LON'], dic['LR_LAT']*dic['LR_LON']],
])
convs = np.ones((4,len(coords[0])))
convs[1] = coords[0]
convs[2] = coords[1]
convs[3] = (coords[0]* coords[1])
convs = np.matrix(convs)
x = np.matrix([cors['ulx'], cors['llx'], cors['urx'], cors['lrx']])*((a**-1).T)*convs
y = np.matrix([cors['uly'], cors['lly'], cors['ury'], cors['lry']])*((a**-1).T)*convs
return np.array(x).ravel(), np.array(y).ravel()
def Find_corresponding_pixels(H_res_fname, destination_res=500):
'''
A function for the finding of corresponding pixels indexes
in H (sentinel 2) and L (MODIS) resolution image.
args:
H_res_fname -- the high resolution image filename, need to have geoinformation enbeded in the file
destination_res -- for the calculation of pixel number in one MODIS tile
return:
index: a dictionary contain both the MODIS tile name and pixels indexes
'''
if destination_res % 250 == 0:
pass
else:
print 'destination resolution can only be 250, 500 and 1000 !!!'
raise IOError
g = gdal.Open(H_res_fname)
geo_t = g.GetGeoTransform()
x_size, y_size = g.RasterXSize, g.RasterYSize
wgs84 = osr.SpatialReference( ) # Define a SpatialReference object
wgs84.ImportFromEPSG( 4326 ) # And set it to WGS84 using the EPSG code
H_res_geo = osr.SpatialReference( )
raster_wkt = g.GetProjection()
H_res_geo.ImportFromWkt(raster_wkt)
tx = osr.CoordinateTransformation(H_res_geo, wgs84)
# so we need the four corners coordiates to check whether they are within the same modis tile
(ul_lon, ul_lat, ulz ) = tx.TransformPoint( geo_t[0], geo_t[3])
(lr_lon, lr_lat, lrz ) = tx.TransformPoint( geo_t[0] + geo_t[1]*x_size, \
geo_t[3] + geo_t[5]*y_size )
(ll_lon, ll_lat, llz ) = tx.TransformPoint( geo_t[0] , \
geo_t[3] + geo_t[5]*y_size )
(ur_lon, ur_lat, urz ) = tx.TransformPoint( geo_t[0] + geo_t[1]*x_size, \
geo_t[3] )
#print (ul_lon, ul_lat), (lr_lon, lr_lat), (ll_lon, ll_lat), (ur_lon, ur_lat)
# now its the s2 corners latitudes and longtitudes
s_dic ={'UR_LAT': ur_lat,
'UR_LON': ur_lon,
'LR_LAT': lr_lat,
'LR_LON': lr_lon,
'UL_LAT': ul_lat,
'UL_LON': ul_lon,
'LL_LAT': ll_lat,
'LL_LON': ll_lon}
s_cors = ulx, uly, lrx, lry, llx, lly, urx, ury = 0,0,x_size, y_size, x_size,0, 0, y_size
s_corners = dict(zip(['ulx', 'uly', 'lrx', 'lry', 'llx', 'lly', 'urx', 'ury'], s_cors))
a0, b0 = None, None
corners = [(ul_lon, ul_lat), (lr_lon, lr_lat), (ll_lon, ll_lat), (ur_lon, ur_lat)]
tiles = []
for i,j in enumerate(corners):
h,v = mtile_cal(j[1], j[0])
if (h==a0) &(v==b0):
pass
else:
tiles.append([i,h,v]) # 0--ul;1--lr;2--ll;3--ur
a0, b0 = h,v
# The modis defults
pix_num = 4800/(destination_res/250)
inds = {}
for i in tiles:
latitudes, longtitudes = get_Mpix_wgs(h,v, pix_num).T[[1,0],]
cors = bilineanr([latitudes, longtitudes], s_dic, s_corners)
hinds =np.array([cors[0][(cors[0]>=0)&(cors[0]<x_size)&(cors[1]>=0)&(cors[1]<y_size)],
cors[1][(cors[0]>=0)&(cors[0]<x_size)&(cors[1]>=0)&(cors[1]<y_size)]]).astype(int)
minds = np.where(((cors[0]>=0)&(cors[0]<x_size)&(cors[1]>=0)&(cors[1]<y_size)).reshape((pix_num,pix_num)))
inds['h%02dv%02d'%(i[1],i[2])] = [hinds, np.array(minds)]
return inds
def gaussian(xstd, ystd, angle, norm = True):
win = 2*int(round(max(1.96*xstd, 1.96*ystd)))
winx = int(round(win*(2**0.5)))
winy = int(round(win*(2**0.5)))
xgaus = signal.gaussian(winx, xstd)
ygaus = signal.gaussian(winy, ystd)
gaus = np.outer(xgaus, ygaus)
r_gaus = ndimage.interpolation.rotate(gaus, angle, reshape=True)
center = np.array(r_gaus.shape)/2
cgaus = r_gaus[center[0]-win/2: center[0]+win/2, center[1]-win/2:center[1]+win/2]
if norm:
return cgaus/cgaus.sum()
else:
return cgaus
def PSF_convolve(H_array, psf, H_ind, L_ind, L_res=(2400,2400)):
'''A function spedified for the PSF convolution
args:
H_array--Hight resolution image array
psf--2D array of PSF
H_ind, L_ind--the indexs of H_array corresponding to L_array with different projection
L_res--the resolution of output array, should be consitent with the indexes..
return:
L_array--convolved results in the Low resolution image projection
'''
conved = signal.fftconvolve(H_array, psf, mode='same')
L_array = np.zeros(L_res)
L_array[:] = np.nan
L_array[L_ind[0], L_ind[1]] = conved[H_ind[0], H_ind[1]]
return L_array
def cloud_dilation(cloud_mask, iteration=1):
'''
A function for the dilation of cloud mask
'''
struct = np.ones((3,3)).astype(bool)
dila_cloud = ndimage.binary_dilation(cloud_mask, structure=struct, iterations=iteration).astype(bool)
return dila_cloud