RE: MI Atlas GIS question

2000-08-07 Thread Scott Hall



No. I haven't used it recently but I don't ever remember Atlas v2, 
v3 or v4 doing anything of that nature. 

Scott


-Original Message-From: 
Jason McMahan [mailto:[EMAIL PROTECTED]]Sent: Monday, August 07, 
2000 11:43 AMTo: [EMAIL PROTECTED]Subject: MI Atlas GIS 
question

  Dear List,
  
  I've posed this question to a couple of AtlasGIS 
  lists, but have not gotten an answer. I'm hoping there'san MI user 
  out there who can help me. My question is this:
  
  I've got an Atlas GIS .prj file.Several 
  layers have the Labels turned on. Is there a way I can save those labels 
  to a text or geographic file of some kind so that they may be converted to 
  MI?
  
  Any input is appreciated!
  
  Jason McMahan
  ENERmap Inc.
  
  


RE: MI Launching mapinfo without SplashScreen

2000-07-25 Thread Scott Hall
Title: RE: MI Launching mapinfo without SplashScreen





Try...


mapinfow.exe -nosplash


Scott


-Original Message-
From: Geografa y Electrnica, SA de CV [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 25, 2000 1:46 PM
To: [EMAIL PROTECTED]
Subject: MI Launching mapinfo without SplashScreen



Hi.


Time ago I heard that mapinfo can be started with several parameters, as


mapinfow.exe -helpdiag asks mapinfo to show help context id for each dialog.


Is there a way to launch mapinfo without the initial splash screen, the one
that reads MapInfo. The world's premier desktop mapping solution


Is there somewhere a complete list of valid parameters? I've tried
mapinfow.exe /? and -?


Thanks for your reply.


-
 Ing. Juan Pufleau Correa
Geografía y Electrónica, SA de CV
 Aguascalientes, Mexico
-
--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
unsubscribe MAPINFO-L in the message body, or contact [EMAIL PROTECTED]





RE: MI Nodes in Polylines

2000-06-08 Thread Scott Hall
Title: RE: MI Nodes in Polylines





 1. Is it possible to get the number of nodes in a Polyline?


Getting the number of nodes for a pline is found through ObjectInfo.


Dim bObject As Object
Dim nNumNodes As Integer


bObject = PolylineTable.Obj


nNumNodes = ObjectInfo(bObject, OBJ_INFO_NPNTS)


 2. in the next step I would like to get the coordinates for all the nodes which are  building a polyline.


Use the ObjectNodeX and ObjectNodeY commands to grab the x and y coordinates of the nodes. You can use a counter to loop thru the polyline node by node. It would also be helpful to check for plineness - ObjectInfo(bObject, OBJ_INFO_TYPE) - before the loop as I have found MapBasic to be a little tipsy with ObjectNode and a regular old line.

Dim Xcoord As Float
Dim Ycoord As Float


For nCntr = 1 To nNumNodes
 Xcoord = ObjectNodeX(bObject, 1, nCntr)
 Ycoord = ObjectNodeY(bObject, 1, nCntr)
Next