|
POST
|
Curious. You should not be able to place flags except on the network. Do you have multiple networks in your instance? I just tried it to make sure and it is only allowing flags to go direct onto a network feature. If you have multiple networks active you need to select from the drop down menu which network you are trying to place the flag on. I have a script tool that uses the Trace Geometric Network tool with a feature set as flags to allow user defined flags. I use the Snap_edit to make the flags coincident with the network features. I want to be able to tell the user in a message through validation if their flag is not coincident with the network, instead of the tool failing while the trace is performed and gives a " ERROR 001191: No flag found from the flag junction feature class". What's the best way to identify if the feature set is coincident with network features within the tool validation? How can you tell if the SNAP_EDIT actually snapped to anything? In an ideal world, the flag would not be allowed if it wasn't coincident (like the add-in tool). Thanks in advance.
... View more
06-05-2013
09:42 AM
|
0
|
0
|
1362
|
|
POST
|
You can use the dymanic text function but in only works on the data driven page. We wanted to do the same thing based on TWP RNG Section and Parcel Name(s) I simply built in those attributes to the feature I used for data driven pages and do dynamic text from that. Here is what I am trying to do: I am creating a map book that has data driven pages enabled and shows an aerial photo and building locations. What I would like to do is add an attribute table to my map layout which shows 2 attribute field values for the buildings layer. In this attribute table, I would only like to display the features located in that particular grid section. I believe I would have to use some sort of dynamic text in order to have the table change for each page. The data driven pages is enabled for my grid layer, not the buildings layer. I do not know if this is even possible and I am having a hard time solving this problem. Any advice would be appreciated!
... View more
06-05-2013
09:29 AM
|
0
|
0
|
1247
|
|
POST
|
Do you have to do it in Javascript? Is this only a one time deal or an ongoing process? Hello, I am trying to take a map extent coordinates (in State Plane), and convert them to pairs of Lat/Long coordinates. I am getting a 'wkid is null or undefined' error during the geometry service project function. My code:
function getCoords {
var topLeft = toLatLng(map.extent.xmin, map.extent.ymax);
var topRight = toLatLng(map.extent.xmax, map.extent.ymax);
var bottomRight = toLatLng(map.extent.xmax, map.extent.ymin);
var bottomLeft = toLatLng(map.extent.xmin, map.extent.ymin);
[...]
}
function toLatLng(x,y) {
var pt = new esri.geometry.Point(x, y, map.SpatialReference);
var symbol = new esri.symbol.SimpleMarkerSymbol();
var graphic = new esri.Graphic(pt, symbol);
var outSR = new esri.SpatialReference({ wkid: 4326 });
try{
geometrySvc.project([graphic], outSR, // this is where it fails
function (features) {
pt = features[0].geometry;
});
} catch (e) { alert(e.message); }
var retv = pt.x + "," + pt.y + ",0";
return (retv);
}
Any advice is much appreciated
... View more
05-30-2013
06:53 AM
|
0
|
0
|
739
|
|
POST
|
Correct. Right click on the feature in your table of contents and export it. Do your work on the copy of the feature. Then paste the corrected feature into your good feature. Thank you for the help, anyway I have a question. By "make a copy of the polygon layer" you mean make a copy of the Shapefile? Because I'm adding the polygons directly in the shapefile without creating lyr (layer) files.
... View more
05-28-2013
09:47 AM
|
0
|
0
|
2558
|
|
POST
|
Well I can say you didn't choose a simple polygon to have an accident with. Ok multi-part fix but it should work. Multiple solutions. First make a copy of your polygon layer Working on your copy. now select all the polygons around the moved polygon. Merge them together. Select your bad polygon and reshape it so it is a big rectangle around the place where it should be. Select the merged polygons and clip the new rectangle. Keep the part in the void. Now you should have a polygon that perfectly matches the spot it used to be. Now copy and paste the new polygon into the layer it came from and get rid of the moved one. Make sure all the attributes came with it. It will take you a lot less time to do this than it took me to write it. Second method. Redraw it. as I pointed out not a simple polygon. Make a copy of the polygon layer as previously stated and merge the polygons together. However you can trace it pretty easy. Move the moved polygon off to the side. Select the polygon merge that is around your void. Use the trace tool to draw the replacement polygon in. This may be fraught with minor difficulties but it works pretty well. Copy the attributes from the old polygon to the new one and delete the moved one. Dear community, I'm a beginner with ArcMap and I'm working on administrative boundaries for my country. Anyway while editing the polygon I've accidentally moved it for a few cm/inches and saved the work without noticing it so I can't undo it. How to i glue it back with the existing vertices? I tried to move it manually with maximum zooming but even if they're aligned visually their vertices aren't glued. Here's an example of the map: [ATTACH=CONFIG]24738[/ATTACH]
... View more
05-28-2013
09:27 AM
|
0
|
0
|
2558
|
|
POST
|
Why cannot you simply copy them from the wrong layer to the correct layer and then delete them from the wrong layer. You can select the features that are in the wrong layer and right click on the feature in the table of contents and export that feature as a new feature and then delete them from the wrong layer. Hi, it might be a stupid question but how do i create a new layer out of selected features in Arcmap? I have drawn some polylines in edit mode while a new created empty layer was active and i thought those lines would automatically be drawn into that layer. Well, they aren´t and i now can´t copy the features into that layer either. So now i have some polylines in my project which don´t belong to any layer. So i hoped there might be a tool that lets me create a layer out of the features i´ve selected in Arcmap. Hope i could outline my problem. Thanks for your help!
... View more
05-28-2013
05:12 AM
|
0
|
0
|
947
|
|
POST
|
I am looking for a way to return scale in an ArcGIS session. Possibly by putting it in a dynamic text box in layout. Or better yet to write it into a Definition query. The query would be something like only show this feature if the scale is less than (or greater then) the attribute (the attribute would have desired scale) Essentially. I have an attribute I call VisibleScale. I populate it with scale values. 1000, 2000, 15000 etc. The definition query would be such that if the current scale value is greater then the VisibleScale Attribute then the individual feature would not be visible. mmh sorry I don't understant your problem... can you explain it better please?
... View more
05-23-2013
07:09 AM
|
0
|
0
|
2829
|
|
POST
|
Create a new database with a feature dataset in the coordinate system you want with some features from the new coordinate system you wish to be in. use the data loader to load the Zambian map into the feature dataset. ArcCatalog will automatically convert the map to the new projection. I have a Zambian map in local coordinates in meters and would like to convert them UTM. How do I compute the conversions. I totally have no Idea. Please help?
... View more
05-23-2013
07:01 AM
|
0
|
0
|
793
|
|
POST
|
I pasted that into a text box and it shows what i pasted as the text add this and you have all in the same textbox:
... View more
05-23-2013
06:57 AM
|
0
|
0
|
2829
|
|
POST
|
do you know of any way to apply the getScale() to a label either for a feature or a Dynamic Text field in a layout
... View more
05-23-2013
06:29 AM
|
0
|
0
|
2829
|
|
POST
|
Find and Replace cannot find nothing. You need to do a query using Select by Attributes. The use Field Calculator or the Attributes window to insert a value. NOW I do not recommend this. You can also open your database in MS Access. Open the table that contains the <Null> values you want to replace. Press Control H to bring up the Find Replace. Insert the word Null and have it match Whole Field. This way you can replace many thousands of null values with something. Now I must as why you want to get rid of the null values? Is it only because you do not want to see the null value but would rather have a blank space. Keep in mind when you replace a <null> with a value you are increasing the size of your database and it could effect performance if you do enough of them. I am trying to replace a <Null> value in a selected field. When I do a find and replace I get an error that no fields have been detected. I have put in to find <Null> and replace it with the info that I want. I have selected the field but I still get this error. Can anyone help me with this? Is there a better or another way to do this? It just takes too long to select each field and type in the replacement info.
... View more
05-23-2013
06:19 AM
|
0
|
0
|
1630
|
|
POST
|
Ed, Sorry but this is a basic question but a place to start. Did you create your MXD and is your database that the PMF was created from made with 10.1 I have noticed some erroneous errors when using items created in 10.0 and used in 10.1 We have been able to fix the issues. I am thinking that if ArcReader 10.1 opens just fine but the PMF causes it to crash it may be that kind of issue. However, I have not tried it in Windows 8 nor have any of my clients. I recently sent a client their data and ArcReader 10.1 doc. They are using Windows 8 and when opening the document ArcReader crashes. No error message, just disappears. The client is able to start ArcReader without crashing, so I've ruled out the install being bad, but the same behavior occurs when opening the doc from the File menu. I have since tested the document and data using a Windows 8 machine we have in-house and I can open the document without problems. We have tried the following with no luck: Moved the data and document from a network location to local machine - still crashes Disabled anti-virus - still crashes Upgraded all underlying personal and file geodatabases to 10.1 - still crashes Other info: The client had been successfully using ArcReader 9.3 on Windows 8 prior to upgrading to 10.1 The map contains only data from personal and file geodatabases, one shapefile, and a Mr SID ortho Any insight as to the possible cause/solution or where I can look to get more details on why this is happening?
... View more
05-23-2013
05:50 AM
|
0
|
0
|
744
|
|
POST
|
If it is at the point where you have to delete a bunch of vertices way back you might be just as well off using the Reshape Feature Tool. As far as the Control Z. You can keep executing it all the way back to your last save. I just tried it to make sure and I did a line with 20 vertices and it allowed me to CTRL-Z all the way back to the start. Did the same for a polygon. This confounded me for the longest time too but it turned out to be really simple. 🙂 If you hover the mouse over the vertex and right click there should be an option to delete vertex while you are still sketching. IIRC I think this only works in reverse order, like you can't skip back to the middle but you can delete each one in order back to the middle.
... View more
05-22-2013
10:45 AM
|
0
|
0
|
2229
|
|
POST
|
Press Control Z [SUB][/SUB] Hi, Does anyone know how to delete vertices (i.e. back up) in ArcMap 10 while drawing in freehand in the construction tools? I was just curious if there was a way to do this without having to go ahead and complete the polygon and then go back and edit the vertices post completion. Thanks! Matthew
... View more
05-22-2013
08:56 AM
|
0
|
0
|
2229
|
|
POST
|
Thanks, <insert hitting heel of hand on forehead sound> I have no idea how many times I saw the option box but didn't click on it. If you go to the Option box for stack label (label manager>placement properties>fitting strategy) you have the option to force a split at a space (or a comma, an astrix, etc.) and if you're in 10.1 there is an option to constrain to center. I don't remember the constrain to center option in 10.0, but the force split is definitely an option there. Another thing to check is the minimum number of characters on a line. It defaults to 3 so that could be an issue for say, Substation #9
... View more
05-20-2013
10:05 AM
|
0
|
0
|
883
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 01-27-2023 07:28 AM | |
| 1 | a week ago | |
| 1 | 02-26-2020 07:13 AM | |
| 1 | 11-04-2019 09:14 AM | |
| 1 | 06-01-2022 05:27 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|