Hot answers tagged postgresql
3
Storing your data in a Spatial Database has several benefits over storing it in ArcSDE Geodatabase with a RDBMS Backend.
These include:
Your data can be accessed by other third party products freely.
Your DBA is happier with it being a Pure Database storage, since they can apply all their normal DBA best practices on the database.
You can apply Spatial SQL ...
2
The postgres user is normally hidden under Windows 7. You can delete it only in the Command Window with
net user postgres /delete
The postgres service can be deleted with sc delete postgresql-8.3
(or whatever version you are running).
For more details on how to uninstall postgres completely, see
http://forums.enterprisedb.com/posts/list/1437.page
There ...
2
I found the solution. The GeoJSON specification says that the coordinates of a polygon are an array of line strings. Therefore I had to wrap them with additional brackets.
{
"type":"Polygon",
"coordinates":
[
[
[-91.23046875,45.460130637921],
[-79.8046875,49.837982453085],
...
Only top voted, non community-wiki answers of a minimum length are eligible
