| 1 | <?xml version="1.0" encoding="utf-8"?> |
|---|
| 2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|---|
| 3 | <html xmlns="http://www.w3.org/1999/xhtml"><head><link rel="stylesheet" type="text/css" href="81help.css?format=raw" /><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Create Points</title></head><body><table style="margin-top:-1em; margin-bottom:0; padding:0; margin-left:-1em"><tr><td style="background:white"><img width="875" height="70" alt="ArcToolbox banner" src="AHBanner_ArcToolbox.gif?format=raw" /></td></tr></table><h1>Create Points</h1><p></p><p>Creates points in a new ArcGIS point feature class.</p><br /><p><h2><img width="11" height="11" border="0" src="sm_arrow_down.gif?format=raw" /> Command line syntax</h2></p><div Class="expand" id="id103142">ArcGISPointsCreateFeatureClassWithPoints2_GeoEco <featureClass> <spatialReference> <xyCoordinates;xyCoordinates...> {zCoordinates;zCoordinates...} {mValues;mValues...} {configKeyword} {spatialGrid1} {spatialGrid2} {spatialGrid3} <br /><br /><b>Parameters</b><br /><table width="100%" border="0" cellpadding="5"><tbody><tr><th width="40%"><b>Expression</b></th><th width="60%"><b>Explanation</b></th></tr><tr><td class="info"><featureClass></td><td class="info" align="left"><p>Output point feature class to create.</p></td></tr><tr><td class="info"><spatialReference></td><td class="info" align="left"><p>Spatial reference for the output feature class.</p></td></tr><tr><td class="info"><xyCoordinates;xyCoordinates...></td><td class="info" align="left"><p>X and Y coordinates of the points to create.</p><p>If you are invoking this tool programmatically, you must specify each |
|---|
| 4 | point as a string, as must be done when invoking an ArcGIS tool that |
|---|
| 5 | accepts a point as input. For example, to create three points when |
|---|
| 6 | invoking this tool from Python, you use the list:</p><dl><dt></dt><dd><pre>[u'1 2', u'3 4', u'5 6']</pre></dd></dl></td></tr><tr><td class="info">{zCoordinates;zCoordinates...}</td><td class="info" align="left"><p>Z coordinates of the points to create.</p><p>If you are invoking this tool programmatically, specify these |
|---|
| 7 | coordinates as floating point numbers, not strings as is done with the |
|---|
| 8 | xyCoordinates parameter.</p></td></tr><tr><td class="info">{mValues;mValues...}</td><td class="info" align="left"><p>Measure values of the points to create.</p><p>If you are invoking this tool programmatically, specify these values |
|---|
| 9 | as floating point numbers, not strings as is done with the |
|---|
| 10 | xyCoordinates parameter.</p></td></tr><tr><td class="info">{configKeyword}</td><td class="info" align="left"><p>The configuration keyword that determines the storage parameters |
|---|
| 11 | of the table in a Relational Database Management System |
|---|
| 12 | (RDBMS)--ArcSDE only.</p></td></tr><tr><td class="info">{spatialGrid1}</td><td class="info" align="left"><p>The size of the output feature class's spatial grid index. The |
|---|
| 13 | following formats support spatial grid index grids: personal |
|---|
| 14 | geodatabase, file geodatabase or ArcSDE geodatabase. If not provided, |
|---|
| 15 | or if the value 0 is provided, a valid grid size will be calculated |
|---|
| 16 | automatically by ArcGIS.</p></td></tr><tr><td class="info">{spatialGrid2}</td><td class="info" align="left"><p>The size of the output feature class's second spatial grid index. |
|---|
| 17 | The value must be at least three times larger than the first index |
|---|
| 18 | grid. The following formats support spatial grid index grids: personal |
|---|
| 19 | geodatabase, file geodatabase or ArcSDE geodatabase. Note that |
|---|
| 20 | personal geodatabases support only one spatial index grid.</p></td></tr><tr><td class="info">{spatialGrid3}</td><td class="info" align="left"><p>The size of the output feature class's second spatial grid index. |
|---|
| 21 | The value must be at least three times larger than the second index |
|---|
| 22 | grid. The following formats support spatial grid index grids: personal |
|---|
| 23 | geodatabase, file geodatabase or ArcSDE geodatabase. Note that |
|---|
| 24 | personal geodatabases support only one spatial index grid.</p></td></tr></tbody></table></div><p><h2><img width="11" height="11" border="0" src="sm_arrow_down.gif?format=raw" /> Scripting syntax</h2></p><div Class="expand" id="TEST">ArcGISPointsCreateFeatureClassWithPoints2_GeoEco (featureClass, spatialReference, xyCoordinates, zCoordinates, mValues, configKeyword, spatialGrid1, spatialGrid2, spatialGrid3) <br /><br /><b>Parameters</b><br /><table width="100%" border="0" cellpadding="5"><tbody><tr><th width="40%"><b>Expression</b></th><th width="60%"><b>Explanation</b></th></tr><tr><td class="info">Output point feature class (Required) </td><td class="info" align="left"><p>Output point feature class to create.</p></td></tr><tr><td class="info">Spatial reference (Required) </td><td class="info" align="left"><p>Spatial reference for the output feature class.</p></td></tr><tr><td class="info">Points (Required) </td><td class="info" align="left"><p>X and Y coordinates of the points to create.</p><p>If you are invoking this tool programmatically, you must specify each |
|---|
| 25 | point as a string, as must be done when invoking an ArcGIS tool that |
|---|
| 26 | accepts a point as input. For example, to create three points when |
|---|
| 27 | invoking this tool from Python, you use the list:</p><dl><dt></dt><dd><pre>[u'1 2', u'3 4', u'5 6']</pre></dd></dl></td></tr><tr><td class="info">Z coordinates (Optional) </td><td class="info" align="left"><p>Z coordinates of the points to create.</p><p>If you are invoking this tool programmatically, specify these |
|---|
| 28 | coordinates as floating point numbers, not strings as is done with the |
|---|
| 29 | xyCoordinates parameter.</p></td></tr><tr><td class="info">M values (Optional) </td><td class="info" align="left"><p>Measure values of the points to create.</p><p>If you are invoking this tool programmatically, specify these values |
|---|
| 30 | as floating point numbers, not strings as is done with the |
|---|
| 31 | xyCoordinates parameter.</p></td></tr><tr><td class="info">Configuration keyword (Optional) </td><td class="info" align="left"><p>The configuration keyword that determines the storage parameters |
|---|
| 32 | of the table in a Relational Database Management System |
|---|
| 33 | (RDBMS)--ArcSDE only.</p></td></tr><tr><td class="info">Output spatial grid 1 (Optional) </td><td class="info" align="left"><p>The size of the output feature class's spatial grid index. The |
|---|
| 34 | following formats support spatial grid index grids: personal |
|---|
| 35 | geodatabase, file geodatabase or ArcSDE geodatabase. If not provided, |
|---|
| 36 | or if the value 0 is provided, a valid grid size will be calculated |
|---|
| 37 | automatically by ArcGIS.</p></td></tr><tr><td class="info">Output spatial grid 2 (Optional) </td><td class="info" align="left"><p>The size of the output feature class's second spatial grid index. |
|---|
| 38 | The value must be at least three times larger than the first index |
|---|
| 39 | grid. The following formats support spatial grid index grids: personal |
|---|
| 40 | geodatabase, file geodatabase or ArcSDE geodatabase. Note that |
|---|
| 41 | personal geodatabases support only one spatial index grid.</p></td></tr><tr><td class="info">Output spatial grid 3 (Optional) </td><td class="info" align="left"><p>The size of the output feature class's second spatial grid index. |
|---|
| 42 | The value must be at least three times larger than the second index |
|---|
| 43 | grid. The following formats support spatial grid index grids: personal |
|---|
| 44 | geodatabase, file geodatabase or ArcSDE geodatabase. Note that |
|---|
| 45 | personal geodatabases support only one spatial index grid.</p></td></tr></tbody></table></div></body></html> |
|---|