If you were Registered and logged in, you could reply and use other advanced thread options
I would like to know if anyone has ever heard of or has an idea on how
this could be possible.
I would like to take a line or really a lot of lines and make cross
lines at 90 degrees at a .25 mile interval along that line..
So it would be like this...
input: __________
/ \________
_________/
output:
|_|__|__|_/
\/| | | |/\|__|__
|__|__|_\/\ | |
| | | \
Something like that.....
It would be like an automated copy parallel that follows the line
I also though that if their was a way to create line cross sections
from a buffer.. I could just create a buffer around the line they
create the cross lines from the buffer....
Any ideas?
Meyvn
this could be possible.
I would like to take a line or really a lot of lines and make cross
lines at 90 degrees at a .25 mile interval along that line..
So it would be like this...
input: __________
/ \________
_________/
output:
|_|__|__|_/
\/| | | |/\|__|__
|__|__|_\/\ | |
| | | \
Something like that.....
It would be like an automated copy parallel that follows the line
I also though that if their was a way to create line cross sections
from a buffer.. I could just create a buffer around the line they
create the cross lines from the buffer....
Any ideas?
Meyvn
On 7 Apr 2005 20:39:46 -0700, meyvn77@yahoo.com wrote:
Mevyn,
I have not seen a faq for this group, so I assume it is not specific
to any particular software. You could do your job with a single
command in Terramodel (road construction module) to create the cross
lines, and another command - with a lot of formatting settings - to
output the cross sections.
The Terramodel cogo module also does the same for street design.
Presumably you would be doing a bunch of work first to create the
alignment - polyline - and to create the surface(s) you want to draw
cross sections for.
If all you wanted was the vertical profile of the alignment you don't
even need the xlines, just one other command to create a profile of
the polyline in a profile view window.
Is this stuff difficult with some kinds of software?
Tom
Happy Trails To You
Mevyn,
I have not seen a faq for this group, so I assume it is not specific
to any particular software. You could do your job with a single
command in Terramodel (road construction module) to create the cross
lines, and another command - with a lot of formatting settings - to
output the cross sections.
The Terramodel cogo module also does the same for street design.
Presumably you would be doing a bunch of work first to create the
alignment - polyline - and to create the surface(s) you want to draw
cross sections for.
If all you wanted was the vertical profile of the alignment you don't
even need the xlines, just one other command to create a profile of
the polyline in a profile view window.
Is this stuff difficult with some kinds of software?
Tom
Happy Trails To You
Hi Meyvn,
You don't say which platform you are doing it in.
I do similar work (in VB) by:
1) calculating the course(angle) between the i and i+1 point
2) projecting a line (of given length) with + 90 and -90 degree
angles on points (of specified interval) on this line.
I project the line like this:
X1,Y1 of the projected line lies on the route.
X2 = X2 + (Projected Length) cos theta (course + 90)
Y2 = Y2 + (Projected Length) sin theta (course + 90)
I modified this piece of code to work for me:
http://www.vb-helper.com/howto_draw_arrows.html
HTH.
Suraj
meyvn77@yahoo.com wrote in message
You don't say which platform you are doing it in.
I do similar work (in VB) by:
1) calculating the course(angle) between the i and i+1 point
2) projecting a line (of given length) with + 90 and -90 degree
angles on points (of specified interval) on this line.
I project the line like this:
X1,Y1 of the projected line lies on the route.
X2 = X2 + (Projected Length) cos theta (course + 90)
Y2 = Y2 + (Projected Length) sin theta (course + 90)
I modified this piece of code to work for me:
http://www.vb-helper.com/howto_draw_arrows.html
HTH.
Suraj
meyvn77@yahoo.com wrote in message
> I would like to know if anyone has ever heard of or has an idea on how
> this could be possible.
>
> I would like to take a line or really a lot of lines and make cross
> lines at 90 degrees at a .25 mile interval along that line..
> So it would be like this...
> input: __________
> / \________
> _________/
>
> output:
>
> |_|__|__|_/
> \/| | | |/\|__|__
> |__|__|_\/\ | |
> | | | \
>
> Something like that.....
>
> It would be like an automated copy parallel that follows the line
>
> I also though that if their was a way to create line cross sections
> from a buffer.. I could just create a buffer around the line they
> create the cross lines from the buffer....
>
> Any ideas?
>
> Meyvn
> this could be possible.
>
> I would like to take a line or really a lot of lines and make cross
> lines at 90 degrees at a .25 mile interval along that line..
> So it would be like this...
> input: __________
> / \________
> _________/
>
> output:
>
> |_|__|__|_/
> \/| | | |/\|__|__
> |__|__|_\/\ | |
> | | | \
>
> Something like that.....
>
> It would be like an automated copy parallel that follows the line
>
> I also though that if their was a way to create line cross sections
> from a buffer.. I could just create a buffer around the line they
> create the cross lines from the buffer....
>
> Any ideas?
>
> Meyvn
On Thu, 07 Apr 2005 20:39:46 -0700, meyvn77 wrote:
find a piece of code that draws rail road symbols and change it to draw
your 90 deg crossing lines every 0.25 mile interval...
> I would like to know if anyone has ever heard of or has an idea on how
> this could be possible.
>
> I would like to take a line or really a lot of lines and make cross
> lines at 90 degrees at a .25 mile interval along that line..
> So it would be like this...
> input: __________
> / \________
> _________/
>
> output:
>
> |_|__|__|_/
> \/| | | |/\|__|__
> |__|__|_\/\ | |
> | | | \
>
> Something like that.....
>
> It would be like an automated copy parallel that follows the line
>
> I also though that if their was a way to create line cross sections
> from a buffer.. I could just create a buffer around the line they
> create the cross lines from the buffer....
>
> Any ideas?
>
> Meyvn
> this could be possible.
>
> I would like to take a line or really a lot of lines and make cross
> lines at 90 degrees at a .25 mile interval along that line..
> So it would be like this...
> input: __________
> / \________
> _________/
>
> output:
>
> |_|__|__|_/
> \/| | | |/\|__|__
> |__|__|_\/\ | |
> | | | \
>
> Something like that.....
>
> It would be like an automated copy parallel that follows the line
>
> I also though that if their was a way to create line cross sections
> from a buffer.. I could just create a buffer around the line they
> create the cross lines from the buffer....
>
> Any ideas?
>
> Meyvn
find a piece of code that draws rail road symbols and change it to draw
your 90 deg crossing lines every 0.25 mile interval...
- Garmin POI's - display along the route
- Garmin GPS
- 2008-04-24
- Newbie to Sat Nav and caravanning
- Garmin GPS
- 2008-01-23
- route optimization
- Garmin GPS
- 2008-04-13
- Creating a route
- Satellite Navigation
- 2006-09-04
- 60CSx - Routing problem?
- Satellite Navigation
- 2006-06-29
- Edit route in mapsource
- Garmin GPS
- 2006-04-02




>this could be possible.
>I would like to take a line or really a lot of lines and make cross
>lines at 90 degrees at a .25 mile interval along that line..
>I also though that if their was a way to create line cross sections
>from a buffer.. I could just create a buffer around the line they
>create the cross lines from the buffer....