import arcpy from arcpy import env env.outputCoordinateSystem = r"Coordinate Systems\Geographic Coordinate Systems\World\WGS 1984.prj" env.workspace = r"C:\temp\python\test.gdb" point = arcpy.Point(-97.36, 101.56) pointGeometry = arcpy.PointGeometry(point) arcpy.CopyFeatures_management(pointGeometry, "Hydrant")
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.