|
POST
|
You don't say what sort of db you are using here. In sde the geometry function is ST_Intersect (I think). This can return a query result, you would have to insert it into another feature, then calculate the area of that piece if geometry, as Wes says. Otherwsie just use the Intersect tool, which creates that other feature as part of its output.
... View more
02-12-2016
06:25 AM
|
0
|
1
|
4585
|
|
POST
|
And what errors are you getting? Have you imported the datetime module?
... View more
02-09-2016
10:39 PM
|
1
|
8
|
5629
|
|
POST
|
Rebecca, in those geometry methods, outContour would have to be a geometry object, not an entire feature class. I would load those 2 sets of geometries into a dict or something then get the logic right of cycling through them.
... View more
02-08-2016
11:39 PM
|
1
|
1
|
4553
|
|
POST
|
Yes, there have been other post here about the speed improvements once a task is coded using arcpy / python. Good to see you have your solution.
... View more
02-08-2016
12:22 AM
|
0
|
0
|
3115
|
|
POST
|
I normally do more complex stuff like this in python. So, could you show us your code?
... View more
02-05-2016
10:51 PM
|
1
|
1
|
3115
|
|
POST
|
Without knowing the details it is difficult to say. Type of db? Are you saying that the points are participating in a network? You may have to wrap the update cursor loop in an editor session.
... View more
01-28-2016
10:56 PM
|
0
|
1
|
3056
|
|
POST
|
Do you want to include "driving times" when on the road network? The roads could also be rasterized with some functions to output a "time in each cell" depending on road type. With all other cells as no data. Then develop the hicking function on the same scale (time across each cell). Then combine these together as suggested here : Conbining rasters with con/isnull
... View more
01-28-2016
05:59 AM
|
0
|
0
|
5534
|
|
BLOG
|
Curtis Price "4. Spaces in filenames. Don't. Please." X 10 on that one....
... View more
01-28-2016
03:57 AM
|
2
|
0
|
8229
|
|
POST
|
Why would you want to create features with an unknown spatial reference?
... View more
01-28-2016
01:13 AM
|
2
|
0
|
1143
|
|
POST
|
But it is always better to define the coordinate system when creating geometry.
... View more
01-28-2016
01:12 AM
|
0
|
1
|
1143
|
|
POST
|
No it doesn't. The unique field (Line field) specifies a separation between lines. The sort field specifies the order in which the points should be. If you have only 1 line, leave out the unique id. If the order of your points as they appear in the table is different from the actual connection order, use the sort field.
... View more
01-27-2016
10:47 PM
|
1
|
2
|
2010
|
|
POST
|
And when you create the geometry, always specify the spatial reference for the points. This is a geographic coordinate system and those points (which are not very far apart) could be collapsing. So.... sr = arcpy.SpatialReference(4326) # GCS_WGS84
.....
poly = arcpy.Polygon(array, sr) ...
... View more
01-27-2016
08:26 AM
|
3
|
5
|
4021
|
|
POST
|
And to underline the point... You cannot actually see a *.las dataset directly, they have to be loaded into a *.lasd dataset, created in ArcCatalog first. And statistics should be done.
... View more
01-27-2016
08:18 AM
|
0
|
0
|
5310
|
|
POST
|
As regards jpg vs geotiff... I have some experience publishing ecw, which, apparently, you need a license for if you publish it. So we converted the imagery to tiff. If jpg is what you have, use it. As long as the final result looks good, go for it.
... View more
01-26-2016
08:02 AM
|
1
|
0
|
6447
|
|
POST
|
Yes, Mosaic datasets are best at welding together the imagery in whatever format the imagery is supplied in. There is no need to import them into a different format (fgdb, sde, whatever) before hand. Thus saving all those extra copies of stuff that can be quite big. They still have to be available to the service somewhere after publishing, unless you go the route of caching, which can be bigger than the original.
... View more
01-26-2016
08:00 AM
|
1
|
1
|
6447
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-08-2015 11:28 PM | |
| 1 | 12-20-2013 08:59 PM | |
| 1 | 05-14-2014 10:38 PM | |
| 1 | 12-16-2013 09:05 PM | |
| 1 | 05-31-2019 02:50 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|