Creating vertical polygons in ArcGIS Desktop? Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Creating fixed width polygons in ArcMapGenerating overlapping polygons from lines output from Table To Ellipse tool?Verifying the number of times a line crosses other linesCreating vice versa multipoint feature within ArcGIS for Desktop?Need help making polygons from lines in QGISAutomatic creation of polygons from Feature Class points in ArcGIS for Desktop?Creating polygon out of very large line feature class using ArcGIS for Desktop?Joining attribute data from multiple polylines using ArcGIS for Desktop?Get intersecting and overlapping point between two lines in ArcGIS?Labeling vertical lines with Shape Length = 0 in ArcMap?
Is it a good idea to use CNN to classify 1D signal?
Why wasn't DOSKEY integrated with COMMAND.COM?
Delete nth line from bottom
How to Make a Beautiful Stacked 3D Plot
Using et al. for a last / senior author rather than for a first author
How do pianists reach extremely loud dynamics?
What do you call the main part of a joke?
How can I use the Python library networkx from Mathematica?
How to compare two different files line by line in unix?
Is this homebrew Lady of Pain warlock patron balanced?
Around usage results
Circuit to "zoom in" on mV fluctuations of a DC signal?
Compare a given version number in the form major.minor.build.patch and see if one is less than the other
Do I really need recursive chmod to restrict access to a folder?
When a candle burns, why does the top of wick glow if bottom of flame is hottest?
Why are the trig functions versine, haversine, exsecant, etc, rarely used in modern mathematics?
How do I stop a creek from eroding my steep embankment?
Is "Reachable Object" really an NP-complete problem?
Is the Standard Deduction better than Itemized when both are the same amount?
What are the out-of-universe reasons for the references to Toby Maguire-era Spider-Man in ITSV
Should I use a zero-interest credit card for a large one-time purchase?
How do I find out the mythology and history of my Fortress?
Can an alien society believe that their star system is the universe?
When was Kai Tak permanently closed to cargo service?
Creating vertical polygons in ArcGIS Desktop?
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Creating fixed width polygons in ArcMapGenerating overlapping polygons from lines output from Table To Ellipse tool?Verifying the number of times a line crosses other linesCreating vice versa multipoint feature within ArcGIS for Desktop?Need help making polygons from lines in QGISAutomatic creation of polygons from Feature Class points in ArcGIS for Desktop?Creating polygon out of very large line feature class using ArcGIS for Desktop?Joining attribute data from multiple polylines using ArcGIS for Desktop?Get intersecting and overlapping point between two lines in ArcGIS?Labeling vertical lines with Shape Length = 0 in ArcMap?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am trying to convert vertical line (cross-section) features to the polygone, but all regular arcGIS tools (eg. Feature to Polygone) that I applied can't convert vertical lines to vertical polygons.
Do you know a tool that can do it automatically ?
I also have point feature class with xyz coordinates of every point
arcgis-desktop polygon-creation
add a comment |
I am trying to convert vertical line (cross-section) features to the polygone, but all regular arcGIS tools (eg. Feature to Polygone) that I applied can't convert vertical lines to vertical polygons.
Do you know a tool that can do it automatically ?
I also have point feature class with xyz coordinates of every point
arcgis-desktop polygon-creation
I suppose you want to compute discharge with sub-section method. I would use each vertical as input taking accounti + i+1
pair of points to createn
polygons. If verticals are equal-spaced, create a set of vertical lines to split the dissolved polygon of image 1
– aldo_tapia
Nov 30 '17 at 10:56
You should be able to do it using cursors (search/update/insertcursor, pro.arcgis.com/en/pro-app/arcpy/data-access/…) and the shape tokens. That way you could read the Z values and write these as X or Y values. Will be a bit tricky though..
– BERA
Nov 30 '17 at 11:26
@Fran: Are the points in the correct order or is the order ~random?
– BERA
Dec 2 '17 at 8:45
if the lines are equal in distance, you can create buffer on the vertical lines.
– Oguz Sariyildiz
Dec 4 '17 at 4:23
@BERA points are in correct order, spacing between points is 1 cm and every point has its own unique ID
– Fran
Dec 4 '17 at 10:15
add a comment |
I am trying to convert vertical line (cross-section) features to the polygone, but all regular arcGIS tools (eg. Feature to Polygone) that I applied can't convert vertical lines to vertical polygons.
Do you know a tool that can do it automatically ?
I also have point feature class with xyz coordinates of every point
arcgis-desktop polygon-creation
I am trying to convert vertical line (cross-section) features to the polygone, but all regular arcGIS tools (eg. Feature to Polygone) that I applied can't convert vertical lines to vertical polygons.
Do you know a tool that can do it automatically ?
I also have point feature class with xyz coordinates of every point
arcgis-desktop polygon-creation
arcgis-desktop polygon-creation
edited Dec 3 '17 at 22:27
PolyGeo♦
54k1782246
54k1782246
asked Nov 30 '17 at 10:37
FranFran
142
142
I suppose you want to compute discharge with sub-section method. I would use each vertical as input taking accounti + i+1
pair of points to createn
polygons. If verticals are equal-spaced, create a set of vertical lines to split the dissolved polygon of image 1
– aldo_tapia
Nov 30 '17 at 10:56
You should be able to do it using cursors (search/update/insertcursor, pro.arcgis.com/en/pro-app/arcpy/data-access/…) and the shape tokens. That way you could read the Z values and write these as X or Y values. Will be a bit tricky though..
– BERA
Nov 30 '17 at 11:26
@Fran: Are the points in the correct order or is the order ~random?
– BERA
Dec 2 '17 at 8:45
if the lines are equal in distance, you can create buffer on the vertical lines.
– Oguz Sariyildiz
Dec 4 '17 at 4:23
@BERA points are in correct order, spacing between points is 1 cm and every point has its own unique ID
– Fran
Dec 4 '17 at 10:15
add a comment |
I suppose you want to compute discharge with sub-section method. I would use each vertical as input taking accounti + i+1
pair of points to createn
polygons. If verticals are equal-spaced, create a set of vertical lines to split the dissolved polygon of image 1
– aldo_tapia
Nov 30 '17 at 10:56
You should be able to do it using cursors (search/update/insertcursor, pro.arcgis.com/en/pro-app/arcpy/data-access/…) and the shape tokens. That way you could read the Z values and write these as X or Y values. Will be a bit tricky though..
– BERA
Nov 30 '17 at 11:26
@Fran: Are the points in the correct order or is the order ~random?
– BERA
Dec 2 '17 at 8:45
if the lines are equal in distance, you can create buffer on the vertical lines.
– Oguz Sariyildiz
Dec 4 '17 at 4:23
@BERA points are in correct order, spacing between points is 1 cm and every point has its own unique ID
– Fran
Dec 4 '17 at 10:15
I suppose you want to compute discharge with sub-section method. I would use each vertical as input taking account
i + i+1
pair of points to create n
polygons. If verticals are equal-spaced, create a set of vertical lines to split the dissolved polygon of image 1– aldo_tapia
Nov 30 '17 at 10:56
I suppose you want to compute discharge with sub-section method. I would use each vertical as input taking account
i + i+1
pair of points to create n
polygons. If verticals are equal-spaced, create a set of vertical lines to split the dissolved polygon of image 1– aldo_tapia
Nov 30 '17 at 10:56
You should be able to do it using cursors (search/update/insertcursor, pro.arcgis.com/en/pro-app/arcpy/data-access/…) and the shape tokens. That way you could read the Z values and write these as X or Y values. Will be a bit tricky though..
– BERA
Nov 30 '17 at 11:26
You should be able to do it using cursors (search/update/insertcursor, pro.arcgis.com/en/pro-app/arcpy/data-access/…) and the shape tokens. That way you could read the Z values and write these as X or Y values. Will be a bit tricky though..
– BERA
Nov 30 '17 at 11:26
@Fran: Are the points in the correct order or is the order ~random?
– BERA
Dec 2 '17 at 8:45
@Fran: Are the points in the correct order or is the order ~random?
– BERA
Dec 2 '17 at 8:45
if the lines are equal in distance, you can create buffer on the vertical lines.
– Oguz Sariyildiz
Dec 4 '17 at 4:23
if the lines are equal in distance, you can create buffer on the vertical lines.
– Oguz Sariyildiz
Dec 4 '17 at 4:23
@BERA points are in correct order, spacing between points is 1 cm and every point has its own unique ID
– Fran
Dec 4 '17 at 10:15
@BERA points are in correct order, spacing between points is 1 cm and every point has its own unique ID
– Fran
Dec 4 '17 at 10:15
add a comment |
1 Answer
1
active
oldest
votes
I have not done any testing, but from the documentation it sounds like ArcGIS 3D Analyst supports Creating a vertical line segment.
However, 3D polygon interiors present additional challenges so:
Completely vertical polygons are not supported in the geodatabase as
they are flagged as zero-area polygons.
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
);
);
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%2f263624%2fcreating-vertical-polygons-in-arcgis-desktop%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
I have not done any testing, but from the documentation it sounds like ArcGIS 3D Analyst supports Creating a vertical line segment.
However, 3D polygon interiors present additional challenges so:
Completely vertical polygons are not supported in the geodatabase as
they are flagged as zero-area polygons.
add a comment |
I have not done any testing, but from the documentation it sounds like ArcGIS 3D Analyst supports Creating a vertical line segment.
However, 3D polygon interiors present additional challenges so:
Completely vertical polygons are not supported in the geodatabase as
they are flagged as zero-area polygons.
add a comment |
I have not done any testing, but from the documentation it sounds like ArcGIS 3D Analyst supports Creating a vertical line segment.
However, 3D polygon interiors present additional challenges so:
Completely vertical polygons are not supported in the geodatabase as
they are flagged as zero-area polygons.
I have not done any testing, but from the documentation it sounds like ArcGIS 3D Analyst supports Creating a vertical line segment.
However, 3D polygon interiors present additional challenges so:
Completely vertical polygons are not supported in the geodatabase as
they are flagged as zero-area polygons.
answered Dec 16 '17 at 10:39
PolyGeo♦PolyGeo
54k1782246
54k1782246
add a comment |
add a comment |
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%2f263624%2fcreating-vertical-polygons-in-arcgis-desktop%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
I suppose you want to compute discharge with sub-section method. I would use each vertical as input taking account
i + i+1
pair of points to createn
polygons. If verticals are equal-spaced, create a set of vertical lines to split the dissolved polygon of image 1– aldo_tapia
Nov 30 '17 at 10:56
You should be able to do it using cursors (search/update/insertcursor, pro.arcgis.com/en/pro-app/arcpy/data-access/…) and the shape tokens. That way you could read the Z values and write these as X or Y values. Will be a bit tricky though..
– BERA
Nov 30 '17 at 11:26
@Fran: Are the points in the correct order or is the order ~random?
– BERA
Dec 2 '17 at 8:45
if the lines are equal in distance, you can create buffer on the vertical lines.
– Oguz Sariyildiz
Dec 4 '17 at 4:23
@BERA points are in correct order, spacing between points is 1 cm and every point has its own unique ID
– Fran
Dec 4 '17 at 10:15