lib/ogc/gml/abstract_crs.rb in ogc-gml-1.0.0 vs lib/ogc/gml/abstract_crs.rb in ogc-gml-1.0.1
- old
+ new
@@ -1,21 +1,20 @@
# frozen_string_literal: true
-# --- abstract_crs_type.rb ---
-require "shale"
+require "lutaml/model"
require_relative "code"
require_relative "code_with_authority"
require_relative "meta_data_property"
require_relative "reference"
require_relative "abstract_topology"
module Ogc
module Gml
class AbstractCRS < AbstractTopology
- attribute :remarks, Shale::Type::String
- attribute :domain_of_validity, Shale::Type::String, collection: true
- attribute :scope, Shale::Type::String, collection: true
+ attribute :remarks, :string
+ attribute :domain_of_validity, :string, collection: true
+ attribute :scope, :string, collection: true
xml do
root "AbstractSingleCRS"
namespace "http://www.opengis.net/gml/3.2", "gml"