Sha256: 3b3507fdbd815d651e3a3feb69fdbe25d96b94e98b5cce86f8e23d8f0179cf09

Contents?: true

Size: 474 Bytes

Versions: 1

Compression:

Stored size: 474 Bytes

Contents

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.read('./lib/xslt/iso2geoBL.xsl'))
    end

    ##
    # Returns a Nokogiri::XSLT object containing the ISO19139 to HTML XSL
    # @return [Nokogiri:XSLT]
    def xsl_html
      Nokogiri::XSLT(File.read('./lib/xslt/iso2html.xsl'))
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
geo_combine-0.0.3 lib/geo_combine/iso19139.rb