Skip to content
Snippets Groups Projects
Commit cf4d1c2b authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

Renamed gridDefRowlon() to gridDefReducedPoints().

parent a162449f
No related branches found
No related tags found
No related merge requests found
......@@ -1366,7 +1366,7 @@
2012-09-10 Uwe Schulzweida
* unreduced: compute nlon and nvalues from rowlon[] (bug fix)
* unreduced: compute nlon and nvalues from reducedPoints[] (bug fix)
2012-09-05 Uwe Schulzweida
......
......@@ -67,13 +67,13 @@ static int defineGrid()
/* gridDefLcc2 ( gridID, double earth_radius, double lon_0, */
/* double lat_0, double lat_1,double lat_2);*/
/* gridDefLaea ( gridID, double earth_radius, double lon_0, double lat_0); */
for ( i = 0; i < nlon*nlat; i++ )
for ( i = 0; i < nlon*nlat; i++ )
area_vec[i] = 0.1 * i;
gridDefArea ( gridID, ap );
for ( i = 0; i < nlon*nlat; i++ )
for ( i = 0; i < nlon*nlat; i++ )
mask_vec[i] = i;
gridDefRowlon ( gridID, nlon*nlat, mp );
gridDefComplexPacking ( gridID, 1 );
gridDefReducedPoints ( gridID, nlon*nlat, mp );
gridDefComplexPacking ( gridID, 1 );
return gridID;
}
......
......@@ -72,7 +72,7 @@ static int defineGrid (void)
gridDefArea ( gridID, ap );
for ( i = 0; i < nlon*nlat; i++ )
mask_vec[i] = i;
gridDefRowlon ( gridID, nlon*nlat, mp );
gridDefReducedPoints ( gridID, nlon*nlat, mp );
gridDefComplexPacking ( gridID, 1 );
{
unsigned char uuid[CDI_UUID_SIZE];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment