Creating points with attributes from coordinates in ArcPyPython Script to Add Fields to Feature ClassesHow to create Shapefile on ArcGIS Server side?How to create polylines from a point Feature Class linking all points using arcpyDistance of shape points from given lat-longCreating multiple shapefiles from one date within same for loop using ArcPy?Creating point feature from dictionary in ArcPy?Use UpdateCursor in combination with .distanceTo method in ArcPyFrom List into ArcPy Feature Class with InsertCursorCreating point feature on click in memory using ArcPy addin managerGetting (X,Y) projected coordinates of point instead of its longitude and latitude in ArcPy?Measuring distance to two Points in ArcPy?

Multi tool use
Multi tool use

Why doesn't Gödel's incompleteness theorem apply to false statements?

Hashing password to increase entropy

Connection Between Knot Theory and Number Theory

Can a Knock spell open the door to Mordenkainen's Magnificent Mansion?

Should I be concerned about student access to a test bank?

How can I, as DM, avoid the Conga Line of Death occurring when implementing some form of flanking rule?

What properties make a magic weapon befit a Rogue more than a DEX-based Fighter?

Friend wants my recommendation but I don't want to give it to him

A seasonal riddle

Why is implicit conversion not ambiguous for non-primitive types?

Started in 1987 vs. Starting in 1987

Center page as a whole without centering each element individually

Checking @@ROWCOUNT failing

Showing mass murder in a kid's book

Output visual diagram of picture

Why didn't Voldemort know what Grindelwald looked like?

What is the period/term used describe Giuseppe Arcimboldo's style of painting?

Is divisi notation needed for brass or woodwind in an orchestra?

Would a primitive species be able to learn English from reading books alone?

How to test the sharpness of a knife?

Why would five hundred and five same as one?

What is the meaning of "You've never met a graph you didn't like?"

Do native speakers use "ultima" and "proxima" frequently in spoken English?

Strange behavior in TikZ draw command



Creating points with attributes from coordinates in ArcPy


Python Script to Add Fields to Feature ClassesHow to create Shapefile on ArcGIS Server side?How to create polylines from a point Feature Class linking all points using arcpyDistance of shape points from given lat-longCreating multiple shapefiles from one date within same for loop using ArcPy?Creating point feature from dictionary in ArcPy?Use UpdateCursor in combination with .distanceTo method in ArcPyFrom List into ArcPy Feature Class with InsertCursorCreating point feature on click in memory using ArcPy addin managerGetting (X,Y) projected coordinates of point instead of its longitude and latitude in ArcPy?Measuring distance to two Points in ArcPy?













1















I know how to create points by coordinates with arcpy using the following code:



import arcpy

ptList =[[20.000,43.000],[25.500, 45.085],[26.574, 46.025], [28.131, 48.124]]
pt = arcpy.Point()
ptGeoms = []
for p in ptList:
pt.X = p[0]
pt.Y = p[1]
ptGeoms.append(arcpy.PointGeometry(pt))

arcpy.CopyFeatures_management(ptGeoms, r"C:Temptest.shp")


But in my case, every coordinate pair also has an additional text attribute that needs to be written to the shapefile. What would be the approach?










share|improve this question
























  • Have you seen these threads Python Script to Add Fields to Feature Classes and Adding Coordinates to shapefile using ArcPy?

    – Taras
    16 hours ago












  • Always use the SpatialReference parameter when constructing PointGeometry from Point, or you risk losing precision during construction.

    – Vince
    15 hours ago















1















I know how to create points by coordinates with arcpy using the following code:



import arcpy

ptList =[[20.000,43.000],[25.500, 45.085],[26.574, 46.025], [28.131, 48.124]]
pt = arcpy.Point()
ptGeoms = []
for p in ptList:
pt.X = p[0]
pt.Y = p[1]
ptGeoms.append(arcpy.PointGeometry(pt))

arcpy.CopyFeatures_management(ptGeoms, r"C:Temptest.shp")


But in my case, every coordinate pair also has an additional text attribute that needs to be written to the shapefile. What would be the approach?










share|improve this question
























  • Have you seen these threads Python Script to Add Fields to Feature Classes and Adding Coordinates to shapefile using ArcPy?

    – Taras
    16 hours ago












  • Always use the SpatialReference parameter when constructing PointGeometry from Point, or you risk losing precision during construction.

    – Vince
    15 hours ago













1












1








1








I know how to create points by coordinates with arcpy using the following code:



import arcpy

ptList =[[20.000,43.000],[25.500, 45.085],[26.574, 46.025], [28.131, 48.124]]
pt = arcpy.Point()
ptGeoms = []
for p in ptList:
pt.X = p[0]
pt.Y = p[1]
ptGeoms.append(arcpy.PointGeometry(pt))

arcpy.CopyFeatures_management(ptGeoms, r"C:Temptest.shp")


But in my case, every coordinate pair also has an additional text attribute that needs to be written to the shapefile. What would be the approach?










share|improve this question
















I know how to create points by coordinates with arcpy using the following code:



import arcpy

ptList =[[20.000,43.000],[25.500, 45.085],[26.574, 46.025], [28.131, 48.124]]
pt = arcpy.Point()
ptGeoms = []
for p in ptList:
pt.X = p[0]
pt.Y = p[1]
ptGeoms.append(arcpy.PointGeometry(pt))

arcpy.CopyFeatures_management(ptGeoms, r"C:Temptest.shp")


But in my case, every coordinate pair also has an additional text attribute that needs to be written to the shapefile. What would be the approach?







arcpy shapefile point fields-attributes






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 16 hours ago









Taras

2,2742727




2,2742727










asked 16 hours ago









user132397user132397

102




102












  • Have you seen these threads Python Script to Add Fields to Feature Classes and Adding Coordinates to shapefile using ArcPy?

    – Taras
    16 hours ago












  • Always use the SpatialReference parameter when constructing PointGeometry from Point, or you risk losing precision during construction.

    – Vince
    15 hours ago

















  • Have you seen these threads Python Script to Add Fields to Feature Classes and Adding Coordinates to shapefile using ArcPy?

    – Taras
    16 hours ago












  • Always use the SpatialReference parameter when constructing PointGeometry from Point, or you risk losing precision during construction.

    – Vince
    15 hours ago
















Have you seen these threads Python Script to Add Fields to Feature Classes and Adding Coordinates to shapefile using ArcPy?

– Taras
16 hours ago






Have you seen these threads Python Script to Add Fields to Feature Classes and Adding Coordinates to shapefile using ArcPy?

– Taras
16 hours ago














Always use the SpatialReference parameter when constructing PointGeometry from Point, or you risk losing precision during construction.

– Vince
15 hours ago





Always use the SpatialReference parameter when constructing PointGeometry from Point, or you risk losing precision during construction.

– Vince
15 hours ago










1 Answer
1






active

oldest

votes


















3














I suggest to use insert cursor, make sure that the field allready exists in the feature class (AddField if necessary)



ptList =[["value1",(20.000,43.000)],["value2",(25.500, 45.085)],["value3",(26.574, 46.025)], ["value4",(28.131, 48.124)]]

cursor = arcpy.da.InsertCursor('C:/temp/test.shp',
['FieldName', 'SHAPE@XY'])

# Insert new rows that include the field value and a x,y coordinate

for row in ptList:
cursor.insertRow(row)

# Delete cursor object
del cursor





share|improve this answer






















    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "79"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f315938%2fcreating-points-with-attributes-from-coordinates-in-arcpy%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    3














    I suggest to use insert cursor, make sure that the field allready exists in the feature class (AddField if necessary)



    ptList =[["value1",(20.000,43.000)],["value2",(25.500, 45.085)],["value3",(26.574, 46.025)], ["value4",(28.131, 48.124)]]

    cursor = arcpy.da.InsertCursor('C:/temp/test.shp',
    ['FieldName', 'SHAPE@XY'])

    # Insert new rows that include the field value and a x,y coordinate

    for row in ptList:
    cursor.insertRow(row)

    # Delete cursor object
    del cursor





    share|improve this answer



























      3














      I suggest to use insert cursor, make sure that the field allready exists in the feature class (AddField if necessary)



      ptList =[["value1",(20.000,43.000)],["value2",(25.500, 45.085)],["value3",(26.574, 46.025)], ["value4",(28.131, 48.124)]]

      cursor = arcpy.da.InsertCursor('C:/temp/test.shp',
      ['FieldName', 'SHAPE@XY'])

      # Insert new rows that include the field value and a x,y coordinate

      for row in ptList:
      cursor.insertRow(row)

      # Delete cursor object
      del cursor





      share|improve this answer

























        3












        3








        3







        I suggest to use insert cursor, make sure that the field allready exists in the feature class (AddField if necessary)



        ptList =[["value1",(20.000,43.000)],["value2",(25.500, 45.085)],["value3",(26.574, 46.025)], ["value4",(28.131, 48.124)]]

        cursor = arcpy.da.InsertCursor('C:/temp/test.shp',
        ['FieldName', 'SHAPE@XY'])

        # Insert new rows that include the field value and a x,y coordinate

        for row in ptList:
        cursor.insertRow(row)

        # Delete cursor object
        del cursor





        share|improve this answer













        I suggest to use insert cursor, make sure that the field allready exists in the feature class (AddField if necessary)



        ptList =[["value1",(20.000,43.000)],["value2",(25.500, 45.085)],["value3",(26.574, 46.025)], ["value4",(28.131, 48.124)]]

        cursor = arcpy.da.InsertCursor('C:/temp/test.shp',
        ['FieldName', 'SHAPE@XY'])

        # Insert new rows that include the field value and a x,y coordinate

        for row in ptList:
        cursor.insertRow(row)

        # Delete cursor object
        del cursor






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 16 hours ago









        radouxjuradouxju

        40.9k144120




        40.9k144120



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f315938%2fcreating-points-with-attributes-from-coordinates-in-arcpy%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            u6w,hkKQAp vaEr,SyksvaP1,B4yylFfK7aATPS5G FM8PWYbq5erKtG7 Q1Z7tfF,VN30GlvxDRL7k 9d9dKG,17ftdY7dPqnH
            TmqSFu3cEUBAVaFjJ JRVkN1oeMKg,iqlOdQH tZhSG9dshujG5V bqCMH,WtC58h 1W

            Popular posts from this blog

            getting Checkpoint VPN SSL Network Extender working in the command lineHow to connect to CheckPoint VPN on Ubuntu 18.04LTS?Will the Linux ( red-hat ) Open VPNC Client connect to checkpoint or nortel VPN gateways?VPN client for linux machine + support checkpoint gatewayVPN SSL Network Extender in FirefoxLinux Checkpoint SNX tool configuration issuesCheck Point - Connect under Linux - snx + OTPSNX VPN Ububuntu 18.XXUsing Checkpoint VPN SSL Network Extender CLI with certificateVPN with network manager (nm-applet) is not workingWill the Linux ( red-hat ) Open VPNC Client connect to checkpoint or nortel VPN gateways?VPN client for linux machine + support checkpoint gatewayImport VPN config files to NetworkManager from command lineTrouble connecting to VPN using network-manager, while command line worksStart a VPN connection with PPTP protocol on command linestarting a docker service daemon breaks the vpn networkCan't connect to vpn with Network-managerVPN SSL Network Extender in FirefoxUsing Checkpoint VPN SSL Network Extender CLI with certificate

            NetworkManager fails with “Could not find source connection”Trouble connecting to VPN using network-manager, while command line worksHow can I be notified about state changes to a VPN adapterBacktrack 5 R3 - Refuses to connect to VPNFeed all traffic through OpenVPN for a specific network namespace onlyRun daemon on startup in Debian once openvpn connection establishedpfsense tcp connection between openvpn and lan is brokenInternet connection problem with web browsers onlyWhy does NetworkManager explicitly support tun/tap devices?Browser issues with VPNTwo IP addresses assigned to the same network card - OpenVPN issues?Cannot connect to WiFi with nmcli, although secrets are provided

            Marilyn Monroe Ny fiainany manokana | Jereo koa | Meny fitetezanafanitarana azy.