class Datacite::Mapping::GeoLocationBoxNode

XML mapping node for `<geoLocationBox/>`

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File lib/datacite/mapping/geo_location_box.rb, line 136
def initialize(*args)
  @geom_class = GeoLocationBox
  @coord_elements = { west_longitude: 'westBoundLongitude',
                      east_longitude: 'eastBoundLongitude',
                      south_latitude: 'southBoundLatitude',
                      north_latitude: 'northBoundLatitude' }.freeze
  super
end