acquisition
module
This is the acquisition
module.
This subpackage contains geographic metadata structures regarding data acquisition that are derived from the ISO 19115-2:2019 international standard.
AcquisitionInformation
Bases: ABC
Designations for the measuring instruments and their bands, the platform carrying them, and the mission to which the data contributes.
Source code in opengis/metadata/acquisition.py
717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 |
|
acquisition_plan: Optional[Sequence[Plan]]
abstractmethod
property
Identifies the plan as implemented by the acquisition.
acquisition_requirement: Optional[Sequence[Requirement]]
abstractmethod
property
Identifies the requirement the data acquisition intends to satisfy.
environmental_conditions: Optional[EnvironmentalRecord]
abstractmethod
property
A record of the environmental circumstances during the data acquisition.
instrument: Optional[Sequence[Instrument]]
abstractmethod
property
General information about the instrument used in data acquisition.
objective: Optional[Sequence[Objective]]
abstractmethod
property
Identification of the area or object to be sensed.
operation: Optional[Sequence[Operation]]
abstractmethod
property
General information about an identifiable activity which provided the data.
platform: Optional[Sequence[Platform]]
abstractmethod
property
General information about the platform from which the data were taken.
scope: Optional[Sequence[Scope]]
abstractmethod
property
The specific data to which the acquisition information applies.
ContextCode
Bases: Enum
Designation of criterion for defining the context of the scanning process event.
Source code in opengis/metadata/acquisition.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
|
ACQUISITION = 'acquisition'
class-attribute
instance-attribute
Event related to a specific collection.
PASS = 'pass'
class-attribute
instance-attribute
Event related to a sequence of collections.
WAY_POINT = 'wayPoint'
class-attribute
instance-attribute
Event related to a navigational manoeuvre.
EnvironmentalRecord
Bases: ABC
Information about the environmental conditions during the acquisition.
Source code in opengis/metadata/acquisition.py
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 |
|
average_air_temperature: Optional[float]
abstractmethod
property
Average air temperature along the flight pass during the photo flight.
max_altitude: Optional[float]
abstractmethod
property
Maximum altitude during the photo flight.
max_relative_humidity: Optional[float]
abstractmethod
property
Maximum realative humitiy along the flight pass during the photo flight.
meteorological_conditions: Optional[str]
abstractmethod
property
Meteorological conditions in the photo flight area, in particular clouds, snow, and wind.
solar_azimuth: Optional[float]
abstractmethod
property
Clockwise angle in degrees from north to the centre of the sun's disc.
NOTE: This Angle is calculated from the nadir point of the sensor, not the centre point of the image.
solar_elevation: Optional[float]
abstractmethod
property
Angle between the horizonand the centre of the sun's disk.
Event
Bases: ABC
Identification of a significant collection point within an operation.
Source code in opengis/metadata/acquisition.py
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 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 |
|
context: ContextCode
abstractmethod
property
Meaning of the event.
expected_objective: Optional[Sequence[Objective]]
abstractmethod
property
An objective expected to be completed by the event.
identifier: Identifier
abstractmethod
property
Event name or number.
related_pass: PlatformPass
abstractmethod
property
A PlatformPass
related to the Event
.
related_sensor: Sequence[Instrument]
abstractmethod
property
An Instrument
related to
the event.
sequence: SequenceCode
abstractmethod
property
Relative time ordering of the event.
time: datetime
abstractmethod
property
Time the event occurred.
trigger: TriggerCode
abstractmethod
property
Initiator of the event.
EventTypeCode
Bases: Enum
Type of event related to a platform, instrument, or sensor.
Source code in opengis/metadata/acquisition.py
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 |
|
ANNOUNCEMENT = 'announcement'
class-attribute
instance-attribute
Announcementannouncement about future events relevant to the platform/instrument/sensor.
CALIBRATION = 'calibration'
class-attribute
instance-attribute
Calibration event for the platform/instrument/sensor.
CALIBRATION_COEFFICIENT_UPDATE = 'calibrationCoefficientUpdate'
class-attribute
instance-attribute
Update of calibration information for the platform/instrument/sensor.
CLEAN = 'clean'
class-attribute
instance-attribute
Event related to cleaning the platform/instrument/sensor.
DATA_LOSS = 'dataLoss'
class-attribute
instance-attribute
Event related to data loss.
FATAL = 'fatal'
class-attribute
instance-attribute
Event that renders the platform/instrument/sensor unusable.
MANOEUVRE = 'manoeuvre'
class-attribute
instance-attribute
Event related to a manoeuvre of the platform/instrument/sensor.
MISSING_DATA = 'missingData'
class-attribute
instance-attribute
Event related to missing data from the platform/instrument/sensor.
NOTICE = 'notice'
class-attribute
instance-attribute
Notice about events related to the platform/instrument/sensor.
PRELAUNCH = 'prelaunch'
class-attribute
instance-attribute
Event related to prelaunch period for the platform/instrument/sensor.
SEVERE = 'severe'
class-attribute
instance-attribute
Event with significant impact on the performance of the platform/ instrument/sensor.
SWITCH_OFF = 'switchOff'
class-attribute
instance-attribute
Event related to switching off platform/instrument/sensor.
SWITCH_ON = 'switchOn'
class-attribute
instance-attribute
Event related to switching on platform/instrument/sensor.
GeometryTypeCode
Bases: Enum
Geometric description of the collection.
Source code in opengis/metadata/acquisition.py
108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
|
AREAL = 'areal'
class-attribute
instance-attribute
Collection of a geographic area defined by a polygon (coverage).
LINEAR = 'linear'
class-attribute
instance-attribute
Extended collection in a single vector.
POINT = 'point'
class-attribute
instance-attribute
Single geographic point of interest.
STRIP = 'strip'
class-attribute
instance-attribute
Series of linear collections grouped by way points.
Instrument
Bases: ABC
Designations for the measuring instruments.
Source code in opengis/metadata/acquisition.py
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 |
|
citation: Optional[Sequence[Citation]]
abstractmethod
property
Complete citation of the instrument.
description: Optional[str]
abstractmethod
property
Textual description of the instrument.
history: Optional[InstrumentEventList]
abstractmethod
property
List of events associated with the instrument.
identifier: Identifier
abstractmethod
property
Unique identification of the instrument.
mounted_on: Optional[Platform]
abstractmethod
property
Platform on which the instrument is mounted
sensor: Optional[Sequence[Sensor]]
abstractmethod
property
Instrument has a sensor.
type: str
abstractmethod
property
Name of the type of instrument. Examples: framing, line-scan, push-broom, pan-frame.
InstrumentEvent
Bases: ABC
An event related to a platform, instrument, or sensor.
Source code in opengis/metadata/acquisition.py
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 |
|
citation: Optional[Sequence[Citation]]
abstractmethod
property
Citation to the InstrumentEvent
.
description: str
abstractmethod
property
Description of the InstumentEvent
.
extent: Optional[Sequence[Extent]]
abstractmethod
property
Extent of the InstrumentEvent
.
revision_history: Optional[Sequence[Revision]]
abstractmethod
property
History of the revisions of the InstrumentEvent
.
type: EventTypeCode
abstractmethod
property
Type of the InstrumentEvent
.
InstrumentEventList
Bases: ABC
List of events relaed to platform, instrument, or sensor.
Source code in opengis/metadata/acquisition.py
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 |
|
citation: Optional[Sequence[Citation]]
abstractmethod
property
Citation to the InstrumentEventList
.
constraints: Optional[Sequence[Constraints]]
abstractmethod
property
Use and access constraints.
description: str
abstractmethod
property
Description of the language and character set used for the
InstrumentationEventList
.
instrumentation_event: Optional[Sequence[InstrumentEvent]]
abstractmethod
property
Events(s) in the list of events.
locale: Optional[str]
abstractmethod
property
Description of the language and character set used for the
InstrumentationEventList
. A string conforming to IETF BCP 47.
Objective
Bases: ABC
Describes the characteristics, spatial and temporal extent of the intended object to be observed.
Source code in opengis/metadata/acquisition.py
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 |
|
extent: Optional[Sequence[Extent]]
abstractmethod
property
Extent information including the bounding box, bounding polygon, vertical and temporal extent of the objective.
function: Optional[Sequence[str]]
abstractmethod
property
Function performed by or at the objective.
identifier: Sequence[Identifier]
abstractmethod
property
Registered code used to identify the objective.
objective_occurence: Optional[Sequence[Event]]
abstractmethod
property
Event or events associated with objective completion.
platform_pass: Optional[Sequence[PlatformPass]]
abstractmethod
property
Pass of the platform over the objective.
priority: Optional[str]
abstractmethod
property
Priority applied to the target.
sensing_instrument: Optional[Sequence[Instrument]]
abstractmethod
property
Instrument which senses the objective data.
type: Optional[Sequence[ObjectiveTypeCode]]
abstractmethod
property
Collection technique for the objective.
ObjectiveTypeCode
Bases: Enum
Temporal persistence of collection objective.
Source code in opengis/metadata/acquisition.py
124 125 126 127 128 129 130 131 132 133 134 |
|
INSTANTANEOUS_COLLECTION = 'instantaneousCollection'
class-attribute
instance-attribute
Single instance of collection.
PERSISTENT_VIEW = 'persistentView'
class-attribute
instance-attribute
Multiple instances of collection.
SURVEY = 'survey'
class-attribute
instance-attribute
Collection over specified domain.
Operation
Bases: ABC
Designations for the operation used to acquire the dataset.
Source code in opengis/metadata/acquisition.py
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 |
|
child_operation: Optional[Sequence[Operation]]
abstractmethod
property
Sub-missions that make up part of a larger mission.
citation: Optional[Citation]
abstractmethod
property
Identification of the mission.
description: Optional[str]
abstractmethod
property
Description of the mission on which the platform observations are part and the objectives of that mission.
identifier: Optional[Identifier]
abstractmethod
property
Unique identification of the operation.
objective: Optional[Sequence[Objective]]
abstractmethod
property
Object(s) or area(s) of interest to be sensed.
other_property: Optional[Record]
abstractmethod
property
Instance of other property type not included in Sensor
.
other_property_type: Optional[RecordType]
abstractmethod
property
Type of other property description.
parent_operation: Operation
abstractmethod
property
Heritage of the operation.
plan: Optional[Plan]
abstractmethod
property
Plan satisfied by th operation.
platform: Optional[Sequence[Platform]]
abstractmethod
property
Platform (or platforms) used in the operation.
significant_event: Optional[Sequence[Event]]
abstractmethod
property
Record of an event occuring during an operation.
status: ProgressCode
abstractmethod
property
Status of the data acquisition.
type: Optional[OperationTypeCode]
abstractmethod
property
Collection technique for the operation.
OperationTypeCode
Bases: Enum
Code indicating whether the data contained in this packet is real (originates from live-fly or other non-simulated operational sources), simulated (originates from target simulator sources), or synthesized (a mix of real and simulated data).
Source code in opengis/metadata/acquisition.py
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
|
REAL = 'real'
class-attribute
instance-attribute
Originates from live-fly or other non-simulated operational source.
SIMULATED = 'simulated'
class-attribute
instance-attribute
Originates from target simulator sources.
SYNTHESIZED = 'synthesized'
class-attribute
instance-attribute
Mix of real and simulated data.
Plan
Bases: ABC
Designations for the planning information related to meeting requirements.
Source code in opengis/metadata/acquisition.py
683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 |
|
citation: Citation
abstractmethod
property
Identification of authority requesting target collection.
operation: Optional[Sequence[Operation]]
abstractmethod
property
Identification of the activity or activities that satisfy a plan.
satisfied_requirement: Optional[Sequence[Requirement]]
abstractmethod
property
Requirement satisfied by the plan.
status: ProgressCode
abstractmethod
property
Current status of the plan (pending, completed, etc.).
type: Optional[GeometryTypeCode]
abstractmethod
property
Manner of sampling geometry the planner expects for collection of the objective data.
Platform
Bases: ABC
Designations for the platform used to acquire the dataset.
Source code in opengis/metadata/acquisition.py
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 |
|
citation: Optional[Citation]
abstractmethod
property
Complete citation of the platform.
description: str
abstractmethod
property
Narrative description of the platform supporting the instrument.
history: Optional[Sequence[InstrumentEventList]]
abstractmethod
property
List of events affecting a platform.
identifier: Identifier
abstractmethod
property
Unique identification of the platform.
instrument: Sequence[Instrument]
abstractmethod
property
Instrument(s) mounted on a platform
other_property: Optional[Record]
abstractmethod
property
Instance of other property type not included in Sensor
.
other_property_type: Optional[RecordType]
abstractmethod
property
Type of other property description.
sponsor: Optional[Sequence[Responsibility]]
abstractmethod
property
Organisation responsible for building, launch, or operation of the platform.
PlatformPass
Bases: ABC
Identification of collection coverage. Identifies a particular pass made by the platform during data acquisition. A platform pass is used to provide supporting identifying information for an event and for data acquisition of a particular objective.
Source code in opengis/metadata/acquisition.py
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 |
|
extent: Optional[Extent]
abstractmethod
property
Temporal and spatial extent of the pass.
identifier: Identifier
abstractmethod
property
Unique name of the pass.
related_event: Optional[Sequence[Event]]
abstractmethod
property
Occurrence of one or more events for a pass.
PriorityCode
Bases: Enum
Ordered list of priorities.
Source code in opengis/metadata/acquisition.py
155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
|
CRITICAL = 'critical'
class-attribute
instance-attribute
Of decisive importance.
HIGH_IMPORTANCE = 'highImportance'
class-attribute
instance-attribute
Requires resources to be made available.
LOW_IMPORTANCE = 'lowImportance'
class-attribute
instance-attribute
To be completed when resources are available.
MEDIUM_IMPORTANCE = 'mediumImportance'
class-attribute
instance-attribute
Normal operation priority.
RequestedDate
Bases: ABC
Range of date validity.
Source code in opengis/metadata/acquisition.py
623 624 625 626 627 628 629 630 631 632 633 634 |
|
latest_acceptable_date: datetime
abstractmethod
property
Latest date and time collection must be completed.
requested_date_of_collection: datetime
abstractmethod
property
Preferred date and time of collection.
Requirement
Bases: ABC
Requirement to be satisfied by the planned data acquisition.
Source code in opengis/metadata/acquisition.py
637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 |
|
citation: Optional[Citation]
abstractmethod
property
Identification of reference or guidance material for the requirement.
expiry_date: datetime
abstractmethod
property
Date and time after which collection is no longer valid.
identifier: Identifier
abstractmethod
property
Unique name, or code, for the requirement.
priority: PriorityCode
abstractmethod
property
Relative ordered importance, or urgency, of the requirement.
recipient: Sequence[Responsibility]
abstractmethod
property
Person(s), or body(ies), to receive results of requirement.
requested_date: RequestedDate
abstractmethod
property
Required or preferred acquisition date and time.
requestor: Sequence[Responsibility]
abstractmethod
property
Origin of requirement.
satisfied_plan: Optional[Sequence[Plan]]
abstractmethod
property
Plan that identifies solution to satisfy the requirement.
Revision
Bases: ABC
History of the revision of an event
Source code in opengis/metadata/acquisition.py
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
|
date_info: Sequence[date]
abstractmethod
property
Information about dates related to the revision.
description: str
abstractmethod
property
Description of the revision.
responsible_party: Sequence[Responsibility]
abstractmethod
property
Individual or organisation responsible for the revision.
Sensor
Bases: Instrument
Specific type of instrument
Source code in opengis/metadata/acquisition.py
322 323 324 325 326 327 328 |
|
hosted: Optional[Instrument]
abstractmethod
property
Instrument on which the sensor is hosted
SequenceCode
Bases: Enum
Temporal relation of activation.
Source code in opengis/metadata/acquisition.py
171 172 173 174 175 176 177 178 179 180 181 |
|
END = 'end'
class-attribute
instance-attribute
End of collection.
INSTANTANEOUS = 'instantaneous'
class-attribute
instance-attribute
Collection without a significant duration.
START = 'start'
class-attribute
instance-attribute
Beginning of collection.
TriggerCode
Bases: Enum
Mechanism of activation.
Source code in opengis/metadata/acquisition.py
184 185 186 187 188 189 190 191 192 193 194 |
|
AUTOMATIC = 'automatic'
class-attribute
instance-attribute
Event due to external stimuli.
MANUAL = 'manual'
class-attribute
instance-attribute
Event manually instigated.
PRE_PROGRAMMED = 'preProgrammed'
class-attribute
instance-attribute
Event instaigated by planned internal stimuli.