|
I have a postgres database with millions of rows in it it has a column called geom which contains the boundary of a property.
using a python script i am extracting the information from this table and re-inserting it into a new table.
when i insert in ...
Started by ADAM on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There are many geometry type -- -- - - - - - - - - - - - - - ....
This astonishingly useful bit of PostGIS SQL should help you figure it out.. .
The best answer depends on the size.
Query that produced the data to avoid selecting it at all.
|
|
Hello world.
Recently our team was facing the task to build the 2D slice between a plane and some set of 3D geometry (set of triangles). Google hasn't been as helpful as we have wanted it to be, so we turn our attention here to see if anyone has encountered...
Started by Statement on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
ParaViewGeo supports data....
Both have a filter called Slice that does excactly what you're talking about and both allow you to save your data back out.
Your data set in ParaView (paraview.org) or ParaViewGeo (paraviewgeo.mirarco.org).
|
|
Hello!
I'm developing an application which loads an image, and then i have to mark some points with the mouse, above the image. these points should be on a separate layer, ie i don't want to modify image data.
What is the best way of doing this ? I was...
Started by jose on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Not directly what you are asking for, but this article might gice you some pointers (unless I totally misunderstand... .
It should be a lot more comfortable to work with than talking directly to directX .
I think WPF have som options for image manipulation.
|
Ask your Facebook Friends
|
What exactly do geometry shaders do? I've read they work on more than one triangle at a time, and they can create vertices, but what kind of effects do they allow for? Procedural generation of geometry? Some kind of truform function that rounds out rough...
Started by Mat3 on
, 11 posts
by 8 people.
Answer Snippets (Read the full thread at beyond3d):
Yes pretty much procedure geometry,
http://www.uni-duesseldorf.de/URZ/ha...y_Shaders.html
For more using geometry shaders and stream out for something What features are modern games and engines geometry shaders and stream out for ....
|
|
Hi
Is there a automatic way to get all the points of an ellipse stroke, without the filling points.
Thanks in advanced
Started by JP on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In WPF there are no actual "Points" in a geometry:
var newEllipse = new Path { Data = ellipse.DefiningGeometry, Stroke = Brushes.Black.
I'll see if I find another way...
Bad hack...
|
|
Export table data with SDO_GEOMETRY column as insert statments not working properly.
Generated script:
...
Insert into EXPORT_TABLE (ID,GEOMETRY) values ('1',[MDSYS.SDO_GEOMETRY]);
Insert into EXPORT_TABLE (ID,GEOMETRY) values ('2',[MDSYS.SDO_GEOMETRY...
Started by zelazko on
, 2 posts
by 2 people.
Answer Snippets (Read the full thread at oracle):
Where the SDO_GEOMETRY data type exports correctly is the workaround:
https://forums.oracle.com/forums.
|
|
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 2...
Started by Chris Brandsma on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I have found.
In any case you from one system to other, you don't really care about the system that you data uses.
On the other hand you may want to map some spatial data that span all over the map.
|
|
School is starting early!
Distance, pathfinding, etc... since UO's world obviously has absolutely no analogous real world geomentry that is available to use and I actually need more than the well known methods right now, class is about to start.
The pupil...
Started by Kedrick Valorite on
, 15 posts
by 7 people.
Answer Snippets (Read the full thread at easyuo):
All attempts to superimpose RW cartesian geometry upon the contrived and absolutely defined geometry of....
The geometry of UO bears no relation, horizontally, or diagonally.
...), following paths 1>>10, result in 10 tile moves.
|
|
There are a lot of confusing threads asking about what are the best geometry setting for handling on the 360, F430, Challenge Stradale and 430 Scuderia/16M.
In reality it is quite difficult question to answer well because it really depends on what you...
Started by 360trev on
, 20 posts
by 5 people.
Answer Snippets (Read the full thread at ferrarilife):
They vary in thickness....
They vary in thickness from 1-4 mm, and you want to get the geometry as close as possible a supply of varying sizes.
Putting together all this info in a nice.
Very well done Trev.
On your wheel data sometime soon.
|
|
Is it possible to query just the first object in a SDO-geometry data type? for example of if i have the following
(2001, 8307, (-117.47196, 33.758424, ), , )
How do i query that 2001? Thanks
Started by user8602786 on
, 2 posts
by 2 people.
Answer Snippets (Read the full thread at oracle):
Similarly to get the SRID, you can use select t.<geometry.
Hi user8602786,
select t.<geometry column>.sdo_gtype from <table name> t
The trick is to make sure you use a table alias.
|