digipin/
location.rs

1// Copyright (c) 2026 Pranam
2// ORCID: https://orcid.org/0009-0007-9316-3616
3//
4// This code is licensed under the Apache License, Version 2.0.
5//
6// You may obtain a copy of the License at
7//
8//     https://www.apache.org/licenses/LICENSE-2.0
9//
10// QR Code:
11// ![QR Code](/ORCID.png)
12// Scan the QR code to access my ORCID profile.
13
14/// Represents a geographic location with latitude and longitude.
15/// # Fields
16/// - `latitude`: The latitude in degrees.
17/// - `longitude`: The longitude in degrees.
18#[derive(Debug, Clone, Copy, PartialEq)]
19pub struct Location {
20    pub latitude: f64,
21    pub longitude: f64,
22}