How can I convert lat/long pairs to SDEBinary using Python?
I was tasked with migrating data from one database (DatabaseA) to another (DatabaseB). DatabaseB and DatabaseA are formatted completely differently. DatabaseA represents everything using lat/long pairs, while DatabaseB uses SDEBinary to represent geodata.
I am working on a Python script to pull data from DatabaseA and insert it directly into DatabaseB using SQL. How can I convert the lat/longs on-the-fly into SDEBinary?
The link below is helpful in understanding how values are represented using Esri Binary spatial type (SDEBinary) but I hope to avoid writing a comprehensive conversion module for such a simple task.
http://edndoc.esri.com/arcsde/9.2/concepts/geometry/representations/compressed.htm#Physical
Thanks in advance for any help!
Does ArcGIS see Database A as geographic data? If it doesn't, one possibility would be to write that data into a shapefile, then import the shapefile in the SDE database--let the software do the conversion to SDEbinary.
There's likely another way to grab the coordinates from DB A, make a geometry and then write that to DB B, but I would expect it to be relatively slow.
Shapefile is an awful format for database-to-database conversion. Recommend file geodatabase instead, since FGDB won't lose date resolution, numeric nulls, wide tables, UTF-16 strings, wide strings, legible field names,....
Matthew, have you tested the FeatureClassToFeatureClass tool? While slower than the SQL option, it may do all the heavy lifting for you.
We'll need more information than a link to archaic documentation. Of critical interest:
There are no tools to use pure Python to populate SDEBINARY geometry without ArcPy. Attempting to do so will cost far more than a seat of Desktop (and if the database is already SDEBINARY, then the software already exists).
- V
Matthew Sanders, is this question addressing the same question you ask How do I create and add SDEBINARY points to database? or is it a follow-up? If a follow-up, please mark a comment as "Correct" on the other discussion to close it out. If this is the same question, pursuing the original discussion usually works better than cross-posting the same question in a slightly different way.
If you are going to be populating data as SDEBINARY, then you are obviously working with an enterprise geodatabase. The most straightforward approach here would be using Xander Bakker's suggestion in the other discussion and work with XY event layers.
If you want to Workflow: Create tables with SQL and register them with the geodatabase—Help | ArcGIS Desktop , you aren't going to be able to work with SDEBINARY. There are others that have already touched on this, but there is no way to make DBMSes "aware" of SDEBINARY like ST_Geometry. SDEBINARY is simply a binary field to the underlying DBMS.