Skip to content

Commit

Permalink
add missing semicolons in README
Browse files Browse the repository at this point in the history
  • Loading branch information
swen100 committed Sep 14, 2021
1 parent 180a493 commit 06a12ac
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ Create a Proj resource coordinate system object from the source SRID and target
**resource proj_create_crs_to_crs_from_pj(resource srcPj, resource tgtPj);**
Create a Proj resource coordinate system object from the source PROJ and target PROJ.

**resource proj_area_create()**
**resource proj_area_create();**
Create an area of use. Such an area of use is to be passed to proj_create_crs_to_crs() to specify the area of use for the choice of relevant coordinate operations.

**void proj_area_set_bbox(resource area, float west_lon_degree, float south_lat_degree, float east_lon_degree, float north_lat_degree)**
**void proj_area_set_bbox(resource area, float west_lon_degree, float south_lat_degree, float east_lon_degree, float north_lat_degree);**
Set the bounding box of the area of use. In the case of an area of use crossing the antimeridian (longitude +/- 180 degrees), west_lon_degree will be greater than east_lon_degree. Lon is in range of -180 to 180 degrees and lat is in range of -90 to 90 degrees.

**array proj_transform_point(resource pj, mixed x, mixed y, mixed z);**
Expand Down Expand Up @@ -52,7 +52,7 @@ Returns true if the output coordinate system is geocentric (proj=geocent).
**string proj_get_def(resource pj);**
Returns the PROJ initialization string suitable for use with proj_create() that would produce this coordinate system, but with the definition expanded as much as possible (for instance +init= and +datum= definitions).

**array proj_get_pj_info(resource pj)**
**array proj_get_pj_info(resource pj);**
Returns an array with multiple informations about the projection object: id, definition, description, accuracy, has_inverse.


Expand All @@ -70,10 +70,10 @@ Returns an array with informations about the current PROJ library.
**string proj_get_release();**
Returns an internal string describing the release version.

**array proj_list_units()**
**array proj_list_units();**
Returns an array of globally defined distance units.

**array proj_list_ellps()**
**array proj_list_ellps();**
Returns an array of globally defined ellipsoids.


Expand Down

0 comments on commit 06a12ac

Please sign in to comment.