Skip to content

Commit 6b83991

Browse files
author
meihuisu
committed
wip
1 parent c1319ce commit 6b83991

File tree

2 files changed

+65
-1
lines changed

2 files changed

+65
-1
lines changed

src/ucvm2mesh/NOTE

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
2+
ucvm2mesh directory :
3+
4+
grid4corners.c
5+
grid4corners ingrid nx ny
6+
--> takes a regular mesh (ucvm_point_t from ucvm2mesh)
7+
// first one
8+
// x-1
9+
// num_grid - x
10+
// num_grid - 1
11+
12+
latlon2utm.c
13+
"+proj=utm +ellps=clrk66 +zone=%d +datum=NAD27 +units=m +no_defs"
14+
zone is 10 or 11
15+
proj_create_crs_to_crs, EPSG:4326
16+
17+
latlon2utm zone < data_file
18+
data_file
19+
0 lon lat
20+
1 utm_e utm_n
21+
22+
mesh2csv.c
23+
24+
mesh2hdf5.c
25+
mesh2hdf5.conf
26+
mesh2hdf5-save.c
27+
28+
mesh2netcdf.c
29+
30+
mesh_check.c
31+
mesh_op.c
32+
33+
mesh_strip_ijk.c
34+
35+
mesh_translate.c
36+
37+
ucvm2mesh.c
38+
ucvm2mesh.conf
39+
40+
ucvm2mesh_mpi.c
41+
ucvm2mesh_mpi_layer.c
42+
43+
um_config.c
44+
um_config.h
45+
46+
um_dtypes.h
47+
48+
um_hdf5_2.c
49+
um_hdf5.c
50+
um_hdf5.h
51+
52+
um_mesh.c
53+
um_mesh.h
54+
55+
um_mpi.c
56+
um_mpi.h
57+
58+
um_stat.c
59+
um_stat.h
60+
61+
um_utils.c
62+
um_utils.h

src/ucvm2mesh/latlon2utm.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// latlon2ucvm.c
2-
//
2+
// convert latlon to utm
3+
// or
4+
// utm to latlon
35

46
#include <stdio.h>
57
#include <stdlib.h>

0 commit comments

Comments
 (0)