Iso19115
ISO19115Extract
Bases: ExtractionMethod
Takes a URL and calls out to URL to retrieve the iso19115 record.
Method name: iso19115
Example configuration
.. code-block:: yaml
- method: iso19115
inputs:
url: $url
dates:
- key: './/gml:beginPosition'
output_key: start_datetime
Source code in extraction_methods/plugins/iso19115.py
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 | |
ISO19115Input
Bases: Input
Model for ISO19115 Date Input.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
url
|
str
|
Url for record store. |
required |
dates
|
list[KeyOutputKey]
|
list of dates to extract. |
required |
request_timeout
|
int
|
request time out. |
15
|
Source code in extraction_methods/plugins/iso19115.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | |