@@ -677,7 +677,8 @@ def estimate_at(self):
677677 nx = int (np .rint ((self .xmax - self .xmin )/ self .gdx )) + 1
678678 ny = int (np .rint ((self .ymax - self .ymin )/ self .gdy )) + 1
679679 self .estm_pos = np .meshgrid (np .linspace (self .xmin , self .xmax , nx ),
680- np .linspace (self .ymin , self .ymax , ny ))
680+ np .linspace (self .ymin , self .ymax , ny ),
681+ indexing = 'ij' )
681682 self .estm_x , self .estm_y = self .estm_pos
682683 self .n_estm = self .estm_x .size
683684 self .ngx , self .ngy = self .estm_x .shape
@@ -990,7 +991,8 @@ def estimate_at(self):
990991 nz = int (np .rint ((self .zmax - self .zmin )/ self .gdz )) + 1
991992 self .estm_pos = np .meshgrid (np .linspace (self .xmin , self .xmax , nx ),
992993 np .linspace (self .ymin , self .ymax , ny ),
993- np .linspace (self .zmin , self .zmax , nz ))
994+ np .linspace (self .zmin , self .zmax , nz ),
995+ indexing = 'ij' )
994996 self .estm_x , self .estm_y , self .estm_z = self .estm_pos
995997 self .n_estm = self .estm_x .size
996998 self .ngx , self .ngy , self .ngz = self .estm_x .shape
0 commit comments