oxigdal-vrt 0.1.6

VRT (Virtual Raster) driver for OxiGDAL - Pure Rust GDAL reimplementation
Documentation
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
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
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
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
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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
//! VRT mosaicking logic for combining multiple sources

use crate::error::{Result, VrtError};
use oxigdal_core::types::RasterDataType;
use std::str::FromStr;

/// Mosaic compositor for combining data from multiple sources
pub struct MosaicCompositor {
    /// Blending mode
    mode: BlendMode,
}

impl MosaicCompositor {
    /// Creates a new mosaic compositor
    pub fn new() -> Self {
        Self {
            mode: BlendMode::FirstValid,
        }
    }

    /// Creates a compositor with a specific blend mode
    pub fn with_mode(mode: BlendMode) -> Self {
        Self { mode }
    }

    /// Composites source data into destination buffer
    ///
    /// # Errors
    /// Returns an error if compositing fails
    pub fn composite(
        &self,
        source: &[u8],
        dest: &mut [u8],
        params: &CompositeParams,
    ) -> Result<()> {
        let CompositeParams {
            dest_x,
            dest_y,
            width,
            height,
            dest_width,
            data_type,
        } = *params;
        let bytes_per_pixel = data_type.size_bytes();

        for y in 0..height {
            let dest_row = dest_y + y;
            let src_row_offset = (y * width) as usize * bytes_per_pixel;
            let dest_row_offset = (dest_row * dest_width + dest_x) as usize * bytes_per_pixel;

            let copy_width = width.min(dest_width - dest_x) as usize;
            let copy_bytes = copy_width * bytes_per_pixel;

            let src_start = src_row_offset;
            let src_end = src_start + copy_bytes;
            let dest_start = dest_row_offset;
            let dest_end = dest_start + copy_bytes;

            if src_end <= source.len() && dest_end <= dest.len() {
                match self.mode {
                    BlendMode::FirstValid => {
                        // Copy only if destination is zero (not set)
                        for i in 0..copy_bytes {
                            if dest[dest_start + i] == 0 {
                                dest[dest_start + i] = source[src_start + i];
                            }
                        }
                    }
                    BlendMode::LastValid => {
                        // Always overwrite
                        dest[dest_start..dest_end].copy_from_slice(&source[src_start..src_end]);
                    }
                    BlendMode::Average => {
                        // Average with existing value
                        self.blend_average(
                            &source[src_start..src_end],
                            &mut dest[dest_start..dest_end],
                            data_type,
                        )?;
                    }
                    BlendMode::Min => {
                        self.blend_min(
                            &source[src_start..src_end],
                            &mut dest[dest_start..dest_end],
                            data_type,
                        )?;
                    }
                    BlendMode::Max => {
                        self.blend_max(
                            &source[src_start..src_end],
                            &mut dest[dest_start..dest_end],
                            data_type,
                        )?;
                    }
                }
            }
        }

        Ok(())
    }

    /// Blends using average mode
    fn blend_average(
        &self,
        source: &[u8],
        dest: &mut [u8],
        data_type: RasterDataType,
    ) -> Result<()> {
        match data_type {
            RasterDataType::UInt8 => {
                for i in 0..source.len() {
                    let src = source[i] as u16;
                    let dst = dest[i] as u16;
                    dest[i] = ((src + dst) / 2) as u8;
                }
            }
            RasterDataType::UInt16 => {
                let src_u16 = bytemuck::cast_slice::<u8, u16>(source);
                let dst_u16 = bytemuck::cast_slice_mut::<u8, u16>(dest);
                for i in 0..src_u16.len() {
                    let src = src_u16[i] as u32;
                    let dst = dst_u16[i] as u32;
                    dst_u16[i] = ((src + dst) / 2) as u16;
                }
            }
            RasterDataType::Float32 => {
                let src_f32 = bytemuck::cast_slice::<u8, f32>(source);
                let dst_f32 = bytemuck::cast_slice_mut::<u8, f32>(dest);
                for i in 0..src_f32.len() {
                    dst_f32[i] = (src_f32[i] + dst_f32[i]) / 2.0;
                }
            }
            RasterDataType::Float64 => {
                let src_f64 = bytemuck::cast_slice::<u8, f64>(source);
                let dst_f64 = bytemuck::cast_slice_mut::<u8, f64>(dest);
                for i in 0..src_f64.len() {
                    dst_f64[i] = (src_f64[i] + dst_f64[i]) / 2.0;
                }
            }
            _ => {
                return Err(VrtError::invalid_source(
                    "Unsupported data type for averaging",
                ));
            }
        }
        Ok(())
    }

    /// Blends using min mode
    fn blend_min(&self, source: &[u8], dest: &mut [u8], data_type: RasterDataType) -> Result<()> {
        match data_type {
            RasterDataType::UInt8 => {
                for i in 0..source.len() {
                    dest[i] = dest[i].min(source[i]);
                }
            }
            RasterDataType::UInt16 => {
                let src_u16 = bytemuck::cast_slice::<u8, u16>(source);
                let dst_u16 = bytemuck::cast_slice_mut::<u8, u16>(dest);
                for i in 0..src_u16.len() {
                    dst_u16[i] = dst_u16[i].min(src_u16[i]);
                }
            }
            RasterDataType::Float32 => {
                let src_f32 = bytemuck::cast_slice::<u8, f32>(source);
                let dst_f32 = bytemuck::cast_slice_mut::<u8, f32>(dest);
                for i in 0..src_f32.len() {
                    dst_f32[i] = dst_f32[i].min(src_f32[i]);
                }
            }
            RasterDataType::Float64 => {
                let src_f64 = bytemuck::cast_slice::<u8, f64>(source);
                let dst_f64 = bytemuck::cast_slice_mut::<u8, f64>(dest);
                for i in 0..src_f64.len() {
                    dst_f64[i] = dst_f64[i].min(src_f64[i]);
                }
            }
            _ => {
                return Err(VrtError::invalid_source("Unsupported data type for min"));
            }
        }
        Ok(())
    }

    /// Blends using max mode
    fn blend_max(&self, source: &[u8], dest: &mut [u8], data_type: RasterDataType) -> Result<()> {
        match data_type {
            RasterDataType::UInt8 => {
                for i in 0..source.len() {
                    dest[i] = dest[i].max(source[i]);
                }
            }
            RasterDataType::UInt16 => {
                let src_u16 = bytemuck::cast_slice::<u8, u16>(source);
                let dst_u16 = bytemuck::cast_slice_mut::<u8, u16>(dest);
                for i in 0..src_u16.len() {
                    dst_u16[i] = dst_u16[i].max(src_u16[i]);
                }
            }
            RasterDataType::Float32 => {
                let src_f32 = bytemuck::cast_slice::<u8, f32>(source);
                let dst_f32 = bytemuck::cast_slice_mut::<u8, f32>(dest);
                for i in 0..src_f32.len() {
                    dst_f32[i] = dst_f32[i].max(src_f32[i]);
                }
            }
            RasterDataType::Float64 => {
                let src_f64 = bytemuck::cast_slice::<u8, f64>(source);
                let dst_f64 = bytemuck::cast_slice_mut::<u8, f64>(dest);
                for i in 0..src_f64.len() {
                    dst_f64[i] = dst_f64[i].max(src_f64[i]);
                }
            }
            _ => {
                return Err(VrtError::invalid_source("Unsupported data type for max"));
            }
        }
        Ok(())
    }
}

impl Default for MosaicCompositor {
    fn default() -> Self {
        Self::new()
    }
}

/// Blend mode for mosaicking
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum BlendMode {
    /// Use first valid (non-zero) value
    FirstValid,
    /// Use last valid value (overwrite)
    LastValid,
    /// Average values
    Average,
    /// Take minimum value
    Min,
    /// Take maximum value
    Max,
}

impl BlendMode {
    /// Returns the string representation
    pub fn as_str(&self) -> &'static str {
        match self {
            Self::FirstValid => "FirstValid",
            Self::LastValid => "LastValid",
            Self::Average => "Average",
            Self::Min => "Min",
            Self::Max => "Max",
        }
    }
}

impl FromStr for BlendMode {
    type Err = String;

    fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
        match s.to_lowercase().as_str() {
            "first" | "firstvalid" => Ok(Self::FirstValid),
            "last" | "lastvalid" => Ok(Self::LastValid),
            "average" | "avg" => Ok(Self::Average),
            "min" | "minimum" => Ok(Self::Min),
            "max" | "maximum" => Ok(Self::Max),
            _ => Err(format!("Unknown blend mode: {}", s)),
        }
    }
}

/// Parameters for compositing operations
#[derive(Debug, Clone, Copy)]
pub struct CompositeParams {
    /// Destination X offset
    pub dest_x: u64,
    /// Destination Y offset
    pub dest_y: u64,
    /// Width to composite
    pub width: u64,
    /// Height to composite
    pub height: u64,
    /// Destination buffer width
    pub dest_width: u64,
    /// Data type
    pub data_type: RasterDataType,
}

impl CompositeParams {
    /// Creates new composite parameters
    pub fn new(
        dest_x: u64,
        dest_y: u64,
        width: u64,
        height: u64,
        dest_width: u64,
        data_type: RasterDataType,
    ) -> Self {
        Self {
            dest_x,
            dest_y,
            width,
            height,
            dest_width,
            data_type,
        }
    }
}

/// Mosaic builder helper for determining source contributions
pub struct MosaicPlanner;

impl MosaicPlanner {
    /// Determines which sources contribute to a given window
    pub fn find_contributing_sources<'a>(
        sources: &'a [crate::source::VrtSource],
        window: &crate::source::PixelRect,
    ) -> Vec<&'a crate::source::VrtSource> {
        sources
            .iter()
            .filter(|s| s.dst_rect().map(|r| r.intersects(window)).unwrap_or(false))
            .collect()
    }

    /// Calculates the overlap percentage between a source and window
    pub fn calculate_overlap(
        source_rect: &crate::source::PixelRect,
        window: &crate::source::PixelRect,
    ) -> f64 {
        if let Some(intersection) = source_rect.intersect(window) {
            let intersection_area = (intersection.x_size * intersection.y_size) as f64;
            let window_area = (window.x_size * window.y_size) as f64;
            intersection_area / window_area
        } else {
            0.0
        }
    }

    /// Sorts sources by priority (can be extended with custom priority logic)
    pub fn prioritize_sources<'a>(
        sources: Vec<&'a crate::source::VrtSource>,
        _window: &crate::source::PixelRect,
    ) -> Vec<&'a crate::source::VrtSource> {
        // For now, just return in original order
        // Future: could implement priority based on overlap, quality, etc.
        sources
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_mosaic_compositor() {
        let compositor = MosaicCompositor::new();
        let source = vec![1u8, 2, 3, 4];
        let mut dest = vec![0u8; 16];
        let params = CompositeParams::new(0, 0, 2, 2, 4, RasterDataType::UInt8);

        let result = compositor.composite(&source, &mut dest, &params);

        assert!(result.is_ok());
        assert_eq!(dest[0], 1);
        assert_eq!(dest[1], 2);
        assert_eq!(dest[4], 3);
        assert_eq!(dest[5], 4);
    }

    #[test]
    fn test_blend_mode_parsing() {
        assert_eq!("first".parse::<BlendMode>(), Ok(BlendMode::FirstValid));
        assert_eq!("average".parse::<BlendMode>(), Ok(BlendMode::Average));
        assert_eq!("min".parse::<BlendMode>(), Ok(BlendMode::Min));
        assert!("invalid".parse::<BlendMode>().is_err());
    }

    #[test]
    fn test_blend_average() {
        let compositor = MosaicCompositor::with_mode(BlendMode::Average);
        let source = vec![100u8, 200];
        let mut dest = vec![50u8, 100];

        let result = compositor.blend_average(&source, &mut dest, RasterDataType::UInt8);
        assert!(result.is_ok());
        assert_eq!(dest[0], 75); // (100 + 50) / 2
        assert_eq!(dest[1], 150); // (200 + 100) / 2
    }

    #[test]
    fn test_mosaic_planner() {
        use crate::source::{PixelRect, SourceWindow, VrtSource};

        let src1 = VrtSource::simple("/test1.tif", 1).with_window(SourceWindow::new(
            PixelRect::new(0, 0, 256, 256),
            PixelRect::new(0, 0, 256, 256),
        ));

        let src2 = VrtSource::simple("/test2.tif", 1).with_window(SourceWindow::new(
            PixelRect::new(0, 0, 256, 256),
            PixelRect::new(256, 0, 256, 256),
        ));

        let sources = vec![src1, src2];
        let window = PixelRect::new(0, 0, 512, 256);

        let contributing = MosaicPlanner::find_contributing_sources(&sources, &window);
        assert_eq!(contributing.len(), 2);

        let window_partial = PixelRect::new(100, 100, 100, 100);
        let contributing_partial =
            MosaicPlanner::find_contributing_sources(&sources, &window_partial);
        assert_eq!(contributing_partial.len(), 1);
    }

    #[test]
    fn test_overlap_calculation() {
        use crate::source::PixelRect;

        let source_rect = PixelRect::new(0, 0, 100, 100);
        let window = PixelRect::new(50, 50, 100, 100);

        let overlap = MosaicPlanner::calculate_overlap(&source_rect, &window);
        assert!((overlap - 0.25).abs() < 0.01); // 50x50 / 100x100 = 0.25
    }
}