vote up 1 vote down star

I'm playing with the new geography column in SQL Server 2008 and the STGeomFromText function. Here is my code (works with AdventureWorks2008)

DECLARE @region geography; set @region = geography::STGeomFromText('POLYGON(( -80.0 50.0, -90.0 50.0, -90.0 25.0, -80.0 25.0, -80.0 50.0))', 4326);

SELECT @region;

My question is about the 4326 in the code. It is supposed to be a spacial Reference ID. When I go to MSDN there isn't a lot on it. If I change the value to 56 I get an error telling me the value must be in the sys.spatial_reference_systems table.

You can look at that table by executing: select * from sys.spatial_reference_systems

There is a well_known_text column in that table, but it doesn't tell me much. The value for 4326 is: GEOGCS["WGS 84", DATUM["World Geodetic System 1984", ELLIPSOID["WGS 84", 6378137, 298.257223563]], PRIMEM["Greenwich", 0], UNIT["Degree", 0.0174532925199433]]

Can anyone explain this mystery to me? What is the SRID?

flag

4 Answers

vote up 1 vote down check

SRID = Spatial Reference IDentifier

coordinates must use the same SRID to be comparable. otherwise you'd end up comparing kilometeres and miles. or something similar.

link|flag
vote up 2 vote down

There are a lot of systems to map the earth. For example you want to map some state in USA. You can set the most south-east point as 0,0 and map all other spatial coordinates according to this point. On the other hand you may want to map some spatial data that span all over the map. In any case you must choose some point as 0,0. In addition you must select some sort of measurement unit: miles/kilometers/degrees/some other magical unit that suits you better. Over the years a lot of such systems where developed. Each has its own zero point, it's own coordinates, it's own rules about if the earth is flat or not. SRID or SRS is id of such system. Using this id you can map point expressed in one system to another system, although sometimes it involves some pretty complex math.

And about 4326 SRID. It also called WSG84(http://en.wikipedia.org/wiki/World_Geodetic_System) system. It's the most common system to represent point on spherical(not flat) earth. It uses degree,minute,second notation and it's x and y coordinates are usually called latitude and longitude.

Most used non-spherical earth projection is called UTM. You can read about it here: http://en.wikipedia.org/wiki/Universal_Transverse_Mercator_coordinate_system

Anyway, as long you are not doing any spatial conversions from one system to other, you don't really care about the system that you data uses.

link|flag
vote up 1 vote down

So I ended up talking with an ex-military guy yesterday who was a radar/mapping specialist. Basically, he knew exactly what that number (4326) was, where it came from, and why it is there.

It is an industry standard for computing geography. The problem is that the earth is not a perfect sphere (it bulges in the middle), and SRID 4326 accounts for that.

As I stated, the table sys.spatial_reference_systems lists all of the code and what they are. But you are really only going to use 4326 unless you have a very specific reason.

link|flag
Now how do I mark my own answer as the answer to my question? – Chris Brandsma Dec 18 '08 at 20:20
Don't think you can pick your answer but it's a valid issue for self-answered questions. I think it's been discussed on the podcast and elsewhere on SO. Also thanks for the good explanation of the value (4326). Seems like maybe a default value feature could have been provided in the function – esabine Dec 28 '08 at 15:57
vote up 1 vote down

I have found this website: http://spatialreference.org/ref/epsg/4326/ quite helpful in understanding the SRID you intend to use. It provides a handy map, some bounding box information and other links.

For other SRIDs simply change the digits at the end of the URL to what you are after.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.