Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
4b6092d5
Commit
4b6092d5
authored
Sep 22, 2008
by
Uwe Schulzweida
Browse files
cdfInqContents: support of grid stdname 'longitude' and 'latitude'
parent
c14fce20
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
4b6092d5
...
...
@@ -3,6 +3,7 @@
* add new function: streamSync
* add new taxis functions: taxisXXXVdateBounds and taxisXXXVtimeBounds
* cdfReadVarSliceDP: add swapxy support
* cdfInqContents: support of grid stdname 'longitude' and 'latitude'
* netcdf: support of timeunit 'year'
* Version 1.2.1 released
...
...
src/stream_cdf.c
View file @
4b6092d5
...
...
@@ -4200,6 +4200,7 @@ int cdfInqContents(int streamID)
strcmp
(
ncvars
[
ncvarid
].
units
,
"degrees_E"
)
==
0
||
strcmp
(
ncvars
[
ncvarid
].
units
,
"degreeE"
)
==
0
||
strcmp
(
ncvars
[
ncvarid
].
units
,
"degreesE"
)
==
0
||
strcmp
(
ncvars
[
ncvarid
].
stdname
,
"longitude"
)
==
0
||
(
strcmp
(
ncvars
[
ncvarid
].
units
,
"degrees"
)
==
0
&&
strcmp
(
ncvars
[
ncvarid
].
stdname
,
"grid_longitude"
)
==
0
)
||
(
strcmp
(
ncvars
[
ncvarid
].
units
,
"radian"
)
==
0
&&
...
...
@@ -4214,6 +4215,7 @@ int cdfInqContents(int streamID)
strcmp
(
ncvars
[
ncvarid
].
units
,
"degrees_N"
)
==
0
||
strcmp
(
ncvars
[
ncvarid
].
units
,
"degreeN"
)
==
0
||
strcmp
(
ncvars
[
ncvarid
].
units
,
"degreesN"
)
==
0
||
strcmp
(
ncvars
[
ncvarid
].
stdname
,
"latitude"
)
==
0
||
(
strcmp
(
ncvars
[
ncvarid
].
units
,
"degrees"
)
==
0
&&
strcmp
(
ncvars
[
ncvarid
].
stdname
,
"grid_latitude"
)
==
0
)
||
(
strcmp
(
ncvars
[
ncvarid
].
units
,
"radian"
)
==
0
&&
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment