吉安感知网项目-后端
xiebin
2026-01-06 d207a86cdf1ab52ef8cb7cd83bad8fceab8038cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package org.sxkj.odm.constant;
 
/**
 * tif 常量
 * @author zhongrj
 * @date 2025-01-10
 */
public class TifConstant {
 
    /**
     * TIF 文件解析 url
     */
    public static final String PARSE_TIF_API = "/pyapi/parse_tif_xy";
 
    /**
     * 设置图片位置信息 api url
     */
    public static final String SET_PIC_LOCATION_API = "/pic_api/set_pic_location";
 
    /**
     * dsm tif 转换 4326 坐标系
     */
    public static final String PARSE_TIF_CONV_API = "/pyapi/parse_tif_conv";
 
    /**
     * obj to  3d-tiles
     */
    public static final String OBJ_VOX_GRID_3D_TILES_API = "/ojb_api/obj_23dtiles";
 
    /**
     * obj position convert
     */
    public static final String OBJ_POSITION_CONV_API = "/ojb_api/obj_position_conv";
    /**
     * tif 获取高程信息
     */
    public static final String ANALYZE_TIF_ELEVATION = "/pyapi/process";
 
    /**
     * pointcloud to  3d-tiles
     */
    public static final String POINT_CLOUD_TO_3D_TILES_API = "/pointcloud_api/pointcloud_23dtiles";
    /**
     * 获取geojson 数据接口
     * /white_film/building-grid
     */
    public static final String GET_GEOJSON_API = "/white_film/building-grid";
    /**
     * 网格生成geojson接口
     */
    public static final String GET_GRID_GEOJSON_API = "/white_film/building-grid-3d";
    /**
     * 航线路径规划
     */
    public static final String WAYLINE_PLAN_API = "/white_film/flight-path";
    /**
     * 生成网格定时任务
     */
    public static final String GRID_TASK_API = "/white_film/generate-grid";
    /**
     * 保存面数据
     */
    public static final String SAVE_MULTIPOLYGON_API = "/white_film/save-multipolygon";
    /**
     * 删除面数据
     */
    public static final String DELETE_DELETE_GRID_API = "/white_film/delete-grid";
    /**
     * 初始化机场地形
     */
    public static final String INIT_AIRPORT_TERRAIN_API = "/white_film/init-airport-terrain";
    /**
     * 获取航线面最高地形
     */
    public static final String GET_AIRLINE_MAX_HEIGHT_API = "/white_film/get-airline-max-height";
    /**
     * 删除机场地形
     */
     public static final String DELETE_AIRPORT_TERRAIN_API = "/white_film/delete-airport-terrain";
 
 
}