oxigdal-metadata 0.1.4

Metadata standards support for OxiGDAL - ISO 19115, FGDC, INSPIRE, DataCite, DCAT
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
//! ISO 19115 Geographic Information - Metadata standard.
//!
//! This module implements the ISO 19115:2014 metadata standard for geographic information.
//!
//! # Overview
//!
//! ISO 19115 defines a comprehensive schema for describing geographic information and services.
//! It includes metadata for datasets, services, applications, and other resources.
//!
//! # Examples
//!
//! ```no_run
//! use oxigdal_metadata::iso19115::*;
//! use oxigdal_metadata::common::*;
//!
//! # fn main() -> Result<(), Box<dyn std::error::Error>> {
//! let metadata = Iso19115Metadata::builder()
//!     .title("Sentinel-2 Level-2A")
//!     .abstract_text("Sentinel-2 atmospherically corrected imagery")
//!     .keywords(vec!["satellite", "sentinel-2", "optical"])
//!     .bbox(BoundingBox::new(-10.0, 5.0, 35.0, 45.0))
//!     .build()?;
//! # Ok(())
//! # }
//! ```

pub mod core;
pub mod reference_system;
pub mod spatial_representation;

pub use self::core::*;
pub use reference_system::*;
pub use spatial_representation::*;

use crate::common::{BoundingBox, ContactInfo, Keyword, TemporalExtent};
use crate::error::{MetadataError, Result};
use serde::{Deserialize, Serialize};

/// Complete ISO 19115 metadata record.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Iso19115Metadata {
    /// Metadata identifier
    pub file_identifier: Option<String>,
    /// Metadata language
    pub language: Option<String>,
    /// Metadata character set
    pub character_set: Option<CharacterSet>,
    /// Metadata hierarchy level
    pub hierarchy_level: HierarchyLevel,
    /// Metadata contact
    pub contact: Vec<ResponsibleParty>,
    /// Metadata date stamp
    pub date_stamp: chrono::DateTime<chrono::Utc>,
    /// Metadata standard name
    pub metadata_standard_name: String,
    /// Metadata standard version
    pub metadata_standard_version: String,
    /// Identification info
    pub identification_info: Vec<DataIdentification>,
    /// Distribution info
    pub distribution_info: Option<Distribution>,
    /// Data quality info
    pub data_quality_info: Option<DataQuality>,
    /// Reference system info
    pub reference_system_info: Vec<ReferenceSystem>,
}

impl Default for Iso19115Metadata {
    fn default() -> Self {
        Self {
            file_identifier: None,
            language: Some("eng".to_string()),
            character_set: Some(CharacterSet::Utf8),
            hierarchy_level: HierarchyLevel::Dataset,
            contact: Vec::new(),
            date_stamp: chrono::Utc::now(),
            metadata_standard_name: "ISO 19115:2014".to_string(),
            metadata_standard_version: "2014".to_string(),
            identification_info: Vec::new(),
            distribution_info: None,
            data_quality_info: None,
            reference_system_info: Vec::new(),
        }
    }
}

/// Builder for ISO 19115 metadata.
pub struct Iso19115Builder {
    metadata: Iso19115Metadata,
}

impl Iso19115Metadata {
    /// Create a new builder.
    pub fn builder() -> Iso19115Builder {
        Iso19115Builder {
            metadata: Self::default(),
        }
    }
}

impl Iso19115Builder {
    /// Set the title.
    pub fn title(mut self, title: impl Into<String>) -> Self {
        if self.metadata.identification_info.is_empty() {
            self.metadata
                .identification_info
                .push(DataIdentification::default());
        }
        self.metadata.identification_info[0].citation.title = title.into();
        self
    }

    /// Set the abstract.
    pub fn abstract_text(mut self, abstract_text: impl Into<String>) -> Self {
        if self.metadata.identification_info.is_empty() {
            self.metadata
                .identification_info
                .push(DataIdentification::default());
        }
        self.metadata.identification_info[0].abstract_text = abstract_text.into();
        self
    }

    /// Add keywords.
    pub fn keywords(mut self, keywords: Vec<impl Into<String>>) -> Self {
        if self.metadata.identification_info.is_empty() {
            self.metadata
                .identification_info
                .push(DataIdentification::default());
        }
        let kw = keywords
            .into_iter()
            .map(|k| Keyword {
                keyword: k.into(),
                thesaurus: None,
            })
            .collect();
        self.metadata.identification_info[0].keywords.push(kw);
        self
    }

    /// Set the bounding box.
    pub fn bbox(mut self, bbox: BoundingBox) -> Self {
        if self.metadata.identification_info.is_empty() {
            self.metadata
                .identification_info
                .push(DataIdentification::default());
        }
        self.metadata.identification_info[0]
            .extent
            .geographic_extent = Some(bbox);
        self
    }

    /// Set the temporal extent.
    pub fn temporal_extent(mut self, extent: TemporalExtent) -> Self {
        if self.metadata.identification_info.is_empty() {
            self.metadata
                .identification_info
                .push(DataIdentification::default());
        }
        self.metadata.identification_info[0].extent.temporal_extent = Some(extent);
        self
    }

    /// Add a contact.
    pub fn contact(mut self, contact: ResponsibleParty) -> Self {
        self.metadata.contact.push(contact);
        self
    }

    /// Set the file identifier.
    pub fn file_identifier(mut self, id: impl Into<String>) -> Self {
        self.metadata.file_identifier = Some(id.into());
        self
    }

    /// Build the metadata.
    pub fn build(self) -> Result<Iso19115Metadata> {
        if self.metadata.identification_info.is_empty() {
            return Err(MetadataError::MissingField(
                "identification_info".to_string(),
            ));
        }
        Ok(self.metadata)
    }
}

/// Character set enumeration.
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
pub enum CharacterSet {
    /// UTF-8
    Utf8,
    /// ISO 8859-1
    Iso8859_1,
    /// UTF-16
    Utf16,
}

/// Metadata hierarchy level.
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
pub enum HierarchyLevel {
    /// Dataset
    Dataset,
    /// Series
    Series,
    /// Service
    Service,
    /// Application
    Application,
}

/// Responsible party information.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ResponsibleParty {
    /// Individual name
    pub individual_name: Option<String>,
    /// Organization name
    pub organization_name: Option<String>,
    /// Position name
    pub position_name: Option<String>,
    /// Contact info
    pub contact_info: Option<ContactInfo>,
    /// Role
    pub role: Role,
}

/// Role code.
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
pub enum Role {
    /// Resource provider
    ResourceProvider,
    /// Custodian
    Custodian,
    /// Owner
    Owner,
    /// User
    User,
    /// Distributor
    Distributor,
    /// Originator
    Originator,
    /// Point of contact
    PointOfContact,
    /// Principal investigator
    PrincipalInvestigator,
    /// Processor
    Processor,
    /// Publisher
    Publisher,
    /// Author
    Author,
}

/// Citation information.
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct Citation {
    /// Title
    pub title: String,
    /// Alternate title
    pub alternate_title: Option<String>,
    /// Date
    pub date: Vec<CitationDate>,
    /// Edition
    pub edition: Option<String>,
    /// Identifier
    pub identifier: Vec<String>,
    /// Cited responsible party
    pub cited_responsible_party: Vec<ResponsibleParty>,
}

/// Citation date.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CitationDate {
    /// Date
    pub date: chrono::DateTime<chrono::Utc>,
    /// Date type
    pub date_type: DateType,
}

/// Date type code.
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
pub enum DateType {
    /// Creation date
    Creation,
    /// Publication date
    Publication,
    /// Revision date
    Revision,
}

/// Distribution information.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Distribution {
    /// Distribution format
    pub format: Vec<Format>,
    /// Distributor
    pub distributor: Vec<Distributor>,
    /// Transfer options
    pub transfer_options: Vec<TransferOptions>,
}

/// Format information.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Format {
    /// Format name
    pub name: String,
    /// Version
    pub version: String,
}

/// Distributor information.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Distributor {
    /// Distributor contact
    pub distributor_contact: ResponsibleParty,
    /// Distribution order process
    pub distribution_order_process: Vec<String>,
}

/// Transfer options.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TransferOptions {
    /// Online resource
    pub online: Vec<OnlineResource>,
    /// Transfer size (MB)
    pub transfer_size: Option<f64>,
}

/// Online resource.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct OnlineResource {
    /// Linkage URL
    pub linkage: String,
    /// Protocol
    pub protocol: Option<String>,
    /// Name
    pub name: Option<String>,
    /// Description
    pub description: Option<String>,
    /// Function
    pub function: OnlineFunction,
}

/// Online function code.
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
pub enum OnlineFunction {
    /// Download
    Download,
    /// Information
    Information,
    /// Offline access
    OfflineAccess,
    /// Order
    Order,
    /// Search
    Search,
}

/// Data quality information.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DataQuality {
    /// Scope
    pub scope: Scope,
    /// Lineage
    pub lineage: Option<Lineage>,
    /// Report
    pub report: Vec<QualityReport>,
}

/// Scope information.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Scope {
    /// Level
    pub level: HierarchyLevel,
}

/// Lineage information.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Lineage {
    /// Statement
    pub statement: String,
    /// Process step
    pub process_step: Vec<ProcessStep>,
    /// Source
    pub source: Vec<Source>,
}

/// Process step.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ProcessStep {
    /// Description
    pub description: String,
    /// Date/time
    pub date_time: Option<chrono::DateTime<chrono::Utc>>,
    /// Processor
    pub processor: Vec<ResponsibleParty>,
}

/// Source information.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Source {
    /// Description
    pub description: String,
    /// Scale denominator
    pub scale_denominator: Option<i32>,
    /// Source citation
    pub source_citation: Option<Citation>,
}

/// Quality report.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct QualityReport {
    /// Measure identification
    pub measure_identification: String,
    /// Result
    pub result: String,
}