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

Fortran interface update.

parent 747f0cc3
No related branches found
Tags cdi-2.1.0
No related merge requests found
Pipeline #22777 failed
......@@ -4,7 +4,7 @@
!
! Author:
! -------
! Uwe Schulzweida, MPI-MET, Hamburg, September 2022
! Uwe Schulzweida, MPI-MET, Hamburg, October 2022
!
!
......@@ -293,6 +293,8 @@
PARAMETER (CDI_PROJ_SINU = 24)
INTEGER CDI_PROJ_STERE
PARAMETER (CDI_PROJ_STERE = 25)
INTEGER CDI_PROJ_HEALPIX
PARAMETER (CDI_PROJ_HEALPIX = 26)
!
! ZAXIS types
!
......
......@@ -148,8 +148,8 @@ struct addIfNewRes cdiVlistAddGridIfNew(int vlistID, grid_t *grid, int mode);
int gridVerifyProjParamsLCC(struct CDI_GridProjParams *gpp);
int gridVerifyProjParamsSTERE(struct CDI_GridProjParams *gpp);
bool isGaussianLatitudes(SizeType nlats, const double *latitudes);
void gaussianLatitudes(SizeType nlats, double *latitudes, double *weights);
bool isGaussianLatitudes(size_t nlats, const double *latitudes);
void gaussianLatitudes(size_t nlats, double *latitudes, double *weights);
#endif
/*
......
......@@ -147,6 +147,7 @@ module mo_cdi
integer(c_int), public, parameter :: CDI_PROJ_LAEA = 23
integer(c_int), public, parameter :: CDI_PROJ_SINU = 24
integer(c_int), public, parameter :: CDI_PROJ_STERE = 25
integer(c_int), public, parameter :: CDI_PROJ_HEALPIX = 26
integer(c_int), public, parameter :: ZAXIS_SURFACE = 0
integer(c_int), public, parameter :: ZAXIS_GENERIC = 1
integer(c_int), public, parameter :: ZAXIS_HYBRID = 2
......
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