rs_server_catalog/data_management/geometry_manager.md
Geometry validation utilities for STAC item create/update operations.
parse_bbox(bbox)
Parse bbox and enforce STAC length/order constraints.
Source code in docs/rs-server/services/catalog/rs_server_catalog/data_management/geometry_manager.py
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | |
parse_number(value, value_label)
Parse numeric value and reject bool/non-numeric inputs.
Source code in docs/rs-server/services/catalog/rs_server_catalog/data_management/geometry_manager.py
256 257 258 259 260 261 262 263 | |
parse_position(position, position_label)
Parse [lon, lat] position and return numeric pair.
Source code in docs/rs-server/services/catalog/rs_server_catalog/data_management/geometry_manager.py
217 218 219 220 221 222 223 224 225 226 227 228 229 | |
validate_geometry(geometry)
Validate GeoJSON geometry format and Shapely validity.
Validity checks performed:
- geometry must be a GeoJSON object (dict)
- geometry must be parseable by shapely.shape(...)
- parsed geometry must not be empty
- parsed geometry must be topologically valid (is_valid)
Raises:
| Type | Description |
|---|---|
HTTPException
|
400 Bad Request when any validation condition fails. |
Source code in docs/rs-server/services/catalog/rs_server_catalog/data_management/geometry_manager.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | |
validate_geometry_and_enforce_bbox(item)
Validate item geometry and enforce geometry/bbox consistency for Catalog item ingest/update.
ESA/STAC requirements covered: - STAC-CORE-ITEM-REQ-0220 (Polygon Geometry): validates right-hand-rule orientation for Polygon/MultiPolygon (exterior ring CCW, interior rings CW). - STAC-CORE-ITEM-REQ-0230 (Minimum-bounding rectangle): enforces 2D bbox format [minLon, minLat, maxLon, maxLat] in SW->NE order.
Behavior:
- if geometry is missing/null, no geometry check is performed.
- if geometry is present and bbox is missing, bbox is computed from geometry bounds.
- if geometry and bbox are both present, bbox must be consistent with geometry bounds.
In strict mode, inconsistency raises HTTP 400.
Source code in docs/rs-server/services/catalog/rs_server_catalog/data_management/geometry_manager.py
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 83 84 | |
validate_linear_ring_orientation(ring, expected_ccw, ring_label)
Validate one linear ring: structure, closure, area, and orientation.
Source code in docs/rs-server/services/catalog/rs_server_catalog/data_management/geometry_manager.py
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | |
validate_polygon_geometry_orientation(geometry)
Validate right-hand-rule orientation for Polygon and MultiPolygon.
Source code in docs/rs-server/services/catalog/rs_server_catalog/data_management/geometry_manager.py
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | |
validate_polygon_rings(rings, geometry_label)
Validate linear rings: first exterior CCW (counterclockwise), others interior CW (clockwise).
Source code in docs/rs-server/services/catalog/rs_server_catalog/data_management/geometry_manager.py
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | |