Hot answers tagged esri
6
Via the Context Menu (right click on the grey area right on file, edit menu)
Customise GUI pops up.
Select Commands Tab
Click and drag the Load Objects
Full Official Documentation
Should work with all version of ArcGIS
http://support.esri.com/en/knowledgebase/techarticles/detail/18202\
4
I have been using ArcGIS Online for the past several months for hosting data to be served in a custom JavaScript web application. Here is a list of some of the pros and cons I have found while working with ArcGIS Online:
CONS:
Somewhat less flexible than a traditional ArcGIS Server in terms of hosting services and mapping capabilities
No labeling ...
4
You can use AGSSOM command within a python script to stop/start the services at 2am, which may be initiated by a windows scheduler calling a bat file to run your python script.
3
ESRI Shapefiles are more widely used, but have some limitations, including that the attribute names are limited in length. Shapefiles can be edited by the wonderful QGIS.
MapInfo files are less widely used, and have a limitation with respect to something called bounds, where the X, Y coordinates are stored as an integer between two doubles. This limits the ...
1
Yes - you should use arcpy.da.UpdateCursor instead of arcpy.da.SearchCursor.
Elaboration:
This is what I would try:
import arcpy
arcpy.AddField_management('C:\Data\Surveyed.shp', 'Z', 'DOUBLE')
with arcpy.da.UpdateCursor(r'C:\Data\Surveyed.shp', ('SHAPE@XY', 'Z')) as cursor:
for row in cursor:
result = ...
1
GML formats are good enough to be converted to GeoJSON. GML is another form of xml which is a document interchange format and Javscript Object Notion(JSON) is a data interchange format. The good thing is both can be opened in a text editor and can be saved in databases. ShapeFiles have some limitation for the length of fields and attribute values. But ...
Only top voted, non community-wiki answers of a minimum length are eligible