@ignfab/geocontext 0.9.6 → 0.9.7

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.
Files changed (126) hide show
  1. package/README.md +334 -257
  2. package/dist/gpf/adminexpress.d.ts +17 -8
  3. package/dist/gpf/adminexpress.js +40 -17
  4. package/dist/gpf/adminexpress.js.map +1 -1
  5. package/dist/gpf/altitude.d.ts +21 -9
  6. package/dist/gpf/altitude.js +5 -5
  7. package/dist/gpf/altitude.js.map +1 -1
  8. package/dist/gpf/geocode.d.ts +25 -4
  9. package/dist/gpf/geocode.js +5 -5
  10. package/dist/gpf/geocode.js.map +1 -1
  11. package/dist/gpf/parcellaire-express.d.ts +19 -9
  12. package/dist/gpf/parcellaire-express.js +59 -26
  13. package/dist/gpf/parcellaire-express.js.map +1 -1
  14. package/dist/gpf/urbanisme.d.ts +24 -16
  15. package/dist/gpf/urbanisme.js +81 -33
  16. package/dist/gpf/urbanisme.js.map +1 -1
  17. package/dist/gpf/{wfs.js → wfs-schema-catalog.js} +1 -1
  18. package/dist/gpf/wfs-schema-catalog.js.map +1 -0
  19. package/dist/helpers/RateLimiter.d.ts +44 -0
  20. package/dist/helpers/RateLimiter.js +52 -0
  21. package/dist/helpers/RateLimiter.js.map +1 -0
  22. package/dist/helpers/distance.d.ts +2 -1
  23. package/dist/helpers/distance.js +2 -1
  24. package/dist/helpers/distance.js.map +1 -1
  25. package/dist/helpers/errors/toolError.d.ts +30 -0
  26. package/dist/helpers/errors/toolError.js +193 -0
  27. package/dist/helpers/errors/toolError.js.map +1 -0
  28. package/dist/helpers/errors/zodErrorMapFr.d.ts +20 -0
  29. package/dist/helpers/errors/zodErrorMapFr.js +191 -0
  30. package/dist/helpers/errors/zodErrorMapFr.js.map +1 -0
  31. package/dist/helpers/http.d.ts +67 -7
  32. package/dist/helpers/http.js +458 -84
  33. package/dist/helpers/http.js.map +1 -1
  34. package/dist/helpers/jsonSchema.d.ts +16 -4
  35. package/dist/helpers/jsonSchema.js +7 -1
  36. package/dist/helpers/jsonSchema.js.map +1 -1
  37. package/dist/helpers/schemas.d.ts +4 -4
  38. package/dist/helpers/wfs_engine/attributeFilter.d.ts +51 -0
  39. package/dist/helpers/wfs_engine/attributeFilter.js +258 -0
  40. package/dist/helpers/wfs_engine/attributeFilter.js.map +1 -0
  41. package/dist/helpers/wfs_engine/byId.d.ts +76 -0
  42. package/dist/helpers/wfs_engine/byId.js +106 -0
  43. package/dist/helpers/wfs_engine/byId.js.map +1 -0
  44. package/dist/helpers/wfs_engine/execution.d.ts +72 -0
  45. package/dist/helpers/wfs_engine/execution.js +95 -0
  46. package/dist/helpers/wfs_engine/execution.js.map +1 -0
  47. package/dist/helpers/wfs_engine/features.d.ts +64 -0
  48. package/dist/helpers/wfs_engine/features.js +138 -0
  49. package/dist/helpers/wfs_engine/features.js.map +1 -0
  50. package/dist/helpers/wfs_engine/geometry.d.ts +16 -0
  51. package/dist/helpers/wfs_engine/geometry.js +44 -0
  52. package/dist/helpers/wfs_engine/geometry.js.map +1 -0
  53. package/dist/helpers/wfs_engine/properties.d.ts +51 -0
  54. package/dist/helpers/wfs_engine/properties.js +128 -0
  55. package/dist/helpers/wfs_engine/properties.js.map +1 -0
  56. package/dist/helpers/wfs_engine/queryPreparation.d.ts +32 -0
  57. package/dist/helpers/wfs_engine/queryPreparation.js +149 -0
  58. package/dist/helpers/wfs_engine/queryPreparation.js.map +1 -0
  59. package/dist/helpers/{wfs_internal → wfs_engine}/request.d.ts +49 -2
  60. package/dist/helpers/{wfs_internal → wfs_engine}/request.js +77 -1
  61. package/dist/helpers/wfs_engine/request.js.map +1 -0
  62. package/dist/helpers/wfs_engine/response.d.ts +80 -0
  63. package/dist/helpers/wfs_engine/response.js +135 -0
  64. package/dist/helpers/wfs_engine/response.js.map +1 -0
  65. package/dist/helpers/wfs_engine/schema.d.ts +209 -0
  66. package/dist/helpers/{wfs_internal → wfs_engine}/schema.js +50 -10
  67. package/dist/helpers/wfs_engine/schema.js.map +1 -0
  68. package/dist/helpers/wfs_engine/spatialCql.d.ts +46 -0
  69. package/dist/helpers/wfs_engine/spatialCql.js +54 -0
  70. package/dist/helpers/wfs_engine/spatialCql.js.map +1 -0
  71. package/dist/helpers/wfs_engine/spatialFilter.d.ts +14 -0
  72. package/dist/helpers/wfs_engine/spatialFilter.js +131 -0
  73. package/dist/helpers/wfs_engine/spatialFilter.js.map +1 -0
  74. package/dist/index.js +65 -23
  75. package/dist/index.js.map +1 -1
  76. package/dist/logger.d.ts +1 -1
  77. package/dist/logger.js +4 -1
  78. package/dist/logger.js.map +1 -1
  79. package/dist/tools/AdminexpressTool.d.ts +42 -33
  80. package/dist/tools/AdminexpressTool.js +17 -2
  81. package/dist/tools/AdminexpressTool.js.map +1 -1
  82. package/dist/tools/AltitudeTool.d.ts +35 -44
  83. package/dist/tools/AltitudeTool.js +19 -8
  84. package/dist/tools/AltitudeTool.js.map +1 -1
  85. package/dist/tools/AssietteSupTool.d.ts +51 -34
  86. package/dist/tools/AssietteSupTool.js +17 -2
  87. package/dist/tools/AssietteSupTool.js.map +1 -1
  88. package/dist/tools/BaseTool.d.ts +17 -0
  89. package/dist/tools/BaseTool.js +41 -0
  90. package/dist/tools/BaseTool.js.map +1 -0
  91. package/dist/tools/CadastreTool.d.ts +53 -33
  92. package/dist/tools/CadastreTool.js +17 -2
  93. package/dist/tools/CadastreTool.js.map +1 -1
  94. package/dist/tools/GeocodeTool.d.ts +53 -37
  95. package/dist/tools/GeocodeTool.js +17 -2
  96. package/dist/tools/GeocodeTool.js.map +1 -1
  97. package/dist/tools/GpfWfsDescribeTypeTool.d.ts +66 -94
  98. package/dist/tools/GpfWfsDescribeTypeTool.js +25 -14
  99. package/dist/tools/GpfWfsDescribeTypeTool.js.map +1 -1
  100. package/dist/tools/GpfWfsGetFeatureByIdTool.d.ts +52 -73
  101. package/dist/tools/GpfWfsGetFeatureByIdTool.js +50 -107
  102. package/dist/tools/GpfWfsGetFeatureByIdTool.js.map +1 -1
  103. package/dist/tools/GpfWfsGetFeaturesTool.d.ts +89 -114
  104. package/dist/tools/GpfWfsGetFeaturesTool.js +29 -120
  105. package/dist/tools/GpfWfsGetFeaturesTool.js.map +1 -1
  106. package/dist/tools/GpfWfsSearchTypesTool.d.ts +41 -32
  107. package/dist/tools/GpfWfsSearchTypesTool.js +18 -3
  108. package/dist/tools/GpfWfsSearchTypesTool.js.map +1 -1
  109. package/dist/tools/UrbanismeTool.d.ts +42 -33
  110. package/dist/tools/UrbanismeTool.js +17 -2
  111. package/dist/tools/UrbanismeTool.js.map +1 -1
  112. package/package.json +51 -24
  113. package/dist/gpf/wfs.js.map +0 -1
  114. package/dist/helpers/wfs.d.ts +0 -27
  115. package/dist/helpers/wfs.js +0 -55
  116. package/dist/helpers/wfs.js.map +0 -1
  117. package/dist/helpers/wfs_internal/compile.d.ts +0 -55
  118. package/dist/helpers/wfs_internal/compile.js +0 -596
  119. package/dist/helpers/wfs_internal/compile.js.map +0 -1
  120. package/dist/helpers/wfs_internal/request.js.map +0 -1
  121. package/dist/helpers/wfs_internal/response.d.ts +0 -29
  122. package/dist/helpers/wfs_internal/response.js +0 -59
  123. package/dist/helpers/wfs_internal/response.js.map +0 -1
  124. package/dist/helpers/wfs_internal/schema.d.ts +0 -167
  125. package/dist/helpers/wfs_internal/schema.js.map +0 -1
  126. /package/dist/gpf/{wfs.d.ts → wfs-schema-catalog.d.ts} +0 -0
@@ -1,59 +0,0 @@
1
- /**
2
- * Removes raw geometry payloads from a FeatureCollection, keeps GeoJSON validity by forcing
3
- * `geometry: null`, and exposes lightweight `feature_ref` objects reusable by follow-up requests.
4
- *
5
- * @param featureCollection Raw FeatureCollection returned by the WFS endpoint.
6
- * @returns A transformed FeatureCollection with raw geometry fields removed, `geometry: null`, and optional `feature_ref` metadata.
7
- */
8
- export function transformFeatureCollectionResponse(featureCollection) {
9
- if (!Array.isArray(featureCollection.features)) {
10
- return featureCollection;
11
- }
12
- const transformedFeatures = featureCollection.features.map((feature) => {
13
- const { geometry: _geometry, geometry_name: _geometryName, ...rest } = feature;
14
- const nextFeature = {
15
- ...rest,
16
- geometry: null,
17
- };
18
- if (typeof feature.id === "string") {
19
- nextFeature.feature_ref = {
20
- typename: null,
21
- feature_id: feature.id,
22
- };
23
- }
24
- return nextFeature;
25
- });
26
- const { crs: _crs, ...restCollection } = featureCollection;
27
- return { ...restCollection, features: transformedFeatures };
28
- }
29
- /**
30
- * Transforms a FeatureCollection and injects the exact queried typename into each `feature_ref`.
31
- *
32
- * @param featureCollection Raw FeatureCollection returned by the WFS endpoint.
33
- * @param typename Typename of the queried layer.
34
- * @returns A transformed FeatureCollection whose `feature_ref` objects carry the exact typename.
35
- */
36
- export function attachFeatureRefs(featureCollection, typename) {
37
- const transformed = transformFeatureCollectionResponse(featureCollection);
38
- if (!Array.isArray(transformed.features)) {
39
- return transformed;
40
- }
41
- transformed.features = transformed.features.map((feature) => {
42
- if (typeof feature !== "object" || feature === null || !("feature_ref" in feature)) {
43
- return feature;
44
- }
45
- const featureRef = feature.feature_ref;
46
- if (typeof featureRef !== "object" || featureRef === null) {
47
- return feature;
48
- }
49
- return {
50
- ...feature,
51
- feature_ref: {
52
- ...featureRef,
53
- typename,
54
- },
55
- };
56
- });
57
- return transformed;
58
- }
59
- //# sourceMappingURL=response.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"response.js","sourceRoot":"","sources":["../../../src/helpers/wfs_internal/response.ts"],"names":[],"mappings":"AAYA;;;;;;GAMG;AACH,MAAM,UAAU,kCAAkC,CAAC,iBAA2C;IAC5F,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,iBAAiB,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC/C,OAAO,iBAAiB,CAAC;IAC3B,CAAC;IAED,MAAM,mBAAmB,GAAG,iBAAiB,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE;QACrE,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,aAAa,EAAE,aAAa,EAAE,GAAG,IAAI,EAAE,GAAG,OAAO,CAAC;QAE/E,MAAM,WAAW,GAA4B;YAC3C,GAAG,IAAI;YACP,QAAQ,EAAE,IAAI;SACf,CAAC;QAEF,IAAI,OAAO,OAAO,CAAC,EAAE,KAAK,QAAQ,EAAE,CAAC;YACnC,WAAW,CAAC,WAAW,GAAG;gBACxB,QAAQ,EAAE,IAAI;gBACd,UAAU,EAAE,OAAO,CAAC,EAAE;aACvB,CAAC;QACJ,CAAC;QAED,OAAO,WAAW,CAAC;IACrB,CAAC,CAAC,CAAC;IAEH,MAAM,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,cAAc,EAAE,GAAG,iBAAiB,CAAC;IAC3D,OAAO,EAAE,GAAG,cAAc,EAAE,QAAQ,EAAE,mBAAmB,EAAE,CAAC;AAC9D,CAAC;AAED;;;;;;GAMG;AACH,MAAM,UAAU,iBAAiB,CAAC,iBAA2C,EAAE,QAAgB;IAC7F,MAAM,WAAW,GAAG,kCAAkC,CAAC,iBAAiB,CAA4B,CAAC;IACrG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC,QAAQ,CAAC,EAAE,CAAC;QACzC,OAAO,WAAW,CAAC;IACrB,CAAC;IAED,WAAW,CAAC,QAAQ,GAAG,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE;QAC1D,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO,KAAK,IAAI,IAAI,CAAC,CAAC,aAAa,IAAI,OAAO,CAAC,EAAE,CAAC;YACnF,OAAO,OAAO,CAAC;QACjB,CAAC;QACD,MAAM,UAAU,GAAG,OAAO,CAAC,WAAW,CAAC;QACvC,IAAI,OAAO,UAAU,KAAK,QAAQ,IAAI,UAAU,KAAK,IAAI,EAAE,CAAC;YAC1D,OAAO,OAAO,CAAC;QACjB,CAAC;QACD,OAAO;YACL,GAAG,OAAO;YACV,WAAW,EAAE;gBACX,GAAG,UAAU;gBACb,QAAQ;aACT;SACF,CAAC;IACJ,CAAC,CAAC,CAAC;IAEH,OAAO,WAAW,CAAC;AACrB,CAAC"}
@@ -1,167 +0,0 @@
1
- import { z } from "zod";
2
- export declare const DEFAULT_LIMIT = 100;
3
- export declare const MAX_LIMIT = 5000;
4
- export declare const REQUEST_GET_URL_MAX_LENGTH = 6000;
5
- export declare const WHERE_OPERATORS: readonly ["eq", "ne", "lt", "lte", "gt", "gte", "in", "is_null"];
6
- export declare const SPATIAL_OPERATORS: readonly ["bbox", "intersects_point", "dwithin_point", "intersects_feature"];
7
- export declare const ORDER_DIRECTIONS: readonly ["asc", "desc"];
8
- export declare const gpfWfsGetFeaturesInputSchema: z.ZodObject<{
9
- typename: z.ZodString;
10
- limit: z.ZodDefault<z.ZodNumber>;
11
- result_type: z.ZodDefault<z.ZodEnum<["results", "hits", "request"]>>;
12
- select: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13
- order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
14
- property: z.ZodString;
15
- direction: z.ZodDefault<z.ZodEnum<["asc", "desc"]>>;
16
- }, "strict", z.ZodTypeAny, {
17
- property?: string;
18
- direction?: "asc" | "desc";
19
- }, {
20
- property?: string;
21
- direction?: "asc" | "desc";
22
- }>, "many">>;
23
- where: z.ZodOptional<z.ZodArray<z.ZodObject<{
24
- property: z.ZodString;
25
- operator: z.ZodEnum<["eq", "ne", "lt", "lte", "gt", "gte", "in", "is_null"]>;
26
- value: z.ZodOptional<z.ZodString>;
27
- values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
28
- }, "strict", z.ZodTypeAny, {
29
- values?: string[];
30
- value?: string;
31
- property?: string;
32
- operator?: "gte" | "gt" | "lte" | "lt" | "eq" | "ne" | "in" | "is_null";
33
- }, {
34
- values?: string[];
35
- value?: string;
36
- property?: string;
37
- operator?: "gte" | "gt" | "lte" | "lt" | "eq" | "ne" | "in" | "is_null";
38
- }>, "many">>;
39
- spatial_operator: z.ZodOptional<z.ZodEnum<["bbox", "intersects_point", "dwithin_point", "intersects_feature"]>>;
40
- bbox_west: z.ZodOptional<z.ZodNumber>;
41
- bbox_south: z.ZodOptional<z.ZodNumber>;
42
- bbox_east: z.ZodOptional<z.ZodNumber>;
43
- bbox_north: z.ZodOptional<z.ZodNumber>;
44
- intersects_lon: z.ZodOptional<z.ZodNumber>;
45
- intersects_lat: z.ZodOptional<z.ZodNumber>;
46
- dwithin_lon: z.ZodOptional<z.ZodNumber>;
47
- dwithin_lat: z.ZodOptional<z.ZodNumber>;
48
- dwithin_distance_m: z.ZodOptional<z.ZodNumber>;
49
- intersects_feature_typename: z.ZodOptional<z.ZodString>;
50
- intersects_feature_id: z.ZodOptional<z.ZodString>;
51
- }, "strict", z.ZodTypeAny, {
52
- typename?: string;
53
- limit?: number;
54
- result_type?: "request" | "results" | "hits";
55
- select?: string[];
56
- order_by?: {
57
- property?: string;
58
- direction?: "asc" | "desc";
59
- }[];
60
- where?: {
61
- values?: string[];
62
- value?: string;
63
- property?: string;
64
- operator?: "gte" | "gt" | "lte" | "lt" | "eq" | "ne" | "in" | "is_null";
65
- }[];
66
- spatial_operator?: "bbox" | "intersects_point" | "dwithin_point" | "intersects_feature";
67
- bbox_west?: number;
68
- bbox_south?: number;
69
- bbox_east?: number;
70
- bbox_north?: number;
71
- intersects_lon?: number;
72
- intersects_lat?: number;
73
- dwithin_lon?: number;
74
- dwithin_lat?: number;
75
- dwithin_distance_m?: number;
76
- intersects_feature_typename?: string;
77
- intersects_feature_id?: string;
78
- }, {
79
- typename?: string;
80
- limit?: number;
81
- result_type?: "request" | "results" | "hits";
82
- select?: string[];
83
- order_by?: {
84
- property?: string;
85
- direction?: "asc" | "desc";
86
- }[];
87
- where?: {
88
- values?: string[];
89
- value?: string;
90
- property?: string;
91
- operator?: "gte" | "gt" | "lte" | "lt" | "eq" | "ne" | "in" | "is_null";
92
- }[];
93
- spatial_operator?: "bbox" | "intersects_point" | "dwithin_point" | "intersects_feature";
94
- bbox_west?: number;
95
- bbox_south?: number;
96
- bbox_east?: number;
97
- bbox_north?: number;
98
- intersects_lon?: number;
99
- intersects_lat?: number;
100
- dwithin_lon?: number;
101
- dwithin_lat?: number;
102
- dwithin_distance_m?: number;
103
- intersects_feature_typename?: string;
104
- intersects_feature_id?: string;
105
- }>;
106
- export type GpfWfsGetFeaturesInput = z.infer<typeof gpfWfsGetFeaturesInputSchema>;
107
- export type WhereClause = NonNullable<GpfWfsGetFeaturesInput["where"]>[number];
108
- export type OrderByClause = NonNullable<GpfWfsGetFeaturesInput["order_by"]>[number];
109
- export type SpatialFilter = {
110
- operator: "bbox";
111
- west: number;
112
- south: number;
113
- east: number;
114
- north: number;
115
- } | {
116
- operator: "intersects_point";
117
- lon: number;
118
- lat: number;
119
- } | {
120
- operator: "dwithin_point";
121
- lon: number;
122
- lat: number;
123
- distance_m: number;
124
- } | {
125
- operator: "intersects_feature";
126
- typename: string;
127
- feature_id: string;
128
- };
129
- export declare const gpfWfsGetFeaturesHitsOutputSchema: z.ZodObject<{
130
- result_type: z.ZodLiteral<"hits">;
131
- totalFeatures: z.ZodNumber;
132
- }, "strip", z.ZodTypeAny, {
133
- result_type?: "hits";
134
- totalFeatures?: number;
135
- }, {
136
- result_type?: "hits";
137
- totalFeatures?: number;
138
- }>;
139
- export declare const gpfWfsGetFeaturesRequestOutputSchema: z.ZodObject<{
140
- result_type: z.ZodLiteral<"request">;
141
- method: z.ZodLiteral<"POST">;
142
- url: z.ZodString;
143
- query: z.ZodRecord<z.ZodString, z.ZodString>;
144
- body: z.ZodString;
145
- get_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
146
- }, "strip", z.ZodTypeAny, {
147
- body?: string;
148
- result_type?: "request";
149
- method?: "POST";
150
- url?: string;
151
- query?: Record<string, string>;
152
- get_url?: string;
153
- }, {
154
- body?: string;
155
- result_type?: "request";
156
- method?: "POST";
157
- url?: string;
158
- query?: Record<string, string>;
159
- get_url?: string;
160
- }>;
161
- type PublishedInputSchema = {
162
- type: "object";
163
- properties?: Record<string, object>;
164
- required?: string[];
165
- };
166
- export declare const gpfWfsGetFeaturesPublishedInputSchema: PublishedInputSchema;
167
- export {};
@@ -1 +0,0 @@
1
- {"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../src/helpers/wfs_internal/schema.ts"],"names":[],"mappings":"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"}
File without changes