CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Hybrid View

  1. #1
    Join Date
    Jul 2009
    Location
    Bangalore, INDIA
    Posts
    45

    How to link points with polyline?

    Hello,

    I have been struggling with this for last one week. I am using wxWidgets and OpenGL. As I had mentioned in my previous thread,

    http://forums.codeguru.com/showthrea...-design-to-use

    I want to implement a editing of polyline. There are a set of control points on the polyline and using these, editing has to be done. In my case, polyline is one type of object and point is another type of object. So how can I establish connection between these two? i.e. when point is picked and moved, if that point is a part of polyline, the corresponding line segments of polyline must also be updated on the fly as the mouse is being dragged.

    So how to do this? how to link points with arc. Right now points are moving along with mouse drag.

    Thanks

    Regards
    Rakesh Patil

  2. #2
    Join Date
    Feb 2012
    Location
    Fremont,CA
    Posts
    37

    Re: How to link points with polyline?

    I just did a quick Google search ("join points in ESRI") and got a hit. You'll have to do the read up yourself, but at a glance. It looks to me like it will do the trick. Here ya go:

    Points to lines

    As for ignoring points, just make a seperate file and delete the points you want to ignore before you run the script. You'll still have them in the original file that way.

  3. #3
    Join Date
    Aug 2012
    Posts
    20

    Re: How to link points with polyline?

    Once try this:

    "Create Feature from Text File" script.
    I found it listed in ArcToolbox>Samples>Data Management>Features.
    It requires a strictly formatted text file input and outputs a FeatureClass.

    Look up the input format in Help files and stick to the format.

    resources.esri.com/help/9.3/A...e_samples_.htm

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured