A Spatial Reference System Identifier (SRID) is a unique value used to unambiguously identify projected, unprojected, and local spatial coordinate system definitions
1
vote
1answer
46 views
problem with writing the srsName into the gml output in OpenLayers
I am trying to write out my geometry in gml format after it is drawn in OpenLayers. Actually it is working fine, I get the gml like this:
<gml:Polygon>
<gml:outerBoundaryIs>
...
3
votes
0answers
103 views
ArcGIS and SqlServer.Types: Does feature.Shape.SpatialReference.FactoryCode == srid?
I created a test implementation of the ESRI Geometry to WKT recipe provided by @SagebrushGIS. It seems to work great, but I'm wondering if the SRID value expected by Microsoft.SqlServer.Types ...
2
votes
0answers
91 views
Creating Ellipse in WGS84, but with metric parameters
I have the function
--Ellipse(x,y,rx,ry,rotation,#of segments in 1/4 of ellipse)
SELECT ST_Translate( ST_Rotate( ST_Scale( ST_Buffer(ST_Point(0,0), 0.5, $6), $3, $4), $5), $1, $2)
I have points in ...
2
votes
0answers
68 views
How to do Spatial Tools Projections between different projection types
I am working with the SQL Spatial Tools from http://sqlspatialtools.codeplex.com/
And a variety of data sets, primarily from LINZ and Google.
These involve working with projections for
4326 (WGS84?)
...
1
vote
0answers
42 views
How to import multiple shapefiles each with different source projections to postgis
I have a couple thousand .zip files each with a .shp, .dbf, .shx, and .prj inside them that I want to load into postgis. The problem is, they have many different source projections (each defined in ...
0
votes
0answers
226 views
PostGIS geometry aggregation problem
i have a problem with aggregation of geometry either with ST_Collect, ST_Union, Array_Agg after doing intersection with transformed geometry.
Faulty PSQL code goes like this:
SELECT ...