Process API¶
Road Network¶
clear_network_cache(cache_dir=None, older_than_days=None)
¶
Clear cached road networks.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cache_dir
|
str
|
Cache directory to clear. If None, uses default. |
None
|
older_than_days
|
int
|
Only clear networks older than this many days. |
None
|
Source code in landlensdb/process/road_network.py
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 | |
create_network_cache_dir()
¶
Create a cache directory for storing downloaded road networks.
Returns:
| Name | Type | Description |
|---|---|---|
str |
Path to the cache directory |
Source code in landlensdb/process/road_network.py
186 187 188 189 190 191 192 193 194 | |
get_osm_lines(bbox, network_type='drive', cache_dir=None, retries=3)
¶
Get road network from OpenStreetMap for a given bounding box.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
bbox
|
list
|
Bounding box coordinates [minx, miny, maxx, maxy]. Can be in any CRS. |
required |
network_type
|
str
|
Type of network to fetch. Defaults to 'drive' Options are: {"all", "all_public", "bike", "drive", "drive_service", "walk"}. |
'drive'
|
cache_dir
|
str
|
Directory to cache downloaded networks. Defaults to None. |
None
|
retries
|
int
|
Number of times to retry fetching network. Defaults to 3. |
3
|
Returns:
| Name | Type | Description |
|---|---|---|
GeoDataFrame |
Road network as a GeoDataFrame. |
Raises:
| Type | Description |
|---|---|
ConnectionError
|
If network cannot be fetched after retries. |
ValueError
|
If bbox coordinates are invalid. |
Source code in landlensdb/process/road_network.py
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 | |
optimize_network_for_snapping(network, simplify=True, remove_isolated=True)
¶
Optimize road network for efficient snapping operations.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
network
|
GeoDataFrame
|
The road network to optimize |
required |
simplify
|
bool
|
Whether to simplify geometries |
True
|
remove_isolated
|
bool
|
Whether to remove isolated segments |
True
|
Returns:
| Name | Type | Description |
|---|---|---|
GeoDataFrame |
Optimized network |
Source code in landlensdb/process/road_network.py
83 84 85 86 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 127 128 129 | |
validate_network_topology(network)
¶
Validate and repair road network topology.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
network
|
GeoDataFrame
|
Road network to validate |
required |
Returns:
| Name | Type | Description |
|---|---|---|
GeoDataFrame |
Validated and repaired network |
|
dict |
Report of validation results |
Source code in landlensdb/process/road_network.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | |
Snap¶
_calculate_bearing(point1, point2)
¶
Calculate the bearing between two points.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
point1
|
Point
|
Starting point. |
required |
point2
|
Point
|
Ending point. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
The bearing in degrees. |
Source code in landlensdb/process/snap.py
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | |
_create_spatial_index(network)
¶
Create a spatial index for the given network using Rtree.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
network
|
GeoDataFrame
|
A GeoDataFrame containing the network lines. |
required |
Returns:
| Type | Description |
|---|---|
|
rtree.index.Index: A spatial index for efficient spatial querying. |
Source code in landlensdb/process/snap.py
19 20 21 22 23 24 25 26 27 28 29 30 31 | |
_get_nearest_segment(point, network, idx)
¶
Find the nearest segment to a given point in a spatially indexed network.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
point
|
Point
|
The point to find the nearest segment to. |
required |
network
|
GeoDataFrame
|
A GeoDataFrame containing the network lines. |
required |
idx
|
Index
|
The spatial index of the network. |
required |
Returns:
| Type | Description |
|---|---|
|
shapely.geometry.LineString: The nearest line segment to the point. |
Source code in landlensdb/process/snap.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | |
align_compass_with_road(points, network)
¶
Aligns the compass angle of points with the bearing of the nearest road segment.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
points
|
GeoDataFrame
|
A GeoDataFrame containing points with compass angles. |
required |
network
|
GeoDataFrame
|
A GeoDataFrame containing the road network. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
GeoDataFrame |
A GeoDataFrame with updated snapped_angle field. |
Source code in landlensdb/process/snap.py
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | |
create_bbox(point, x_distance_meters, y_distance_meters)
¶
Create a bounding box around a point.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
point
|
Point
|
The center point for the bounding box. |
required |
x_distance_meters
|
float
|
The horizontal distance in meters. |
required |
y_distance_meters
|
float
|
The vertical distance in meters. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
list |
Bounding box coordinates [minx, miny, maxx, maxy] in EPSG:4326. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the input is not a Shapely Point. |
Source code in landlensdb/process/snap.py
78 79 80 81 82 83 84 85 86 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 | |
snap_to_road_network(gif, tolerance, network=None, bbox=None, network_type='all_private', realign_camera=True, cache_dir=None)
¶
Enhanced function to snap points to road network with automatic network fetching.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
gif
|
GeoDataFrame
|
A GeoDataFrame containing images and their geometries |
required |
tolerance
|
float
|
The snapping distance in meters |
required |
network
|
GeoDataFrame
|
Existing road network to use |
None
|
bbox
|
list
|
Bounding box to fetch network for if none provided |
None
|
network_type
|
str
|
Type of network to fetch |
'all_private'
|
realign_camera
|
bool
|
Whether to realign camera angles |
True
|
cache_dir
|
str
|
Directory to cache downloaded networks |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
GeoDataFrame |
A GeoDataFrame with updated snapped geometries |
Source code in landlensdb/process/snap.py
157 158 159 160 161 162 163 164 165 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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | |