Module: CollectingEvent::DwcSerialization
- Extended by:
- ActiveSupport::Concern
- Included in:
- CollectingEvent
- Defined in:
- app/models/collecting_event/dwc_serialization.rb
Instance Method Summary collapse
-
#dwc_georeference_attributes ⇒ Hash
The interface to DWC for verbatim values only on the CE.
Instance Method Details
#dwc_georeference_attributes ⇒ Hash
Returns The interface to DWC for verbatim values only on the CE. See respective georeferences for other implementations. See GeographicArea for centroids/areas.
13 14 15 16 17 18 19 20 |
# File 'app/models/collecting_event/dwc_serialization.rb', line 13 def dwc_georeference_attributes { verbatimLatitude: verbatim_latitude, verbatimLongitude: verbatim_longitude, georeferenceProtocol: 'Transcribed verbatim from physical human-readable media (e.g. paper specimen label, field notebook).', coordinateUncertaintyInMeters: verbatim_geolocation_uncertainty, geodeticDatum: verbatim_datum } end |