Generate geodatabase replica from feature service

View on GitHubSample viewer app

Generate a local geodatabase replica from an online feature service.

Image of generate geodatabase

Use case

Generating geodatabase replica is the first step toward taking a feature service offline. It allows you to save features locally for offline display.

How to use the sample

Zoom to any extent. Then click the generate button to generate a geodatabase of features from a feature service filtered to the current extent. A red outline will show the extent used. The job's progress is shown while the geodatabase is generated. When complete, the map will reload with only the layers in the geodatabase, clipped to the extent.

How it works

  1. Create a GeodatabaseSyncTask with the URL of the feature service and load it.
  2. Create GenerateGeodatabaseParameters specifying the extent and whether to include attachments.
  3. Create a GenerateGeodatabaseJob with geodatabaseSyncTask.generateGeodatabaseAsync(parameters, downloadPath). Start the job with job.start().
  4. When the job is done, job.result() will return the geodatabase. Inside the geodatabase are feature tables which can be used to add feature layers to the map.
  5. Call syncTask.unregisterGeodatabaseAsync(geodatabase) after generation when you're not planning on syncing changes to the service.

Relevant API

  • GenerateGeodatabaseJob
  • GenerateGeodatabaseParameters
  • Geodatabase
  • GeodatabaseSyncTask

Tags

disconnected, local geodatabase, offline, replica, sync

Sample Code

MainActivity.kt
Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
/*
 * Copyright 2023 Esri
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

package com.esri.arcgismaps.sample.generategeodatabasereplicafromfeatureservice

import android.os.Bundle
import android.util.Log
import android.view.ViewGroup
import androidx.appcompat.app.AppCompatActivity
import androidx.databinding.DataBindingUtil
import androidx.lifecycle.lifecycleScope
import com.arcgismaps.ApiKey
import com.arcgismaps.ArcGISEnvironment
import com.arcgismaps.Color
import com.arcgismaps.data.Geodatabase
import com.arcgismaps.geometry.Envelope
import com.arcgismaps.geometry.SpatialReference
import com.arcgismaps.mapping.ArcGISMap
import com.arcgismaps.mapping.BasemapStyle
import com.arcgismaps.mapping.layers.FeatureLayer
import com.arcgismaps.mapping.symbology.SimpleLineSymbol
import com.arcgismaps.mapping.symbology.SimpleLineSymbolStyle
import com.arcgismaps.mapping.view.Graphic
import com.arcgismaps.mapping.view.GraphicsOverlay
import com.arcgismaps.mapping.view.ScreenCoordinate
import com.arcgismaps.tasks.geodatabase.GenerateGeodatabaseJob
import com.arcgismaps.tasks.geodatabase.GeodatabaseSyncTask
import com.esri.arcgismaps.sample.generategeodatabasereplicafromfeatureservice.databinding.ActivityMainBinding
import com.esri.arcgismaps.sample.generategeodatabasereplicafromfeatureservice.databinding.GenerateGeodatabaseDialogLayoutBinding
import com.google.android.material.dialog.MaterialAlertDialogBuilder
import com.google.android.material.snackbar.Snackbar
import kotlinx.coroutines.launch

class MainActivity : AppCompatActivity() {

    // set up data binding for the activity
    private val activityMainBinding: ActivityMainBinding by lazy {
        DataBindingUtil.setContentView(this, R.layout.activity_main)
    }

    // setup data binding for the mapview
    private val mapView by lazy {
        activityMainBinding.mapView
    }

    // starts the geodatabase replica process
    private val generateButton by lazy {
        activityMainBinding.generateButton
    }

    private val resetButton by lazy {
        activityMainBinding.resetButton
    }

    // shows the geodatabase loading progress
    private val progressDialog by lazy {
        GenerateGeodatabaseDialogLayoutBinding.inflate(layoutInflater)
    }

    // local file path to the geodatabase
    private val geodatabaseFilePath by lazy {
        getExternalFilesDir(null)?.path + getString(R.string.portland_trees_geodatabase_file)
    }

    private val downloadArea: Graphic = Graphic()

    // creates a graphic overlay
    private val graphicsOverlay: GraphicsOverlay = GraphicsOverlay()

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)

        // authentication with an API key or named user is
        // required to access basemaps and other location services
        ArcGISEnvironment.apiKey = ApiKey.create(BuildConfig.API_KEY)
        lifecycle.addObserver(mapView)

        // create and add a map with a Topographic basemap style
        val map = ArcGISMap(BasemapStyle.ArcGISTopographic)
        // set the max map extents to that of the feature service
        // representing portland area
        map.maxExtent = Envelope(
            -13687689.2185849,
            5687273.88331375,
            -13622795.3756647,
            5727520.22085841,
            spatialReference = SpatialReference.webMercator()
        )
        // configure mapview assignments
        mapView.apply {
            this.map = map
            // add the graphics overlay to display the boundary
            graphicsOverlays.add(graphicsOverlay)
        }

        // create a geodatabase sync task with the feature service url
        // This feature service shows a web map of portland street trees,
        // their attributes, as well as related inspection information
        val geodatabaseSyncTask = GeodatabaseSyncTask(getString(R.string.feature_server_url))

        // set the button's onClickListener
        generateButton.setOnClickListener {
            // start the geodatabase generation process
            generateGeodatabase(geodatabaseSyncTask, map, downloadArea.geometry?.extent)
        }

        resetButton.setOnClickListener {
            // clear any layers already on the map
            map.operationalLayers.clear()
            // clear all symbols drawn
            graphicsOverlay.graphics.clear()
            // add the download boundary
            graphicsOverlay.graphics.add(downloadArea)
            // show generate button
            generateButton.isEnabled = true
            resetButton.isEnabled = false
        }

        lifecycleScope.launch {
            // show the error and return if map load failed
            map.load().onFailure {
                showError("Unable to load map")
                return@launch
            }

            geodatabaseSyncTask.load().onFailure {
                // if the metadata load fails, show the error and return
                showError("Failed to fetch geodatabase metadata")
                return@launch
            }

            // show download area once map is loaded
            updateDownloadArea()

            // enable the generate button since the task is now loaded
            generateButton.isEnabled = true

            // create a symbol to show a box around the extent we want to download
            downloadArea.symbol = SimpleLineSymbol(SimpleLineSymbolStyle.Solid, Color.red, 2F)
            // add the graphic to the graphics overlay when it is created
            graphicsOverlay.graphics.add(downloadArea)
            // update the download area on viewpoint change
            mapView.viewpointChanged.collect {
                updateDownloadArea()
            }
        }
    }

    /**
     * Displays a red border on the map to signify the [downloadArea]
     */
    private fun updateDownloadArea() {
        // define screen area to create replica
        val minScreenPoint = ScreenCoordinate(200.0, 200.0)
        val maxScreenPoint = ScreenCoordinate(
            mapView.measuredWidth - 200.0,
            mapView.measuredHeight - 200.0
        )
        // convert screen points to map points
        val minPoint = mapView.screenToLocation(minScreenPoint)
        val maxPoint = mapView.screenToLocation(maxScreenPoint)
        // use the points to define and return an envelope
        if (minPoint != null && maxPoint != null) {
            val envelope = Envelope(minPoint, maxPoint)
            downloadArea.geometry = envelope
        }
    }

    /**
     * Starts a [geodatabaseSyncTask] with the given [map] and [extents],
     * runs a GenerateGeodatabaseJob and saves the geodatabase file into local storage
     */
    private fun generateGeodatabase(
        geodatabaseSyncTask: GeodatabaseSyncTask,
        map: ArcGISMap,
        extents: Envelope?
    ) {
        if (extents == null) {
            return showError("Download area extent is null")
        }

        lifecycleScope.launch {
            // create generate geodatabase parameters for the selected extents
            val defaultParameters =
                geodatabaseSyncTask.createDefaultGenerateGeodatabaseParameters(extents).getOrElse {
                    // show the error and return if the task fails
                    showError("Error creating geodatabase parameters")
                    return@launch
                }.apply {
                    // set the parameters to only create a replica of the Trees (0) layer
                    layerOptions.removeIf { layerOptions ->
                        layerOptions.layerId != 0L
                    }
                }

            // set return attachments option to false
            // indicates if any attachments are added to the geodatabase from the feature service
            defaultParameters.returnAttachments = false
            // create a generate geodatabase job
            geodatabaseSyncTask.createGenerateGeodatabaseJob(defaultParameters, geodatabaseFilePath)
                .run {
                    // create a dialog to show the jobs progress
                    val materialDialogBuilder = createProgressDialog(this)

                    // show the dialog and obtain a reference to it
                    val jobProgressDialog = materialDialogBuilder.show()

                    // launch a progress collector to display progress
                    launch {
                        progress.collect { value ->
                            // update the progress bar and progress text
                            progressDialog.progressBar.progress = value
                            progressDialog.progressTextView.text = "$value%"
                        }
                    }
                    // start the generateGeodatabase job
                    start()
                    // if the job completed successfully, get the geodatabase from the result
                    val geodatabase = result().getOrElse {
                        // show an error and return if job failed
                        showError("Error fetching geodatabase: ${it.message}")
                        // dismiss the dialog
                        jobProgressDialog.dismiss()
                        return@launch
                    }

                    // load and display the geodatabase
                    loadGeodatabase(geodatabase, map)
                    // dismiss the dialog view
                    jobProgressDialog.dismiss()
                    // unregister since we are not syncing
                    geodatabaseSyncTask.unregisterGeodatabase(geodatabase)
                    // show reset button as the task is now complete
                    generateButton.isEnabled = false
                    resetButton.isEnabled = true
                }
        }
    }

    /**
     * Loads the [geodatabase] and renders the feature layers on to the [map]
     */
    private suspend fun loadGeodatabase(geodatabase: Geodatabase, map: ArcGISMap) {
        // clear any layers already on the map
        map.operationalLayers.clear()
        // clear all symbols drawn
        graphicsOverlay.graphics.clear()

        // load the geodatabase
        geodatabase.load().onFailure {
            // if the load failed, show the error and return
            showError("Error loading geodatabase")
            return
        }
        // add all of the geodatabase feature tables to the map as feature layers
        map.operationalLayers += geodatabase.featureTables.map { featureTable ->
            FeatureLayer.createWithFeatureTable(featureTable)
        }
    }

    /**
     * Creates a new alert dialog using the progressDialog and provides
     * GenerateGeodatabaseJob cancellation on dialog cancellation
     *
     * @param generateGeodatabaseJob the job to cancel
     *
     * @return returns an alert dialog
     */
    private fun createProgressDialog(generateGeodatabaseJob: GenerateGeodatabaseJob): MaterialAlertDialogBuilder {
        // build and return a new alert dialog
        return MaterialAlertDialogBuilder(this).apply {
            // setting it title
            setTitle(getString(R.string.dialog_title))
            // allow it to be cancellable
            setCancelable(false)
            // sets negative button configuration
            setNegativeButton("Cancel") { _, _ ->
                // cancels the generateGeodatabaseJob
                lifecycleScope.launch {
                    generateGeodatabaseJob.cancel()
                }
            }
            // removes parent of the progressDialog layout, if previously assigned
            progressDialog.root.parent?.let { parent ->
                (parent as ViewGroup).removeAllViews()
            }
            // set the progressDialog Layout to this alert dialog
            setView(progressDialog.root)
        }
    }

    private fun showError(message: String) {
        Log.e(localClassName, message)
        Snackbar.make(mapView, message, Snackbar.LENGTH_SHORT).show()
    }
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.