class Datacite::Mapping::GeoLocationPointNode

XML mapping node for `<geoLocationPoint/>`

Public Class Methods

new(*args) click to toggle source
Calls superclass method Datacite::Mapping::GeoLocationNode::new
# File lib/datacite/mapping/geo_location_point.rb, line 97
def initialize(*args)
  @geom_class = GeoLocationPoint
  @coord_elements = { latitude: 'pointLatitude',
                      longitude: 'pointLongitude' }.freeze
  super
end