| 漏洞 ID 编号 |
BUG-000168153 |
| 已提交 | June 7, 2024 |
| 上次修改时间 | December 28, 2025 |
| 适用范围 | ArcGIS Pro |
| 找到的版本 | 3.3 |
| 操作系统 | Windows OS |
| 操作系统版本 | 10.0 |
| 状态 | Will Not Be Addressed
开发团队已考虑过该问题或请求,并决定不会解决该问题。 问题的“其他信息”部分可能包含进一步说明。
|
附加信息
The feature class has an unknown spatial reference with an SRID of 5973. This SRID is not present in the spatial_ref_sys table (a SpatiaLite table). SpatiaLite databases created by ArcGIS Pro include this SRID, but the SRID is missing from the client database for unknown reasons.
This issue is resolved using the following procedure with sqlite3.exe or a SQLite UI tool:
1. Create a SpatiaLite database named base.sqlite using ArcGIS Pro (the name is not important; note the chosen name).
2. Open the original SpatiaLite database.
3. At the SQLite prompt, enter:
ATTACH DATABASE 'C:\temp\BUG-000168153\base.sqlite' AS esridb;
4. Run the following command:
INSERT INTO main.spatial_ref_sys (srid,auth_name,auth_srid,ref_sys_name,proj4text,srtext) SELECT srid,auth_name,auth_srid,ref_sys_name,proj4text,srtext FROM esridb.spatial_ref_sys WHERE srid=5973;
5. Verify the addition:
SELECT * FROM spatial_ref_sys WHERE srid = 5973;
6. Exit sqlite3.exe or the SQLite UI tool.
The data draws correctly after completing these steps.
解决办法
When using the Create SQlite Database tool, geometry with negative x-values can be created in the ST_Geometry feature class.
重现步骤