qgis / QGIS

QGIS is a free, open source, cross platform (lin/win/mac) geographical information system (GIS)
https://qgis.org
GNU General Public License v2.0
10.09k stars 2.93k forks source link

Could not commit changes error. Wrong data type for attribute #57010

Open tsmcgrath opened 3 months ago

tsmcgrath commented 3 months ago

What is the bug or the crash?

I cannot save an edit session. In the session I simply copied/pasted lines from many source datasets to one target dataset. The only attribute field populated was a "Name" string field. The dataset I am pasting into does have a boolean field and @agiudiceandrea thinks it may be related to #55517. But, there was no boolean attribute in the source data and I only cared about the "Name" and the linestring geometry. The target file format is flatgeobuf. I am able to save all but one of the newly pasted linestrings into an ESRI GeoDB file and recover most of the 2 hour edit session.

Steps to reproduce the issue

  1. I have a bunch of source datasets open in a project. One target dataset. All sources are GPX file imports. The target is an .fgb format (flatgeobuf).
  2. Select all lines from a selected, active layer, source using the Select All in the GUI.
  3. Paste lines into target with CTRL-V.
  4. Repeat for all sources (maybe 20?)
  5. Try to save edits

Errors:

Could not commit changes to layer APT2024_v1.0
Errors: ERROR: 277 features not added.  
  Provider errors:
      wrong data type for attribute 0 of feature -326: 10
Layer APT2024_v1.0: wrong data type for attribute 0 of feature -326: 10

I was able to save the edit session to an ESRI GeoDB file. I did receive another error but it seemed to be able to isolate it to the one line it was having an issue with. I cannot upload the dataset with the error because it is an an in-memory edit session.

Versions

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">

QGIS version | 3.34.1-Prizren | QGIS code branch | Release 3.34 -- | -- | -- | -- Qt version | 5.15.8 Python version | 3.11.6 GDAL/OGR version | 3.8.0 PROJ version | 9.3.0 EPSG Registry database version | v10.094 (2023-08-08) GEOS version | 3.12.0-CAPI-1.18.0 SQLite version | 3.44.2 PDAL version | 2.6.0 PostgreSQL client version | unknown SpatiaLite version | 5.1.0 QWT version | 6.2.0 QScintilla2 version | 2.14.1 OS version | macOS 14.2   |   |   |   Active Python plugins FreehandRasterGeoreferencer | 0.8.3 ORStools | 1.7.1 batchvectorlayersaver | 0.9 batch_gps_importer | version 1.0.1 GpxSegmentImporter | 2.5 CZMLBillboardMaker | 0.8 osminfo | 0.8.1 quick_map_services | 0.19.34 IPyConsole | version 2.0 qgis2wegue | 1.1.1 splitmultipart | 1.0.0 LAStools | 2.1.0 OpenTripPlannerPlugin | 1.0.1 GeoCoding | 2.19 ImportPhotos | 3.0.5 qgis2web | 3.18.2 mask | 1.10.2 qfieldsync | v4.9.1 Beeline | 0.2.0 qgis_resource_sharing | 1.0.0 qgis-maptiler-plugin | 3.2 plugin_reloader | 0.9.4 CSMapMaker | 0.5 processing | 2.12.99 grassprovider | 2.12.99 db_manager | 0.1.20 MetaSearch | 0.3.6 QGIS version 3.34.1-Prizren QGIS code branch [Release 3.34](https://github.com/qgis/QGIS/tree/release-3_34) Qt version 5.15.8 Python version 3.11.6 GDAL/OGR version 3.8.0 PROJ version 9.3.0 EPSG Registry database version v10.094 (2023-08-08) GEOS version 3.12.0-CAPI-1.18.0 SQLite version 3.44.2 PDAL version 2.6.0 PostgreSQL client version unknown SpatiaLite version 5.1.0 QWT version 6.2.0 QScintilla2 version 2.14.1 OS version macOS 14.2 Active Python plugins FreehandRasterGeoreferencer 0.8.3 ORStools 1.7.1 batchvectorlayersaver 0.9 batch_gps_importer version 1.0.1 GpxSegmentImporter 2.5 CZMLBillboardMaker 0.8 osminfo 0.8.1 quick_map_services 0.19.34 IPyConsole version 2.0 qgis2wegue 1.1.1 splitmultipart 1.0.0 LAStools 2.1.0 OpenTripPlannerPlugin 1.0.1 GeoCoding 2.19 ImportPhotos 3.0.5 qgis2web 3.18.2 mask 1.10.2 qfieldsync v4.9.1 Beeline 0.2.0 qgis_resource_sharing 1.0.0 qgis-maptiler-plugin 3.2 plugin_reloader 0.9.4 CSMapMaker 0.5 processing 2.12.99 grassprovider 2.12.99 db_manager 0.1.20 MetaSearch 0.3.6 ### Supported QGIS version - [X] I'm running a supported QGIS version according to [the roadmap](https://www.qgis.org/en/site/getinvolved/development/roadmap.html#release-schedule). ### New profile - [ ] I tried with a new [QGIS profile](https://docs.qgis.org/latest/en/docs/user_manual/introduction/qgis_configuration.html#working-with-user-profiles) ### Additional context _No response_
rouault commented 3 months ago

We'd need a minimum reproducer scenario with a source dataset that can be used to reproduce the issue

tsmcgrath commented 3 months ago

@rouault I have the original problem file still open with the uncommitted edits. Any way to save the edit state? Otherwise I would need to repeat 2-3 hours of work to see which imported file is causing the problem - if that even works. So, if you have suggestions on how to short-cut that to get to a repro file, let me know.

rouault commented 3 months ago

ah nevermind. For some reason, I wrongly read "The dataset I am pasting into does have a boolean field" as "The dataset I am pasting into does not have a boolean field". OK, so then it is very likely to be the same as #55517 and solved by https://github.com/qgis/QGIS/pull/57004

tsmcgrath commented 3 months ago

Even if the "pasted" source data did not have a boolean field and therefore would be null in the target field for that feature? The target has the boolean field but no new incoming data has it.

rouault commented 3 months ago

Even if the "pasted" source data did not have a boolean field and therefore would be null in the target field for that feature?

I'm not familiar with what the copy&paste logic in QGIS does exactly, but I'd suspect that it might perhaps set an empty QString() on the boolean field instead of a NULL or unset value. At least that's the only explanation I've in mind to explain that you get into the code path that triggers this error message. That said, if that is indeed the case, then the fix of #57004 will not address this and will emit a new error message "wrong value for attribute XXX of feature YYYY: " (the empty string being appended after the final colon). It might still be valuable to paste your reproducer here if you manage to create one (hopefully if your input files have the same structure, using a random one and using a random source feature should be enough)

tsmcgrath commented 3 months ago

Hi @rouault, I've got a repro case here. I managed to save it to an ESRI DB format. https://github.com/tsmcgrath/aptstaging/blob/main/data/APT2024_v1.0a.gdb.zip Repro steps: Open in a QGIS project Export to Geopackage format. The following error happens: Export to vector file failed. Error: Creation of field fid failed (OGR error: Wrong field type for fid)

rouault commented 3 months ago

Export to Geopackage format. The following error happens: Export to vector file failed. Error: Creation of field fid failed (OGR error: Wrong field type for fid)

ok, but that's a totally different workflow from copy&pasting features. Here's the issue is that your source FileGDB has a field called "fid" and of type Real. This conflicts with the Integer primary key field of GeoPackage. The export logic could potentially be smarter to recognize this (not sure if we want to go into that complication), but an easy fix on the user side is to change the value of the "Layer Options" FID to something else that "fid". "my_fid" for example

tsmcgrath commented 3 months ago

Errors are occurring in an earlier version of the data in flatgeobuf format when I try to export to a geopackage. Both datasets are here: https://github.com/tsmcgrath/aptstaging/tree/main/data The lesson for me is don't edit FGB format files. I am going to start these edits all over. Errors: Export to vector file failed. Error: Feature write errors: Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid) Feature creation error (OGR error: failed to execute insert : UNIQUE constraint failed: APT24_v1-1.fid)Stopping after 1001 errors