iRIC_Geo_Polygon_Read_Points

Reads the coorinates of polygon vertices.

Format (FORTRAN)

call iRIC_Geo_Polygon_Read_Points(geo_handle, x_arr, y_arr, ier)

Format (C/C++)

ier = iRIC_Geo_Polygon_Read_Points(geo_handle, x_arr, y_arr)

Format (Python)

x_arr, y_arr = iRIC_Geo_Polygon_Read_Points(geo_handle)

Arguments and returned value

geo_handle

Table 1800 Description of geo_handle

Item

Value

Name

geo_handle

Input/Output

Input

Description

Handle of geographic data

Data type (FORTRAN)

integer

Data type (C/C++)

int

Data type (Python)

int

x_arr

Table 1801 Description of x_arr

Item

Value

Name

x_arr

Input/Output

Output

Description

The array of coordinate X values

Data type (FORTRAN)

double precision, dimension(:)

Data type (C/C++)

double*

Data type (Python)

numpy.array

y_arr

Table 1802 Description of y_arr

Item

Value

Name

y_arr

Input/Output

Output

Description

The array of coordinate Y values

Data type (FORTRAN)

double precision, dimension(:)

Data type (C/C++)

double*

Data type (Python)

numpy.array

ier

Table 1803 Description of ier

Item

Value

Name

ier

Input/Output

Output

Description

Error code. 0 means success, other values mean error.

Data type (FORTRAN)

integer

Data type (C/C++)

int

Data type (Python)

(Not defined)