Moving from lines to points, specifying number of points in attribute table in ArcMap?ArcMap attribute table has disappearedError exporting attribute table in ArcMap to ExcelGenerate end points from a layer that contains multiple linesHighlighting number of overlayed lines in ArcMap?Uploading fields from Excel into ArcMap Attribute table?Converting ASCII to Raster then building attribute table?ArcPy - Get number of intersected points based on attributeCreating attribute field with restricted values on ArcMap?creating attribute table from a raster layer in arcmapCounting number of rows in attribute table using expression?
Which country benefited the most from UN Security Council vetoes?
How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?
"You are your self first supporter", a more proper way to say it
Theorems that impeded progress
If human space travel is limited by the G force vulnerability, is there a way to counter G forces?
When a company launches a new product do they "come out" with a new product or do they "come up" with a new product?
Client team has low performances and low technical skills: we always fix their work and now they stop collaborate with us. How to solve?
Can you really stack all of this on an Opportunity Attack?
What is the word for reserving something for yourself before others do?
Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)
Why is Minecraft giving an OpenGL error?
Why are electrically insulating heatsinks so rare? Is it just cost?
How does one intimidate enemies without having the capacity for violence?
Languages that we cannot (dis)prove to be Context-Free
Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?
Arrow those variables!
How to move a thin line with the black arrow in Illustrator?
Are the number of citations and number of published articles the most important criteria for a tenure promotion?
How much RAM could one put in a typical 80386 setup?
What are the disadvantages of having a left skewed distribution?
What's the point of deactivating Num Lock on login screens?
Approximately how much travel time was saved by the opening of the Suez Canal in 1869?
Perform and show arithmetic with LuaLaTeX
Does detail obscure or enhance action?
Moving from lines to points, specifying number of points in attribute table in ArcMap?
ArcMap attribute table has disappearedError exporting attribute table in ArcMap to ExcelGenerate end points from a layer that contains multiple linesHighlighting number of overlayed lines in ArcMap?Uploading fields from Excel into ArcMap Attribute table?Converting ASCII to Raster then building attribute table?ArcPy - Get number of intersected points based on attributeCreating attribute field with restricted values on ArcMap?creating attribute table from a raster layer in arcmapCounting number of rows in attribute table using expression?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I want to go from lines to points, but with the number a number of points specified in the attribute table.
I attach a photo, to help understand the problem.
arcgis-desktop arcmap arcgis-10.2
New contributor
add a comment |
I want to go from lines to points, but with the number a number of points specified in the attribute table.
I attach a photo, to help understand the problem.
arcgis-desktop arcmap arcgis-10.2
New contributor
Welcome to GIS SE! We're a little different from other sites; this isn't a discussion forum but a Q&A site. Your questions should as much as possible describe not just what you want to do, but precisely what you have tried and where you are stuck trying that. Please check out our short tour for more about how the site works. Thanks.
– PolyGeo♦
Apr 2 at 11:14
How to add the Vertex count to each feature - support.esri.com/en/technical-article/000011230
– klewis
Apr 2 at 15:13
add a comment |
I want to go from lines to points, but with the number a number of points specified in the attribute table.
I attach a photo, to help understand the problem.
arcgis-desktop arcmap arcgis-10.2
New contributor
I want to go from lines to points, but with the number a number of points specified in the attribute table.
I attach a photo, to help understand the problem.
arcgis-desktop arcmap arcgis-10.2
arcgis-desktop arcmap arcgis-10.2
New contributor
New contributor
edited Apr 2 at 11:13
PolyGeo♦
53.9k1781245
53.9k1781245
New contributor
asked Apr 2 at 11:12
Fernando Fernando
4
4
New contributor
New contributor
Welcome to GIS SE! We're a little different from other sites; this isn't a discussion forum but a Q&A site. Your questions should as much as possible describe not just what you want to do, but precisely what you have tried and where you are stuck trying that. Please check out our short tour for more about how the site works. Thanks.
– PolyGeo♦
Apr 2 at 11:14
How to add the Vertex count to each feature - support.esri.com/en/technical-article/000011230
– klewis
Apr 2 at 15:13
add a comment |
Welcome to GIS SE! We're a little different from other sites; this isn't a discussion forum but a Q&A site. Your questions should as much as possible describe not just what you want to do, but precisely what you have tried and where you are stuck trying that. Please check out our short tour for more about how the site works. Thanks.
– PolyGeo♦
Apr 2 at 11:14
How to add the Vertex count to each feature - support.esri.com/en/technical-article/000011230
– klewis
Apr 2 at 15:13
Welcome to GIS SE! We're a little different from other sites; this isn't a discussion forum but a Q&A site. Your questions should as much as possible describe not just what you want to do, but precisely what you have tried and where you are stuck trying that. Please check out our short tour for more about how the site works. Thanks.
– PolyGeo♦
Apr 2 at 11:14
Welcome to GIS SE! We're a little different from other sites; this isn't a discussion forum but a Q&A site. Your questions should as much as possible describe not just what you want to do, but precisely what you have tried and where you are stuck trying that. Please check out our short tour for more about how the site works. Thanks.
– PolyGeo♦
Apr 2 at 11:14
How to add the Vertex count to each feature - support.esri.com/en/technical-article/000011230
– klewis
Apr 2 at 15:13
How to add the Vertex count to each feature - support.esri.com/en/technical-article/000011230
– klewis
Apr 2 at 15:13
add a comment |
1 Answer
1
active
oldest
votes
Since your question is not very clear to me, so i am trying to answer your question based on my understanding. I guess you want to convert your line feature to point feature and you want to create point based on an attributes defined in your feature class. If that is the case then you could use Densify GP tool
ArcGIS Densify. This will allow you to generate points for your polyline geometry.
But densify alone can not solve your objective which is create points based on your feature class attribute, for that you need to write a python script with custom logic. I can outline the steps for that.
- Read the feature class row by row.
- Read the attribute value of the point from your feature class.
- Calculate the length of the line feature and store in variable.
- Create custom logic to calculate the
distance
parameter based on line length variable. You would be using this distance parameter in densify tool. - Supply that variable value to densify tool.
- Get the point and validate the output.
- Note: Make sure the special reference for your data and distance units are same, otherwise you need to write the on-the-fly distance unit conversion logic for your code.
Hope this will solve your problem.
add a comment |
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
);
);
Fernando is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317478%2fmoving-from-lines-to-points-specifying-number-of-points-in-attribute-table-in-a%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
Since your question is not very clear to me, so i am trying to answer your question based on my understanding. I guess you want to convert your line feature to point feature and you want to create point based on an attributes defined in your feature class. If that is the case then you could use Densify GP tool
ArcGIS Densify. This will allow you to generate points for your polyline geometry.
But densify alone can not solve your objective which is create points based on your feature class attribute, for that you need to write a python script with custom logic. I can outline the steps for that.
- Read the feature class row by row.
- Read the attribute value of the point from your feature class.
- Calculate the length of the line feature and store in variable.
- Create custom logic to calculate the
distance
parameter based on line length variable. You would be using this distance parameter in densify tool. - Supply that variable value to densify tool.
- Get the point and validate the output.
- Note: Make sure the special reference for your data and distance units are same, otherwise you need to write the on-the-fly distance unit conversion logic for your code.
Hope this will solve your problem.
add a comment |
Since your question is not very clear to me, so i am trying to answer your question based on my understanding. I guess you want to convert your line feature to point feature and you want to create point based on an attributes defined in your feature class. If that is the case then you could use Densify GP tool
ArcGIS Densify. This will allow you to generate points for your polyline geometry.
But densify alone can not solve your objective which is create points based on your feature class attribute, for that you need to write a python script with custom logic. I can outline the steps for that.
- Read the feature class row by row.
- Read the attribute value of the point from your feature class.
- Calculate the length of the line feature and store in variable.
- Create custom logic to calculate the
distance
parameter based on line length variable. You would be using this distance parameter in densify tool. - Supply that variable value to densify tool.
- Get the point and validate the output.
- Note: Make sure the special reference for your data and distance units are same, otherwise you need to write the on-the-fly distance unit conversion logic for your code.
Hope this will solve your problem.
add a comment |
Since your question is not very clear to me, so i am trying to answer your question based on my understanding. I guess you want to convert your line feature to point feature and you want to create point based on an attributes defined in your feature class. If that is the case then you could use Densify GP tool
ArcGIS Densify. This will allow you to generate points for your polyline geometry.
But densify alone can not solve your objective which is create points based on your feature class attribute, for that you need to write a python script with custom logic. I can outline the steps for that.
- Read the feature class row by row.
- Read the attribute value of the point from your feature class.
- Calculate the length of the line feature and store in variable.
- Create custom logic to calculate the
distance
parameter based on line length variable. You would be using this distance parameter in densify tool. - Supply that variable value to densify tool.
- Get the point and validate the output.
- Note: Make sure the special reference for your data and distance units are same, otherwise you need to write the on-the-fly distance unit conversion logic for your code.
Hope this will solve your problem.
Since your question is not very clear to me, so i am trying to answer your question based on my understanding. I guess you want to convert your line feature to point feature and you want to create point based on an attributes defined in your feature class. If that is the case then you could use Densify GP tool
ArcGIS Densify. This will allow you to generate points for your polyline geometry.
But densify alone can not solve your objective which is create points based on your feature class attribute, for that you need to write a python script with custom logic. I can outline the steps for that.
- Read the feature class row by row.
- Read the attribute value of the point from your feature class.
- Calculate the length of the line feature and store in variable.
- Create custom logic to calculate the
distance
parameter based on line length variable. You would be using this distance parameter in densify tool. - Supply that variable value to densify tool.
- Get the point and validate the output.
- Note: Make sure the special reference for your data and distance units are same, otherwise you need to write the on-the-fly distance unit conversion logic for your code.
Hope this will solve your problem.
edited Apr 2 at 13:03
answered Apr 2 at 12:49
Bhaskar SinghBhaskar Singh
466
466
add a comment |
add a comment |
Fernando is a new contributor. Be nice, and check out our Code of Conduct.
Fernando is a new contributor. Be nice, and check out our Code of Conduct.
Fernando is a new contributor. Be nice, and check out our Code of Conduct.
Fernando is a new contributor. Be nice, and check out our Code of Conduct.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317478%2fmoving-from-lines-to-points-specifying-number-of-points-in-attribute-table-in-a%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Welcome to GIS SE! We're a little different from other sites; this isn't a discussion forum but a Q&A site. Your questions should as much as possible describe not just what you want to do, but precisely what you have tried and where you are stuck trying that. Please check out our short tour for more about how the site works. Thanks.
– PolyGeo♦
Apr 2 at 11:14
How to add the Vertex count to each feature - support.esri.com/en/technical-article/000011230
– klewis
Apr 2 at 15:13