Oh yeah, and i'm using arcInfo 9 at the moment
Edited by Bweisss, 28 October 2008 - 12:23 PM.
Edited by Bweisss, 28 October 2008 - 12:23 PM.
Hi there. I'm making a map that shows various tow zones for the state of Oregon and I need to include on the map mile markers listed in 5 mile increments. I have mile marker data for the state but the data is in 1 mile increments. What would be the easiest way to automate this process? There's two fields listing mile marker data, one has mile marks with two decimel points that aren't exact (eg milepost 8 = 7.99) and the other contains the string MILEPOST X.00 X being the mile number, always ending in 00. How would you query out 5 mile increments. Or would I be better off using some kind of linear referencing tool on the highway shapefile? I'm pretty amateur so try to be as descriptive as possible. Thanks
Oh yeah, and i'm using arcInfo 9 at the moment
Hi there. I'm making a map that shows various tow zones for the state of Oregon and I need to include on the map mile markers listed in 5 mile increments. I have mile marker data for the state but the data is in 1 mile increments. What would be the easiest way to automate this process? There's two fields listing mile marker data, one has mile marks with two decimel points that aren't exact (eg milepost 8 = 7.99) and the other contains the string MILEPOST X.00 X being the mile number, always ending in 00. How would you query out 5 mile increments. Or would I be better off using some kind of linear referencing tool on the highway shapefile? I'm pretty amateur so try to be as descriptive as possible. Thanks
Oh yeah, and i'm using arcInfo 9 at the moment
I would suggest using mod function with if statment: if (MOD(MILEPOST,5)=0) then MILESTATUS = 1 ELSE MILESTATUS = 0. The statment has to be ported to ArcInfo enviroment.
Just my 0.02$
Lui
I do not know about the specific shp file and the data. The MOD statement suggested by Lui should work in the SELECT tool of EXTRACT toolbox in ArcGIS 9.x. In the SELECT tool, you will have INPUT feature (the original feature of Milepost points), the OUPUT feature (say 5MilePts) and in the EXPRESSION box click on SQL and create expression using the MOD statement. I hope that helps.Hi there. I'm making a map that shows various tow zones for the state of Oregon and I need to include on the map mile markers listed in 5 mile increments. I have mile marker data for the state but the data is in 1 mile increments. What would be the easiest way to automate this process? There's two fields listing mile marker data, one has mile marks with two decimel points that aren't exact (eg milepost 8 = 7.99) and the other contains the string MILEPOST X.00 X being the mile number, always ending in 00. How would you query out 5 mile increments. Or would I be better off using some kind of linear referencing tool on the highway shapefile? I'm pretty amateur so try to be as descriptive as possible. Thanks
Oh yeah, and i'm using arcInfo 9 at the moment
I would suggest using mod function with if statment: if (MOD(MILEPOST,5)=0) then MILESTATUS = 1 ELSE MILESTATUS = 0. The statment has to be ported to ArcInfo enviroment.
Just my 0.02$
Lui
Hi there. I'm making a map that shows various tow zones for the state of Oregon and I need to include on the map mile markers listed in 5 mile increments. I have mile marker data for the state but the data is in 1 mile increments. What would be the easiest way to automate this process? There's two fields listing mile marker data, one has mile marks with two decimel points that aren't exact (eg milepost 8 = 7.99) and the other contains the string MILEPOST X.00 X being the mile number, always ending in 00. How would you query out 5 mile increments. Or would I be better off using some kind of linear referencing tool on the highway shapefile? I'm pretty amateur so try to be as descriptive as possible. Thanks
Oh yeah, and i'm using arcInfo 9 at the moment
0 members, 0 guests, 0 anonymous users