Sha256: 631b657c61e54407b13389661bb0dd11c8f5ecd080600f69ff83973f147a904c
Contents?: true
Size: 568 Bytes
Versions: 6
Compression:
Stored size: 568 Bytes
Contents
# frozen_string_literal: true module GeoCombine class Iso19139 < Metadata ## # Returns a Nokogiri::XSLT object containing the ISO19139 to GeoBlacklight # XSL # @return [Nokogiri::XSLT] def xsl_geoblacklight Nokogiri::XSLT(File.open(File.join(File.dirname(__FILE__), '../xslt/iso2geoBL.xsl'))) end ## # Returns a Nokogiri::XSLT object containing the ISO19139 to HTML XSL # @return [Nokogiri:XSLT] def xsl_html Nokogiri::XSLT(File.open(File.join(File.dirname(__FILE__), '../xslt/iso2html.xsl'))) end end end
Version data entries
6 entries across 6 versions & 1 rubygems