SRID for WS84 Web mercator aux sphere?

5028
6
02-13-2017 05:52 AM
JamiePortolese
New Contributor III

Hi,

I've received some ESRI biz data in CSV format and I'm trying to create a SQL Server spatial layer with it before I query it down to more manageable datasets.  The CSV file contains lat long coordinates that are in WGS 84 Web Mercator Auxilary Sphere.  I want to import the data into sql and create a geometry field with the coordinates but can't seem to find any reference to the SRID I would use to convert the lat long to geometry. 

I eventually want the data to land in SRID 4326 .  Do I even need to reproject it?  What SRID should I use to bring it into SQL Server geometry?

thanks in advance

Jamie

0 Kudos
6 Replies
AdamZiegler1
Esri Contributor

Hi Jamie - WGS 84 Web Mercator Auxilary Sphere SRID is 3857. Since 4326 is geographic and 3857 is projected a reprojection would be necessary.

-Adam Z

NeilAyres
MVP Alum

The above info from aziegler is spot on.

But are you sure your input csv is actually Web Merc coords. Sounds very unusual.

What do those numbers look like?

And extra unwanted info, both 3857 and 4326 (GCS_WGS_1984) are WGS84 based, a projection is necessary but no transformation is needed.

NeilAyres
MVP Alum

If the coordinates are Lat/Long, again, what do those numbers look like??

"lat long coordinates that are in WGS 84 Web Mercator "

If they are Lat/Long, then they are not Web Merc but are already GCS_WGS84 (4326)

JamiePortolese
New Contributor III

Using that as the SRID to create a geometry field, when I add the table to arcmap, it places the points in meters and not decimal degrees like I would expect.  Perhaps I'm not understanding things.  If I'm given lat long values are the values specific to the web Mercator  auxiliary sphere projection or should they be imported as geographic?  I'm having a hell of a time trying to line things up with my other data that's already in Geographic wgs84 SRID 4326.

0 Kudos
JamiePortolese
New Contributor III

The coordinates are (for example) -97 longitude, 26 latitude (they are from Texas).  I think this points to my misunderstanding of Lat Long coordinates in general.  I normally work in projected coordinate systems and only recently started doing a lot with lat long values.

AdamZiegler1
Esri Contributor

Hi Jamie - I think GSCUser85‌ was hitting this right earlier. Those are geographic coordinates. It would appear that your data is already in WGS 84, i.e. SRID 4326.

-Adam Z