|
POST
|
you can reset autoincrement column. In sql server, for instance, you can use DBCC CHECKIDENT (Transact-SQL)
... View more
08-26-2014
08:09 AM
|
0
|
0
|
1353
|
|
POST
|
... if your polygons are composed from only lines ...
... View more
08-19-2014
03:00 AM
|
0
|
0
|
2537
|
|
POST
|
you can see code in this link : IPolygon4.ExteriorRingBag Property (ArcObjects .NET 10 SDK) in this code when you loop on points you can get distance from point(i) to point(i+1) ...
... View more
08-19-2014
02:55 AM
|
0
|
1
|
2537
|
|
POST
|
What's the ssl certificate? (see article: https://support.servertastic.com/rapidssl-and-geotrust-certificate-not-trusted-on-mobile-device/ )
... View more
08-19-2014
02:39 AM
|
0
|
0
|
2259
|
|
POST
|
you can see in Esri Technical Certification Directory you can filter for countries (digit 'Ko') and see Certificate Esri Individuals
... View more
08-17-2014
09:22 AM
|
0
|
0
|
1370
|
|
POST
|
I remember that I have followed this steps: - create a new application - see the folders missing in C:\inetpub\wwwroot\Apps\appwithproblem\Culture with C:\inetpub\wwwroot\Apps\newapplication\Culture - copy in C:\inetpub\wwwroot\Apps\appwithproblem\Culture the folders missing from C:\inetpub\wwwroot\Apps\newapp\Culture -return in builder and click on buttom upgrade
... View more
08-08-2014
07:17 AM
|
0
|
0
|
847
|
|
POST
|
here you can see help of Rest: ArcGIS REST API Help of Query on Map Service Layer: ArcGIS REST API - Query (Map Service\Layer)
... View more
08-07-2014
07:47 AM
|
1
|
0
|
1554
|
|
POST
|
you can see Enterprise GIS Performance and Scalability | ArcGIS Resource Center
... View more
08-07-2014
06:18 AM
|
0
|
0
|
723
|
|
POST
|
Bind binds to product but then you need initialize. It doesn't raise error if it doesn't bind product : it return false. While BindLicense is void. You need target project in x86
if (RuntimeManager.Bind(ProductCode.Server))
{
IAoInitialize aoInit = new AoInitializeClass();
esriLicenseStatus a = aoInit.Initialize(esriLicenseProductCode.esriLicenseProductCodeArcServer);
}
... View more
08-07-2014
02:56 AM
|
0
|
0
|
1244
|
|
POST
|
check with Bind (BindLicense bind and initialize)
if (!RuntimeManager.Bind(ProductCode.Engine))
{
if (!RuntimeManager.Bind(ProductCode.Desktop))
{
MessageBox.Show("Unable to bind to ArcGIS runtime. Application will be shut down.");
return;
}
}
... View more
08-06-2014
09:48 AM
|
0
|
0
|
1244
|
|
POST
|
Extra info: I have derived another soe from elevationsoe: SurfaceSOE. You can create profile but also steepest path, LoS ect. and you can set your dem (you need ArcGIS Server and extension ArcGIS Server) http://www.arcgis.com/home/item.html?id=1c96538fa81948efb5a2436532964def
... View more
08-06-2014
05:51 AM
|
1
|
0
|
3480
|
|
POST
|
for create a tin from point:
// Instantiate a new empty TIN.
ITinEdit TinEdit = new TinClass();
// Initialize the TIN with an envelope. The envelope's extent should be set large enough to
// encompass all the data that will be added to the TIN. The envelope's spatial reference, if
// if has one, will be used as the TIN's spatial reference. If it is not set, as in this case,
// the TIN's spatial reference will be unknown.
IEnvelope Env = new EnvelopeClass();
Env.PutCoords(0, 0, 10, 10);
TinEdit.InitNew(Env);
// Add points to the TIN. These will become triangle nodes.
IPoint Point = new PointClass();
Point.X = 2;
Point.Y = 2;
Point.Z = 0;
TinEdit.AddPointZ(Point, 0);
Point.Y = 7;
TinEdit.AddPointZ(Point, 0);
Point.X = 7;
TinEdit.AddPointZ(Point, 0);
// Save the TIN to disk. The overwrite parameter is used to indicate whether an existing
// TIN with the same name is allowed to be replaced with this one.
object overwrite = true;
TinEdit.SaveAs("c:\\data\\my_tin", ref overwrite);
when you have tin you get triangle component and use ITinTriangle.QueryNormal ( ArcObjects Help for .NET developers )
... View more
08-06-2014
04:15 AM
|
0
|
0
|
844
|
|
POST
|
have you follow these step: SQL Server Express for Desktop 10.2.1 or Engine 10.2.1 Installation Guide - Enabling SQL Server Express to store desktop… ? -can you upgrade 10.1 sp1 and sql express 2008 r2 sp2?
... View more
08-05-2014
04:26 AM
|
0
|
2
|
4104
|
|
POST
|
Have you installed in sql express Full-Text Search?
... View more
08-05-2014
04:17 AM
|
0
|
4
|
4104
|
|
POST
|
Can you check this one: Start ArcMap, open the Catalog window, then expand the Database Servers folder in the Catalog tree. Right-click the database server and click Properties. Product name should say Microsoft SQL Server Express Edition with Advanced Services. If instead it says Microsoft SQL Server Express Edition, you must install a SQL Server Express instance that includes Advanced Services
... View more
08-05-2014
03:17 AM
|
0
|
6
|
4104
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-20-2024 11:20 AM | |
| 1 | 05-25-2017 10:11 AM | |
| 1 | 06-20-2023 12:09 AM | |
| 1 | 10-14-2022 05:14 AM | |
| 1 | 06-14-2023 02:00 AM |
| Online Status |
Offline
|
| Date Last Visited |
05-18-2026
04:12 AM
|