Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libcdi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mpim-sw
libcdi
Commits
e66bcaad
Commit
e66bcaad
authored
6 years ago
by
Uwe Schulzweida
Browse files
Options
Downloads
Patches
Plain Diff
Set constant variables to const.
parent
0b600b6d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/cdf_read.c
+0
-2
0 additions, 2 deletions
src/cdf_read.c
src/stream_cdf_i.c
+22
-26
22 additions, 26 deletions
src/stream_cdf_i.c
with
22 additions
and
28 deletions
src/cdf_read.c
+
0
−
2
View file @
e66bcaad
...
...
@@ -478,11 +478,9 @@ void cdfGetSliceSlapDescription(stream_t *streamptr, int varId, int levelId, boo
cdf_inq_dimlen
(
fileId
,
curDimId
,
&
size
);
addDimension
(
0
,
size
);
break
;
case
3
:
addDimension
((
size_t
)
levelId
,
1
);
break
;
default:
Error
(
"Internal errror: Malformed dimension order encountered. Please report this bug.
\n
"
);
}
...
...
This diff is collapsed.
Click to expand it.
src/stream_cdf_i.c
+
22
−
26
View file @
e66bcaad
...
...
@@ -2631,7 +2631,7 @@ int cdf_define_all_grids(ncgrid_t *ncgrid, int vlistID, ncdim_t *ncdims, int nva
}
}
int
gmapvarid
=
ncvar
->
gmapid
;
const
int
gmapvarid
=
ncvar
->
gmapid
;
bool
lproj
=
gmapvarid
!=
CDI_UNDEFID
;
if
(
!
lproj
&&
xaxisid
!=
CDI_UNDEFID
&&
xaxisid
!=
xvarid
&&
yaxisid
!=
CDI_UNDEFID
&&
yaxisid
!=
yvarid
)
...
...
@@ -2639,16 +2639,16 @@ int cdf_define_all_grids(ncgrid_t *ncgrid, int vlistID, ncdim_t *ncdims, int nva
lproj
=
true
;
}
bool
lgrid
=
!
(
lproj
&&
ncvar
->
xvarid
==
CDI_UNDEFID
);
const
bool
lgrid
=
!
(
lproj
&&
ncvar
->
xvarid
==
CDI_UNDEFID
);
bool
lunstructured
=
xdimid
!=
CDI_UNDEFID
&&
xdimid
==
ydimid
&&
nydims
==
0
;
const
bool
lunstructured
=
xdimid
!=
CDI_UNDEFID
&&
xdimid
==
ydimid
&&
nydims
==
0
;
if
(
(
ncvar
->
gridtype
==
CDI_UNDEFID
||
ncvar
->
gridtype
==
GRID_GENERIC
)
&&
lunstructured
)
ncvar
->
gridtype
=
GRID_UNSTRUCTURED
;
struct
cdfLazyGrid
*
restrict
lazyGrid
=
NULL
,
*
restrict
lazyProj
=
NULL
;
{
int
gridtype
=
!
lgrid
?
GRID_PROJECTION
:
ncvar
->
gridtype
;
const
int
gridtype
=
!
lgrid
?
GRID_PROJECTION
:
ncvar
->
gridtype
;
if
(
CDI_netcdf_lazy_grid_load
)
{
cdfLazyGridRenew
(
&
lazyGrid
,
gridtype
);
...
...
@@ -2705,12 +2705,12 @@ int cdf_define_all_grids(ncgrid_t *ncgrid, int vlistID, ncdim_t *ncdims, int nva
gridAdded
=
cdiVlistAddGridIfNew
(
vlistID
,
grid
,
1
);
ncvar
->
gridID
=
gridAdded
.
Id
;
int
gridID
=
ncvar
->
gridID
;
const
int
gridID
=
ncvar
->
gridID
;
if
(
lproj
&&
gmapvarid
!=
CDI_UNDEFID
)
{
int
projID
=
lgrid
?
grid
->
proj
:
gridID
;
int
ncid
=
ncvars
[
gmapvarid
].
ncid
;
const
int
projID
=
lgrid
?
grid
->
proj
:
gridID
;
const
int
ncid
=
ncvars
[
gmapvarid
].
ncid
;
const
char
*
gmapname
=
ncvars
[
gmapvarid
].
name
;
cdf_read_mapping_atts
(
ncid
,
gmapvarid
,
projID
,
gmapname
);
cdiGridDefKeyStr
(
projID
,
CDI_KEY_MAPPING
,
(
int
)(
strlen
(
gmapname
)
+
1
),
gmapname
);
...
...
@@ -2722,12 +2722,10 @@ int cdf_define_all_grids(ncgrid_t *ncgrid, int vlistID, ncdim_t *ncdims, int nva
if
(
ncvar
->
chunked
)
grid_set_chunktype
(
grid
,
ncvar
);
int
gridindex
=
vlistGridIndex
(
vlistID
,
gridID
);
const
int
gridindex
=
vlistGridIndex
(
vlistID
,
gridID
);
ncgrid
[
gridindex
].
gridID
=
gridID
;
ncgrid
[
gridindex
].
ncIDs
[
CDF_DIMID_X
]
=
ncdims
[
xdimid
].
dimid
;
ncgrid
[
gridindex
].
ncIDs
[
CDF_DIMID_Y
]
=
ncdims
[
ydimid
].
dimid
;
//ncgrid[gridindex].ncIDs[CDF_DIMID_X] = xdimid;
//ncgrid[gridindex].ncIDs[CDF_DIMID_Y] = ydimid;
if
(
grid
->
type
==
GRID_TRAJECTORY
)
{
ncgrid
[
gridindex
].
ncIDs
[
CDF_VARID_X
]
=
xvarid
;
...
...
@@ -2789,7 +2787,7 @@ int cdf_define_all_zaxes(stream_t *streamptr, int vlistID, ncdim_t *ncdims, int
int
p0varid
=
-
1
;
int
positive
=
0
;
int
ndims
=
ncvar
->
ndims
;
int
ndims
=
ncvar
->
ndims
;
if
(
ncvar
->
zvarid
!=
-
1
&&
ncvars
[
ncvar
->
zvarid
].
ndims
==
0
)
{
...
...
@@ -2822,7 +2820,7 @@ int cdf_define_all_zaxes(stream_t *streamptr, int vlistID, ncdim_t *ncdims, int
if
(
zvarid
!=
CDI_UNDEFID
)
zaxisType
=
ncvars
[
zvarid
].
zaxistype
;
if
(
zaxisType
==
CDI_UNDEFID
)
zaxisType
=
ZAXIS_GENERIC
;
int
zdatatype
=
CDI_DATATYPE_FLT64
;
int
zdatatype
=
CDI_DATATYPE_FLT64
;
double
*
restrict
lbounds
=
NULL
;
double
*
restrict
ubounds
=
NULL
;
...
...
@@ -2868,11 +2866,11 @@ int cdf_define_all_zaxes(stream_t *streamptr, int vlistID, ncdim_t *ncdims, int
if
(
ncvars
[
zvarid
].
bounds
!=
CDI_UNDEFID
)
{
int
nbdims
=
ncvars
[
ncvars
[
zvarid
].
bounds
].
ndims
;
const
int
nbdims
=
ncvars
[
ncvars
[
zvarid
].
bounds
].
ndims
;
if
(
nbdims
==
2
||
is_scalar
)
{
size_t
nlevel
=
is_scalar
?
1
:
ncdims
[
ncvars
[
ncvars
[
zvarid
].
bounds
].
dimids
[
0
]].
len
;
int
nvertex
=
(
int
)
ncdims
[
ncvars
[
ncvars
[
zvarid
].
bounds
].
dimids
[
1
-
is_scalar
]].
len
;
const
size_t
nlevel
=
is_scalar
?
1
:
ncdims
[
ncvars
[
ncvars
[
zvarid
].
bounds
].
dimids
[
0
]].
len
;
const
int
nvertex
=
(
int
)
ncdims
[
ncvars
[
ncvars
[
zvarid
].
bounds
].
dimids
[
1
-
is_scalar
]].
len
;
if
(
nlevel
==
zsize
&&
nvertex
==
2
)
{
with_bounds
=
true
;
...
...
@@ -2915,7 +2913,7 @@ int cdf_define_all_zaxes(stream_t *streamptr, int vlistID, ncdim_t *ncdims, int
ncvar
->
zaxisID
=
varDefZaxis
(
vlistID
,
zaxisType
,
(
int
)
zsize
,
zvar
,
(
const
char
**
)
zcvals
,
zclength
,
with_bounds
,
lbounds
,
ubounds
,
(
int
)
vctsize
,
vct
,
pname
,
plongname
,
punits
,
zdatatype
,
1
,
0
,
-
1
);
int
zaxisID
=
ncvar
->
zaxisID
;
const
int
zaxisID
=
ncvar
->
zaxisID
;
if
(
CDI_cmor_mode
&&
zsize
==
1
&&
zaxisType
!=
ZAXIS_HYBRID
)
zaxisDefScalar
(
zaxisID
);
...
...
@@ -2944,29 +2942,27 @@ int cdf_define_all_zaxes(stream_t *streamptr, int vlistID, ncdim_t *ncdims, int
if ( vdimid != -1 )
cdiZaxisDefKeyStr(zaxisID, CDI_KEY_VDIMNAME, strlen(ncdims[vdimid].name)+1, ncdims[vdimid].name);
*/
if
(
zvar
)
Free
(
zvar
);
if
(
zcvals
)
if
(
zvar
)
Free
(
zvar
);
if
(
zcvals
)
{
for
(
size_t
i
=
0
;
i
<
zsize
;
i
++
)
Free
(
zcvals
[
i
]);
for
(
size_t
i
=
0
;
i
<
zsize
;
i
++
)
Free
(
zcvals
[
i
]);
Free
(
zcvals
);
}
if
(
lbounds
)
Free
(
lbounds
);
if
(
zvarid
!=
CDI_UNDEFID
)
{
int
ncid
=
ncvars
[
zvarid
].
ncid
;
int
nvatts
=
ncvars
[
zvarid
].
natts
;
const
int
ncid
=
ncvars
[
zvarid
].
ncid
;
const
int
nvatts
=
ncvars
[
zvarid
].
natts
;
for
(
int
iatt
=
0
;
iatt
<
nvatts
;
++
iatt
)
{
int
attnum
=
ncvars
[
zvarid
].
atts
[
iatt
];
const
int
attnum
=
ncvars
[
zvarid
].
atts
[
iatt
];
cdf_set_cdi_attr
(
ncid
,
zvarid
,
attnum
,
zaxisID
,
CDI_GLOBAL
);
}
}
int
zaxisindex
=
vlistZaxisIndex
(
vlistID
,
zaxisID
);
//US streamptr->zaxisID[zaxisindex] = ncdims[zdimid].dimid;
streamptr
->
zaxisID
[
zaxisindex
]
=
zdimid
;
const
int
zaxisindex
=
vlistZaxisIndex
(
vlistID
,
zaxisID
);
streamptr
->
zaxisID
[
zaxisindex
]
=
zdimid
;
if
(
CDI_Debug
)
Message
(
"zaxisID %d %d %s"
,
zaxisID
,
ncvarid
,
ncvar
->
name
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment