libsim  Versione6.3.0

◆ griddim_get_val()

subroutine griddim_get_val ( type(griddim_def), intent(in)  this,
integer, intent(out), optional  nx,
integer, intent(out), optional  ny,
double precision, intent(out), optional  xmin,
double precision, intent(out), optional  xmax,
double precision, intent(out), optional  ymin,
double precision, intent(out), optional  ymax,
double precision, intent(out), optional  dx,
double precision, intent(out), optional  dy,
integer, intent(out), optional  component_flag,
type(geo_proj), intent(out), optional  proj,
character(len=*), intent(out), optional  proj_type,
double precision, intent(out), optional  lov,
integer, intent(out), optional  zone,
double precision, intent(out), optional  xoff,
double precision, intent(out), optional  yoff,
double precision, intent(out), optional  longitude_south_pole,
double precision, intent(out), optional  latitude_south_pole,
double precision, intent(out), optional  angle_rotation,
double precision, intent(out), optional  longitude_stretch_pole,
double precision, intent(out), optional  latitude_stretch_pole,
double precision, intent(out), optional  stretch_factor,
double precision, intent(out), optional  latin1,
double precision, intent(out), optional  latin2,
double precision, intent(out), optional  lad,
integer, intent(out), optional  projection_center_flag,
double precision, intent(out), optional  ellips_smaj_axis,
double precision, intent(out), optional  ellips_flatt,
integer, intent(out), optional  ellips_type 
)

Query the object content.

Parametri
[in]thisobject to be queried
[out]nxnumber of points along the x axis
[out]nynumber of points along the y axis
[out]xminlongitudini e latitudini minime e massime
[out]xmaxlongitudini e latitudini minime e massime
[out]yminlongitudini e latitudini minime e massime
[out]ymaxlongitudini e latitudini minime e massime
[out]ymaxgrid extremes in projection units (degrees or meters depending on the projection type)
[out]dxgrid steps in x and y directions
[out]dygrid steps in x and y directions
[out]component_flagResolved u- and v- components of vector quantities relative to 0=the easterly and northerly directions 1=the defined grid in the direction of increasing x and y (or i and j) coordinates respectively (0=north, 128=south)
[out]projthe complete projection object associated
[out]proj_typetype of projection
[out]lovline of view, also known as reference longitude or orientation of the grid (polar projections)
[out]zoneEarth zone (mainly for UTM), sets lov to the correct zone central meridian
[out]xoffoffset on x axis (false easting)
[out]yoffoffset on y axis (false northing)
[out]longitude_south_polelongitude of the southern pole of projection
[out]latitude_south_polelatitude of the southern pole of projection
[out]angle_rotationangle of rotation of projection
[out]longitude_stretch_polelongitude of the pole of stretching
[out]latitude_stretch_polelatitude of the pole of stretching
[out]stretch_factorstretching factor
[out]latin1first standard latitude from main pole (Lambert)
[out]latin2second standard latitude from main pole (Lambert)
[out]ladlatitude at which dx and dy (in m) are specified (Lambert, grib2 only)
[out]projection_center_flagflag indicating which pole is represented
[out]ellips_smaj_axisEarth semi-major axis
[out]ellips_flattEarth flattening
[out]ellips_typenumber in the interval [1,nellips] indicating a predefined ellipsoid, alternative to the previous arguments

Definizione alla linea 684 del file grid_class.F90.

684 
689 SUBROUTINE griddim_import_grid_id(this, ingrid_id)
690 #ifdef HAVE_LIBGDAL
691 USE gdal
692 #endif
693 TYPE(griddim_def),INTENT(inout) :: this
694 TYPE(grid_id),INTENT(in) :: ingrid_id
695 
696 #ifdef HAVE_LIBGRIBAPI
697 INTEGER :: gaid
698 #endif
699 #ifdef HAVE_LIBGDAL
700 TYPE(gdalrasterbandh) :: gdalid
701 #endif
702 CALL init(this)
703 
704 #ifdef HAVE_LIBGRIBAPI
705 gaid = grid_id_get_gaid(ingrid_id)
706 IF (c_e(gaid)) CALL griddim_import_gribapi(this, gaid)
707 #endif
708 #ifdef HAVE_LIBGDAL
709 gdalid = grid_id_get_gdalid(ingrid_id)
710 IF (gdalassociated(gdalid)) CALL griddim_import_gdal(this, gdalid, &
711  grid_id_get_gdal_options(ingrid_id))
712 #endif
713 
714 END SUBROUTINE griddim_import_grid_id
715 
716 
721 SUBROUTINE griddim_export_grid_id(this, outgrid_id)
722 #ifdef HAVE_LIBGDAL
723 USE gdal
724 #endif
725 TYPE(griddim_def),INTENT(in) :: this
726 TYPE(grid_id),INTENT(inout) :: outgrid_id
727 
728 #ifdef HAVE_LIBGRIBAPI
729 INTEGER :: gaid
730 #endif
731 #ifdef HAVE_LIBGDAL
732 TYPE(gdalrasterbandh) :: gdalid
Costruttori per le classi datetime e timedelta.

Generated with Doxygen.