Skip to content

Commit 33108f4

Browse files
committed
Add README.md
1 parent 412b0f5 commit 33108f4

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

README.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Introduction
2+
3+
fortran-proj is another Fortran bindings for Proj C library. It should provide more concise APIs.
4+
5+
# Usage
6+
7+
```fortran
8+
use proj
9+
10+
type(proj_type) p
11+
12+
call p%init(latlon_crs(), lcc_crs(36.14387d0, 105.5837d0, 30.0d0, 60.0d0))
13+
lon = 105.5837
14+
lat = 36.14387
15+
call p%transform(lon, lat, x, y)
16+
```
17+
18+
That's it!
19+
20+
# Contributors
21+
22+
- Li Dong

0 commit comments

Comments
 (0)