@opengis/gis 0.2.174 → 0.2.176
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +181 -181
- package/dist/{CardIcon-Cg8bUM4G.js → CardIcon-c1Q2M3wQ.js} +1 -1
- package/dist/{EntityTablePage-DHQGlLRk.js → EntityTablePage-B5gpkH4S.js} +2 -2
- package/dist/{ExtentOutlineLayer.vue_vue_type_script_setup_true_lang-BIL1ocLY.js → ExtentOutlineLayer.vue_vue_type_script_setup_true_lang-DnGSvmMU.js} +1 -1
- package/dist/{HeaderActions.vue_vue_type_script_setup_true_lang-Buff9gTO.js → HeaderActions.vue_vue_type_script_setup_true_lang-C2B61JP6.js} +1 -1
- package/dist/{MapSettings-De-z7r5t.js → MapSettings-6-Xru5Q8.js} +2 -2
- package/dist/{RastersTablePage-Cdgkri9K.js → RastersTablePage-CXNOcTy-.js} +2 -2
- package/dist/{cartocss-BT50SVhy.js → cartocss-BFVqWvfP.js} +6 -6
- package/dist/{import-utils-CMWiuRPp.js → import-utils-uxk4LdUJ.js} +1 -1
- package/dist/{index-CHFLgCGW.js → index-CahlV-Xs.js} +39 -39
- package/dist/index.css +1 -1
- package/dist/index.js +1 -1
- package/dist/index.umd.cjs +19 -19
- package/dist/{raster-dSEb1SIG.js → raster-CEi56f0P.js} +3 -3
- package/dist/{register-D7Puupgo.js → register-NFAGBNa3.js} +3 -3
- package/dist/{service-Cz6T0O3Z.js → service-BYspag8U.js} +829 -832
- package/dist/{vs-datatable-DqVncrSg.js → vs-datatable-CHcBr6zy.js} +2 -2
- package/module/gis/cls/service_type.json +42 -42
- package/module/gis/form/gis.registers.form.json +4 -1
- package/module/test/map/addr.json +302 -302
- package/module/test/map/addr1.yml +23 -23
- package/module/test/select/address.str_id.sql +3 -3
- package/package.json +77 -77
- package/plugin.js +64 -64
- package/server/migrations/array_intersect.sql +13 -13
- package/server/migrations/cartocss.sql +27 -27
- package/server/migrations/group_list.sql +74 -74
- package/server/migrations/maps.sql +30 -30
- package/server/migrations/metadata.sql +415 -415
- package/server/migrations/ogc.sql +106 -106
- package/server/migrations/rasters.sql +265 -265
- package/server/migrations/services.sql +247 -247
- package/server/migrations/services_users_rel.sql +22 -22
- package/server/migrations/widgets.sql +20 -20
- package/server/plugins/crons.js +21 -21
- package/server/plugins/mapnik/funcs/checkRasterFile.js +107 -107
- package/server/plugins/mapnik/funcs/mapnik.js +151 -151
- package/server/plugins/mapnik/funcs/rootFolder.mjs +8 -8
- package/server/plugins/mapnik/map.proto +437 -437
- package/server/plugins/vite.js +74 -74
- package/server/routes/cartocss/cartocss.route.js +31 -31
- package/server/routes/cartocss/cartocss.route.test.js +78 -78
- package/server/routes/cartocss/cartocss.schema.js +73 -73
- package/server/routes/cartocss/functions/add.cartocss.js +39 -39
- package/server/routes/cartocss/functions/get.cartocss.js +57 -57
- package/server/routes/gis/functions/checkXML.js +107 -107
- package/server/routes/gis/functions/dashboard.js +24 -24
- package/server/routes/gis/gis.route.js +26 -26
- package/server/routes/gis/gis.route.test.js +33 -33
- package/server/routes/map/functions/clearTiles.js +35 -35
- package/server/routes/map/functions/geojson.js +187 -187
- package/server/routes/map/functions/gis.convert.js +65 -65
- package/server/routes/map/functions/gis.icon.js +220 -220
- package/server/routes/map/functions/jsonData.js +206 -206
- package/server/routes/map/functions/layerList.js +102 -102
- package/server/routes/map/functions/map.js +122 -122
- package/server/routes/map/functions/mapCatalog.js +72 -72
- package/server/routes/map/functions/mapCatalogAttribute.js +53 -53
- package/server/routes/map/functions/mapFeatures.js +133 -133
- package/server/routes/map/functions/mapFormat.js +232 -231
- package/server/routes/map/functions/mapTiles.js +162 -162
- package/server/routes/map/functions/maps.js +15 -15
- package/server/routes/map/functions/marker_icon.js +43 -43
- package/server/routes/map/functions/parseGeoFile.js +85 -85
- package/server/routes/map/functions/pointHeight.js +51 -51
- package/server/routes/map/functions/vtile.js +174 -174
- package/server/routes/map/functions/vtile1.js +185 -185
- package/server/routes/map/map.route.js +280 -280
- package/server/routes/map/map.route.test.js +503 -503
- package/server/routes/map/map.schema.js +356 -356
- package/server/routes/map/pin/circle1.svg +76 -76
- package/server/routes/map/pin/circle2.svg +18 -18
- package/server/routes/map/pin/none.svg +12 -12
- package/server/routes/map/pin/pin.svg +14 -14
- package/server/routes/map/pin/pin1.svg +16 -16
- package/server/routes/map/pin/pin2.svg +7 -7
- package/server/routes/map/pin/pin3.svg +34 -34
- package/server/routes/map/pin/pin4.svg +14 -14
- package/server/routes/map/pin/pin5.svg +7 -7
- package/server/routes/map/pin/pin6.svg +12 -12
- package/server/routes/map/pin/pin7.svg +12 -12
- package/server/routes/mapnik/functions/cartoBounds.js +32 -32
- package/server/routes/mapnik/functions/clearTiles.js +103 -103
- package/server/routes/mapnik/functions/convertBoundToTile.js +27 -27
- package/server/routes/mapnik/functions/createXml.js +76 -76
- package/server/routes/mapnik/functions/createXmlMulti.js +72 -72
- package/server/routes/mapnik/functions/fileSearch.js +35 -35
- package/server/routes/mapnik/functions/fileStat.js +28 -28
- package/server/routes/mapnik/functions/pretile.js +138 -138
- package/server/routes/mapnik/functions/rasterInfo.js +66 -66
- package/server/routes/mapnik/functions/readDir.js +22 -22
- package/server/routes/mapnik/functions/rtile.js +164 -164
- package/server/routes/mapnik/functions/uploadRaster.js +152 -152
- package/server/routes/mapnik/functions/uploadXML.js +140 -140
- package/server/routes/mapnik/mapnik.route.js +102 -102
- package/server/routes/mapnik/mapnik.route.test.js +370 -370
- package/server/routes/mapnik/mapnik.schema.mjs +195 -195
- package/server/routes/mapnik.prefixless/functions/mapnikLogger.js +31 -31
- package/server/routes/mapnik.prefixless/functions/mapnikStat.js +21 -21
- package/server/routes/mapnik.prefixless/mapnik.prefixless.route.js +20 -20
- package/server/routes/mapnik.prefixless/mapnik.prefixless.route.test.js +91 -91
- package/server/routes/mapnik.prefixless/mapnik.prefixless.schema.mjs +27 -27
- package/server/routes/maps/functions/add.map.js +42 -42
- package/server/routes/maps/functions/del.map.js +17 -17
- package/server/routes/maps/functions/get.map.js +119 -119
- package/server/routes/maps/maps.route.js +58 -58
- package/server/routes/maps/maps.route.test.js +231 -231
- package/server/routes/maps/maps.schema.js +9 -9
- package/server/routes/metadata/functions/editMetadata.js +35 -35
- package/server/routes/metadata/functions/metadataXML.js +19 -19
- package/server/routes/metadata/metadata.route.js +26 -26
- package/server/routes/metadata/metadata.route.test.js +46 -46
- package/server/routes/metadata/metadata.schema.js +53 -53
- package/server/routes/ogc/functions/map.info.point.js +117 -117
- package/server/routes/ogc/ogc.route.js +21 -21
- package/server/routes/ogc/ogc.route.test.js +53 -53
- package/server/routes/ogc/ogc.schema.js +16 -16
- package/server/routes/permissions/functions/catalog.permissions.edit.js +20 -20
- package/server/routes/permissions/functions/catalog.permissions.js +12 -12
- package/server/routes/permissions/functions/get.permissions.js +59 -59
- package/server/routes/permissions/functions/gis.catalog.js +80 -80
- package/server/routes/permissions/permissions.route.js +35 -35
- package/server/routes/permissions/permissions.route.test.js +35 -35
- package/server/routes/permissions/permissions.schema.js +43 -43
- package/server/routes/registers/functions/add.registry.js +37 -37
- package/server/routes/registers/functions/classifiers.js +100 -100
- package/server/routes/registers/functions/columns.js +3 -3
- package/server/routes/registers/functions/content.type.js +9 -9
- package/server/routes/registers/functions/del.registry.js +14 -14
- package/server/routes/registers/functions/get.info.js +93 -93
- package/server/routes/registers/functions/gis.export.js +159 -159
- package/server/routes/registers/functions/gis.registry.js +71 -71
- package/server/routes/registers/functions/gis.registry.list.js +61 -61
- package/server/routes/registers/functions/handleRegistryRequest.js +147 -147
- package/server/routes/registers/functions/map.registry.js +87 -87
- package/server/routes/registers/registers.route.js +80 -80
- package/server/routes/registers/registers.route.test.js +144 -144
- package/server/routes/registers/registers.schema.js +246 -246
- package/server/routes/root.mjs +3 -3
- package/server/routes/services/functions/add.service.js +62 -62
- package/server/routes/services/functions/create.route.js +93 -93
- package/server/routes/services/functions/del.service.js +12 -12
- package/server/routes/services/functions/get.layer.geom.js +27 -27
- package/server/routes/services/functions/get.service.users.js +76 -76
- package/server/routes/services/functions/get.services.col.js +34 -34
- package/server/routes/services/functions/get.services.js +89 -89
- package/server/routes/services/functions/legend.auto.js +77 -77
- package/server/routes/services/services.route.js +76 -76
- package/server/routes/services/services.route.test.js +167 -167
- package/server/routes/services/services.schema.js +278 -278
- package/server/routes/widgets/functions/add.widget.js +38 -38
- package/server/routes/widgets/functions/del.widget.js +17 -17
- package/server/routes/widgets/functions/get.widget.js +41 -41
- package/server/routes/widgets/widgets.route.js +61 -61
- package/server/routes/widgets/widgets.route.test.js +144 -144
- package/server/routes/widgets/widgets.schema.js +24 -24
- package/server/shared/listFiles.js +15 -0
- package/utils.js +13 -13
|
@@ -1,133 +1,133 @@
|
|
|
1
|
-
import { BadRequestError, NotFoundError } from '@opengis/fastify-table/errors.js';
|
|
2
|
-
import {
|
|
3
|
-
getMeta, getFilterSQL, getTemplate, metaFormat, pgClients, yml2json,
|
|
4
|
-
} from '@opengis/fastify-table/utils.js';
|
|
5
|
-
|
|
6
|
-
const layerMetaColumns = ['id', 'name', 'label', 'source', 'table', 'pk', 'geomColumn', 'srid', 'cls', 'htmls'];
|
|
7
|
-
|
|
8
|
-
export default async function mapFeaturesPoint({ slug, id, x, y, sql }, pg = pgClients.client) {
|
|
9
|
-
if (!slug) {
|
|
10
|
-
throw BadRequestError('not enough params: slug');
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
if (!(x && y) && !id) {
|
|
14
|
-
throw BadRequestError('not enough params: xy');
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
const loadTemplate = await getTemplate('map', slug);
|
|
18
|
-
|
|
19
|
-
if (!loadTemplate) {
|
|
20
|
-
throw NotFoundError('map not found');
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
const index = loadTemplate?.find?.(el => el[0].split('.').shift() === 'index')?.[1];
|
|
24
|
-
|
|
25
|
-
const layers1 = !index
|
|
26
|
-
? loadTemplate?.layers
|
|
27
|
-
: loadTemplate?.filter?.(el => el[0].split('.').shift() !== 'index')?.map(el => ({ ...el[1], id: el[0].replace('.yml', '').replace('.json', '') }));
|
|
28
|
-
|
|
29
|
-
const serviceLayers = await Promise.all((layers1 || []).filter(el => typeof el === 'string').map(async (layer) => {
|
|
30
|
-
const layerData = await getTemplate('layer', layer);
|
|
31
|
-
const serviceData = layerData || await pg.query('select service_id as id, *, st_asgeojson(bbox)::json as bbox, st_asgeojson(center)::json as center from gis.services where service_id=$1', [layer]).then(el => el.rows?.[0]);
|
|
32
|
-
serviceData.style = yml2json(serviceData.style);
|
|
33
|
-
return { ...serviceData, id: layer, visible: true };
|
|
34
|
-
}));
|
|
35
|
-
|
|
36
|
-
const layers = (layers1 || []).filter(el => el && typeof el === 'object').concat(serviceLayers);
|
|
37
|
-
|
|
38
|
-
if (!layers?.length) {
|
|
39
|
-
throw NotFoundError('map layers not found');
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
if (!layers.filter(el => el.source_path).length) {
|
|
43
|
-
throw NotFoundError('map layers sources not provided');
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
const point = `srid=4326;point(${x} ${y})`; // 30, 50
|
|
47
|
-
|
|
48
|
-
const { srids } = await pg.queryCache?.('select json_agg(srid) as srids from spatial_ref_sys').then(el => el.rows?.[0] || {}) || {};
|
|
49
|
-
|
|
50
|
-
await Promise.all(layers.map(async (layer, idx) => {
|
|
51
|
-
const {
|
|
52
|
-
source_path: source, srid = 4326, id: layerId, name,
|
|
53
|
-
} = layer;
|
|
54
|
-
|
|
55
|
-
const loadTable = await getTemplate('table', source);
|
|
56
|
-
const meta = await getMeta({ pg, table: loadTable?.table || source });
|
|
57
|
-
const { geom = 'geom' } = meta || {};
|
|
58
|
-
const { table = source, columns = meta?.columns } = loadTable || {};
|
|
59
|
-
|
|
60
|
-
const cls = columns
|
|
61
|
-
?.filter(el => el.name && el.data)
|
|
62
|
-
?.reduce?.((acc, curr) => ({ ...acc, [curr.name]: curr.data }), {});
|
|
63
|
-
const htmls = columns
|
|
64
|
-
?.filter(el => el.name && el.html)
|
|
65
|
-
?.reduce?.((acc, curr) => ({ ...acc, [curr.name]: curr.html }), {});
|
|
66
|
-
|
|
67
|
-
const pk = pg.pk?.[table] || loadTable?.key;
|
|
68
|
-
|
|
69
|
-
const { optimizedSQL } = await getFilterSQL({ pg, table: source, query: layer?.query });
|
|
70
|
-
|
|
71
|
-
Object.assign(layer, {
|
|
72
|
-
layer: (layerId || name || idx.toString())?.replace?.(/'/g, "''"),
|
|
73
|
-
table,
|
|
74
|
-
pk,
|
|
75
|
-
cls,
|
|
76
|
-
htmls,
|
|
77
|
-
geomColumn: geom,
|
|
78
|
-
optimizedSQL,
|
|
79
|
-
srid,
|
|
80
|
-
step: srids?.includes?.(srid - 0) && srid !== 4326 ? 10 : 0.0002,
|
|
81
|
-
});
|
|
82
|
-
}));
|
|
83
|
-
|
|
84
|
-
const unique = layers
|
|
85
|
-
.filter((el, idx, arr) => el.table && arr.map((item) => item.table).indexOf(el.table) === idx);
|
|
86
|
-
|
|
87
|
-
const q = unique.map((el) => {
|
|
88
|
-
const where = id
|
|
89
|
-
? `${el.pk}::text='${id.replace(/'/g, "''")}'`
|
|
90
|
-
: `case
|
|
91
|
-
when ST_GeometryType(${el.geomColumn}) in ('ST_Polygon','ST_MultiPolygon')
|
|
92
|
-
then st_intersects(${el.geomColumn},st_buffer('${point.replace(/'/g, "''")}',${el.step}))
|
|
93
|
-
|
|
94
|
-
when ST_GeometryType(${el.geomColumn}) in ('ST_Line','ST_MultiLineString', 'ST_MultiPoint', 'ST_Point')
|
|
95
|
-
then st_distance(${el.geomColumn},'${point.replace(/'/g, "''")}') < ${el.step}
|
|
96
|
-
else false
|
|
97
|
-
end`;
|
|
98
|
-
return `select ${el.pk}::text as pk, '${el.layer}' as layer,
|
|
99
|
-
row_to_json(t) as data,
|
|
100
|
-
${id ? 'null' : `st_distance(${el.geomColumn},'${point.replace(/'/g, "''")}')`} as distance,
|
|
101
|
-
st_asgeojson(${el.geomColumn})::json as geom from (${el.optimizedSQL}) t
|
|
102
|
-
where ${where}`;
|
|
103
|
-
}).join(' union all ').concat(' order by distance');
|
|
104
|
-
|
|
105
|
-
if (sql === 1) return q;
|
|
106
|
-
|
|
107
|
-
const { rows: objects = [] } = await pg.query(q);
|
|
108
|
-
|
|
109
|
-
if (!objects.length) {
|
|
110
|
-
return `object not found: ${id}`;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
const layerData = layers.find((el) => (el.id || el.name) === objects[0].layer) || {};
|
|
114
|
-
const rows = objects.slice(0, 1).map(el => ({ ...el.data, data: undefined }));
|
|
115
|
-
|
|
116
|
-
const { cls, htmls } = layerData;
|
|
117
|
-
await metaFormat({
|
|
118
|
-
rows, cls, htmls, sufix: false,
|
|
119
|
-
}, pg);
|
|
120
|
-
|
|
121
|
-
const resp = {
|
|
122
|
-
meta: {
|
|
123
|
-
...layerMetaColumns.reduce((acc, curr) => ({ ...acc, [curr]: layerData[curr] }), {}),
|
|
124
|
-
distance: objects[0].distance,
|
|
125
|
-
},
|
|
126
|
-
data: {
|
|
127
|
-
id: rows[0][layerData.pk],
|
|
128
|
-
...rows[0],
|
|
129
|
-
},
|
|
130
|
-
};
|
|
131
|
-
|
|
132
|
-
return resp;
|
|
133
|
-
}
|
|
1
|
+
import { BadRequestError, NotFoundError } from '@opengis/fastify-table/errors.js';
|
|
2
|
+
import {
|
|
3
|
+
getMeta, getFilterSQL, getTemplate, metaFormat, pgClients, yml2json,
|
|
4
|
+
} from '@opengis/fastify-table/utils.js';
|
|
5
|
+
|
|
6
|
+
const layerMetaColumns = ['id', 'name', 'label', 'source', 'table', 'pk', 'geomColumn', 'srid', 'cls', 'htmls'];
|
|
7
|
+
|
|
8
|
+
export default async function mapFeaturesPoint({ slug, id, x, y, sql }, pg = pgClients.client) {
|
|
9
|
+
if (!slug) {
|
|
10
|
+
throw BadRequestError('not enough params: slug');
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
if (!(x && y) && !id) {
|
|
14
|
+
throw BadRequestError('not enough params: xy');
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
const loadTemplate = await getTemplate('map', slug);
|
|
18
|
+
|
|
19
|
+
if (!loadTemplate) {
|
|
20
|
+
throw NotFoundError('map not found');
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
const index = loadTemplate?.find?.(el => el[0].split('.').shift() === 'index')?.[1];
|
|
24
|
+
|
|
25
|
+
const layers1 = !index
|
|
26
|
+
? loadTemplate?.layers
|
|
27
|
+
: loadTemplate?.filter?.(el => el[0].split('.').shift() !== 'index')?.map(el => ({ ...el[1], id: el[0].replace('.yml', '').replace('.json', '') }));
|
|
28
|
+
|
|
29
|
+
const serviceLayers = await Promise.all((layers1 || []).filter(el => typeof el === 'string').map(async (layer) => {
|
|
30
|
+
const layerData = await getTemplate('layer', layer);
|
|
31
|
+
const serviceData = layerData || await pg.query('select service_id as id, *, st_asgeojson(bbox)::json as bbox, st_asgeojson(center)::json as center from gis.services where service_id=$1', [layer]).then(el => el.rows?.[0]);
|
|
32
|
+
serviceData.style = yml2json(serviceData.style);
|
|
33
|
+
return { ...serviceData, id: layer, visible: true };
|
|
34
|
+
}));
|
|
35
|
+
|
|
36
|
+
const layers = (layers1 || []).filter(el => el && typeof el === 'object').concat(serviceLayers);
|
|
37
|
+
|
|
38
|
+
if (!layers?.length) {
|
|
39
|
+
throw NotFoundError('map layers not found');
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
if (!layers.filter(el => el.source_path).length) {
|
|
43
|
+
throw NotFoundError('map layers sources not provided');
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
const point = `srid=4326;point(${x} ${y})`; // 30, 50
|
|
47
|
+
|
|
48
|
+
const { srids } = await pg.queryCache?.('select json_agg(srid) as srids from spatial_ref_sys').then(el => el.rows?.[0] || {}) || {};
|
|
49
|
+
|
|
50
|
+
await Promise.all(layers.map(async (layer, idx) => {
|
|
51
|
+
const {
|
|
52
|
+
source_path: source, srid = 4326, id: layerId, name,
|
|
53
|
+
} = layer;
|
|
54
|
+
|
|
55
|
+
const loadTable = await getTemplate('table', source);
|
|
56
|
+
const meta = await getMeta({ pg, table: loadTable?.table || source });
|
|
57
|
+
const { geom = 'geom' } = meta || {};
|
|
58
|
+
const { table = source, columns = meta?.columns } = loadTable || {};
|
|
59
|
+
|
|
60
|
+
const cls = columns
|
|
61
|
+
?.filter(el => el.name && el.data)
|
|
62
|
+
?.reduce?.((acc, curr) => ({ ...acc, [curr.name]: curr.data }), {});
|
|
63
|
+
const htmls = columns
|
|
64
|
+
?.filter(el => el.name && el.html)
|
|
65
|
+
?.reduce?.((acc, curr) => ({ ...acc, [curr.name]: curr.html }), {});
|
|
66
|
+
|
|
67
|
+
const pk = pg.pk?.[table] || loadTable?.key;
|
|
68
|
+
|
|
69
|
+
const { optimizedSQL } = await getFilterSQL({ pg, table: source, query: layer?.query });
|
|
70
|
+
|
|
71
|
+
Object.assign(layer, {
|
|
72
|
+
layer: (layerId || name || idx.toString())?.replace?.(/'/g, "''"),
|
|
73
|
+
table,
|
|
74
|
+
pk,
|
|
75
|
+
cls,
|
|
76
|
+
htmls,
|
|
77
|
+
geomColumn: geom,
|
|
78
|
+
optimizedSQL,
|
|
79
|
+
srid,
|
|
80
|
+
step: srids?.includes?.(srid - 0) && srid !== 4326 ? 10 : 0.0002,
|
|
81
|
+
});
|
|
82
|
+
}));
|
|
83
|
+
|
|
84
|
+
const unique = layers
|
|
85
|
+
.filter((el, idx, arr) => el.table && arr.map((item) => item.table).indexOf(el.table) === idx);
|
|
86
|
+
|
|
87
|
+
const q = unique.map((el) => {
|
|
88
|
+
const where = id
|
|
89
|
+
? `${el.pk}::text='${id.replace(/'/g, "''")}'`
|
|
90
|
+
: `case
|
|
91
|
+
when ST_GeometryType(${el.geomColumn}) in ('ST_Polygon','ST_MultiPolygon')
|
|
92
|
+
then st_intersects(${el.geomColumn},st_buffer('${point.replace(/'/g, "''")}',${el.step}))
|
|
93
|
+
|
|
94
|
+
when ST_GeometryType(${el.geomColumn}) in ('ST_Line','ST_MultiLineString', 'ST_MultiPoint', 'ST_Point')
|
|
95
|
+
then st_distance(${el.geomColumn},'${point.replace(/'/g, "''")}') < ${el.step}
|
|
96
|
+
else false
|
|
97
|
+
end`;
|
|
98
|
+
return `select ${el.pk}::text as pk, '${el.layer}' as layer,
|
|
99
|
+
row_to_json(t) as data,
|
|
100
|
+
${id ? 'null' : `st_distance(${el.geomColumn},'${point.replace(/'/g, "''")}')`} as distance,
|
|
101
|
+
st_asgeojson(${el.geomColumn})::json as geom from (${el.optimizedSQL}) t
|
|
102
|
+
where ${where}`;
|
|
103
|
+
}).join(' union all ').concat(' order by distance');
|
|
104
|
+
|
|
105
|
+
if (sql === 1) return q;
|
|
106
|
+
|
|
107
|
+
const { rows: objects = [] } = await pg.query(q);
|
|
108
|
+
|
|
109
|
+
if (!objects.length) {
|
|
110
|
+
return `object not found: ${id}`;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
const layerData = layers.find((el) => (el.id || el.name) === objects[0].layer) || {};
|
|
114
|
+
const rows = objects.slice(0, 1).map(el => ({ ...el.data, data: undefined }));
|
|
115
|
+
|
|
116
|
+
const { cls, htmls } = layerData;
|
|
117
|
+
await metaFormat({
|
|
118
|
+
rows, cls, htmls, sufix: false,
|
|
119
|
+
}, pg);
|
|
120
|
+
|
|
121
|
+
const resp = {
|
|
122
|
+
meta: {
|
|
123
|
+
...layerMetaColumns.reduce((acc, curr) => ({ ...acc, [curr]: layerData[curr] }), {}),
|
|
124
|
+
distance: objects[0].distance,
|
|
125
|
+
},
|
|
126
|
+
data: {
|
|
127
|
+
id: rows[0][layerData.pk],
|
|
128
|
+
...rows[0],
|
|
129
|
+
},
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
return resp;
|
|
133
|
+
}
|