Merge pull request #2925 from tchak/geo-aria-id

Add id to geo areas
This commit is contained in:
gregoirenovel 2018-10-30 14:54:42 +01:00 committed by GitHub
commit e2f031d90e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 14 additions and 4 deletions

View file

@ -18,7 +18,10 @@ class ApiGeo::RPGAdapter
:code_culture,
:surface,
:bio
).merge({ geometry: feature[:geometry] })
).merge({
geometry: feature[:geometry],
geo_reference_id: feature[:properties][:id]
})
end
end
end

View file

@ -1,5 +1,5 @@
class GeoAreaSerializer < ActiveModel::Serializer
attributes :geometry, :source
attributes :geometry, :source, :geo_reference_id
attribute :surface_intersection, if: :include_cadastre?
attribute :surface_parcelle, if: :include_cadastre?

View file

@ -0,0 +1,5 @@
class AddGeoIdToGeoAreas < ActiveRecord::Migration[5.2]
def change
add_column :geo_areas, :geo_reference_id, :string
end
end

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2018_10_10_183331) do
ActiveRecord::Schema.define(version: 2018_10_30_103913) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -347,6 +347,7 @@ ActiveRecord::Schema.define(version: 2018_10_10_183331) do
t.jsonb "geometry"
t.jsonb "properties"
t.bigint "champ_id"
t.string "geo_reference_id"
t.index ["champ_id"], name: "index_geo_areas_on_champ_id"
t.index ["source"], name: "index_geo_areas_on_source"
end

View file

@ -53,7 +53,8 @@ describe ApiGeo::RPGAdapter do
:code_culture,
:surface,
:bio,
:geometry
:geometry,
:geo_reference_id
])
end
end