|
POST
|
I am not sure what exactly you are trying to render? Raster or just a shape or some graphics? But here is a reference to how you can accomplish this. Adding Graphics to Map Gradient Pattern Hope this helps
... View more
01-20-2014
08:02 AM
|
0
|
0
|
696
|
|
POST
|
Have you setup the Engine related environment variable (AGSENGINEJAVA)?
... View more
01-20-2014
07:55 AM
|
0
|
0
|
805
|
|
POST
|
If anyone else faced this issue with ArcGIS Engine JRE1.7 onwards do the following EngineInitializer.initializeVisualBeans(); Add the following just after the above line in your code. String str = System.getProperty("os.name"); if (-1 == str.toUpperCase().indexOf("WINDOWS")){ System.setProperty("awt.toolkit", "sun.awt.X11.XToolkit"); }
... View more
12-05-2013
01:54 PM
|
0
|
0
|
2624
|
|
POST
|
Well. A good starting point would be to look at the patch finder and customize it to your requirements http://support.esri.com/en/downloads/patches-servicepacks/view/productid/15/metaid/1685 You can download the linux one to get a better understanding of it. Also you can look at the silent uninstall for product codes http://support.esri.com/en/knowledgebase/techarticles/detail/28709
... View more
12-02-2013
01:45 PM
|
0
|
0
|
880
|
|
POST
|
Here are some references that could be useful JAVA http://resources.arcgis.com/en/help/arcobjects-java/api/arcobjects/com/esri/arcgis/geoprocessing/IGPServer.html .NET http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#/Geoprocessing_services/000100000482000000/ You can access the same thing locally using ArcObjects Geoprocessing rather than ArcGIS Server's geoprocessing. http://help.arcgis.com/en/sdk/10.0/java_ao_adf/api/arcobjects/index.html
... View more
11-27-2013
11:05 AM
|
0
|
0
|
552
|
|
POST
|
Yes you can do it outside the ArcObjects environment by inspecting the registry files. You can use the Product code ID to verify the product installed and get RealVersion. On Linux you can install multiple versions by removing the registration specific files but will be able to use the registered product.
... View more
11-27-2013
09:09 AM
|
0
|
0
|
880
|
|
POST
|
Can you try this? Also in the script add a Coordinate Reference system when creating points based on the points you have in your text file. I am assuming that its in WGS84? import arcpy from arcpy import env ## create Ca_Points. arcpy.env.overwriteOutput= True env.workspace = "c:\\geolinc" # Process: Make XY Event Layer arcpy.MakeXYEventLayer_management("master_ca.txt", "X_COORD", "Y_COORD", "ca_points", "GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]];-400 -400 1000000000;-100000 10000;-100000 10000;8.98315284119522E-09;0.001;0.001;IsHighPrecision", "") # Process: Copy Features arcpy.CopyFeatures_management("ca_points", "capoints_output.shp")
... View more
11-26-2013
11:21 AM
|
0
|
0
|
1193
|
|
POST
|
What is N: drive? Is it a local drive or a mapped network location? env.workspace = "n:\\tel_update" I wanted to understand the complete scenario? How many records are there is your text file and you were able to run the complete process including conversion to shapefile manually in couple of seconds?
... View more
11-26-2013
06:24 AM
|
0
|
0
|
1193
|
|
POST
|
Depends. If you want to cover the whole of US 48 states then you may try using US National Atlas Equal Area (EPSG:2163).
... View more
11-26-2013
06:18 AM
|
0
|
0
|
1429
|
|
POST
|
Yes you should project it to an appropriate/applicable PCS for accurate results. You can choose a NAD27 or NAD83 based State plane or UTM projection applicable for the AOI you are working on !!!
... View more
11-26-2013
05:16 AM
|
0
|
0
|
1429
|
|
POST
|
Your first test should be on an mxd to see if it works at all !!!
... View more
11-25-2013
08:12 AM
|
0
|
0
|
1478
|
|
POST
|
I am not sure what exactly you are trying to do, because if the image image is correctly projected you should not need to do a translate. Are you trying to georeference the image? Anyway I will provide same quick snippets of accomplishing both (via python) 1) Getting spatial reference raster = arcpy.Raster(rasterPath) sourceSR = raster.spatialReference # reading spatial reference from Raster or sourceSR = arcpy.SpatialReference(srCode) # if you know the code 2) Getting source points _minX = raster.extent.XMin _minY = raster.extent.YMin _maxX = raster.extent.XMax _maxY= raster.extent.YMax 3) Creating control points (you can create source and target accordingly) source_control_points = "'" + str(_minX) + " " + str(_maxY) + "';'" + str(_maxX) + " " + str(_maxY) + "';'" + str(_maxX) + " " + str(_minY) + "';'" + str(_minX) + " " + str(_minY) + "'" 4) Georeferencing arcpy.Warp_management(img_path, source_control_points, target_control_points, out_raster, "POLYORDER1","NEAREST") I hope this helps !!!
... View more
11-25-2013
07:29 AM
|
0
|
0
|
694
|
|
POST
|
There are couple of things you can validate 1) Make sure that the versions of arcobjects being used is the same as the ARCGIS software installed (Desktop/engine). In no way within the plugin or via path you are referring to old arcobjects 2) ARCGISHOME is setup correctly. PATH contains <ARCGISHOME>\bin 3) Make sure that you restart your eclipse for environment settings to reflect or else use the eclipse environment settings. Hope this helps resolve your problem
... View more
11-22-2013
06:18 AM
|
0
|
0
|
1806
|
|
POST
|
Hi, As per the sample in the link you provided it says you can pass these values in the same string. Did you try that? CreateTin_3d (out_tin, {spatial_reference}, {in_features}, {constrained_delaunay}) .in_features = ("C:\Temp\Tin\A" & "," & "Height Field" & "," & "Tag Field") <==Modify this as below but make sure u have these fields in_feature_class = The feature class/shapefile you want as input height_field = Shape.Z if you have a Z value SF_type = any of the values below masspoints ???Elevation points that will be imported as nodes hardline or softline ???Breaklines that enforce a height value hardclip or softclip ???Polygon dataset that defines the boundary of the TIN harderase or softerase ??? Polygon dataset that defines holes in the interior portions of the TIN hardreplace or softreplace ???Polygon dataset that defines areas of constant height hardvaluefill or softvaluefill ???Polygon dataset that defines tag values for the triangles based on the integer field specified in the tag_value column tag_value = The integer field from the attribute table of the feature class that will be used when the surface feature type is set to a value fill option Suppose I have a field in shapefile called TAGNAME Example; .in_features = ("ABC.shp" & " " & "Shape.Z" & " " & "masspoints" & " " & "TAGNAME") This is just an example, use whatever values you have and ignore whatever you dont have. I hope that helps !!!
... View more
10-31-2013
09:28 AM
|
0
|
1
|
2255
|
|
POST
|
Can you provide me the link to the help you are looking at for Tin to Raster Geoprocessor? Whatever parameters are available can be set using the setter methods. Look at the reference below. http://resources.arcgis.com/en/help/arcobjects-java/api/arcobjects/com/esri/arcgis/geoprocessing/tools/analyst3dtools/TinRaster.html
... View more
10-29-2013
09:38 AM
|
0
|
0
|
2255
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 01-28-2014 08:43 AM | |
| 1 | 02-23-2015 12:10 AM | |
| 1 | 02-27-2015 04:12 AM | |
| 2 | 07-09-2015 12:01 AM | |
| 1 | 03-02-2015 10:39 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|