MI: resource editor

1999-07-28 Thread Robert Crossley

Can anyone recommend a good (or even a bad) resource file editor.  I used 
to have one in the old borland c compiler that allowed me to go into any 
executables or dll's to extract out the icons, etc, but I can't seem to 
find the equivalent in VB.  There seems to be a DOS based program to 
construct a rc file, but its pretty ugly.  It also doesn't seem to allow me 
to extract ones that are in other exe's etc.  None of the shareware lists 
that I have tried seem to have anything on resource editors  Maybe I am 
missing the point completely, is there an alternative?


Robert Crossley
Trinity Software
10 Trinity Street
Parramatta Park
CAIRNS   4870
AUSTRALIA

Phone: 61-7-40314877
Fax: 61-7-40314810
email: [EMAIL PROTECTED]
web: www.trinitysoftware.com.au


--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI USGS DOQs

1999-07-28 Thread Randa Enterprises


Is there a way to open USGS doq, coq files directly into MI?

Thanks

Roy
Roy N. Chiappini
Randa Enterprises
42 South 200 East
Blackfoot, ID 83221

http://www.srv.net/~ziccardi/randa/
[EMAIL PROTECTED]
--
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 Selection control query

1999-07-28 Thread Sue Port

Sean,

I needed to do this some time ago and the best I could come up with was to check
whether the user had interrupted the selection and act on that.
If you use CommandInfo(CMD_INFO_INTERRUPT) after the query, it will return a
TRUE if the user pressed .

Hope this helps.

Regards,
Sue.


 adding 
  value   Susan Port  
 to   Technical Support Coordinator   
   your   Spatial Plus
spatial   http://www.spatialplus.com  
systems 


>Hi all,
>
>I have a little query, about queries actually.  Does anyone know if there is

>some way to protect a selection in progress from user intervention.  I am
>referring to the (good) facility within MapInfo that allows a user to push

>ESC and halt the selection procedure.  I have a case here where that ability

>is undesirable - automated procedures.
>
>The best I have come up with is removing the ESC key from all of the
>keyboards in the office (lateral concept).  Anyone got any better ideas?
>
>Input appreciated.
>
>Thanks
>
>Sean Richards
>ERSIS Australia
>Level 2 436 St Kilda Rd, PO Box 3055. Telephone   +61 3 986 77322
>Melbourne. VIC. 3004. Australia. Facsimile +61 3 986 77422
>Email: [EMAIL PROTECTED]
>
>On the web at http:\\www.ersis.com.au
>__
>The views expressed in this message do not necessarily
reflect the views of ERSIS Australia.
>
>
>--
>To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
>"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]
--
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 Selection control query

1999-07-28 Thread Trey Pattillo

Hello

I do all my work via integration with Delphi4, soon to be 5, and found that
at various times I strange happenings.  It took a while to even get the
error message to the front of the processess.  Then to figure out what was
wrong.  By calling the WinAPI GetAsyncKeyState it will flush out the
keys/messges about the ESC key being pressed.  What bugs me is that I never
actually pressed the ESC key until I started the testing how to fix
it...

You might have to have this is your process loop in VB/MB
I haven't tested the actual call in MB and stopped using VB awhile back so
just how and where you place it will be up to trial and error

IN DELPHI
EscKey: Integer;
  EscKey:=getasynckeystate(27);

IN VB / MB
Declare Function GetAsyncKeyState Lib "user32" Alias "GetAsyncKeyState"
(ByVal vKey As Integer) As Integer

DIM EscKey as Integer

EscKey = GetAsyncKeyState(27)


Hope this helps...it worked for me


Trey Pattillo
[EMAIL PROTECTED]
http://www.wap3.com

- Original Message -
From: Sean Richards <[EMAIL PROTECTED]>
To: 'MapInfo List' <[EMAIL PROTECTED]>
Sent: Wednesday, 28 July, 1999 17:43
Subject: MI Selection control query


>Hi all,
>
>I have a little query, about queries actually.  Does anyone know if there
is
>some way to protect a selection in progress from user intervention.  I am
>referring to the (good) facility within MapInfo that allows a user to push
>ESC and halt the selection procedure.  I have a case here where that
ability
>is undesirable - automated procedures.
>
>The best I have come up with is removing the ESC key from all of the
>keyboards in the office (lateral concept).  Anyone got any better ideas?
>
>Input appreciated.
>
>Thanks
>
>Sean Richards
>ERSIS Australia
>Level 2 436 St Kilda Rd, PO Box 3055. Telephone   +61 3 986 77322
>Melbourne. VIC. 3004. Australia. Facsimile +61 3 986 77422
>Email: [EMAIL PROTECTED]
>
>On the web at http:\\www.ersis.com.au
>__
>The views expressed in this message do not necessarily
>reflect the views of ERSIS Australia.
>
>
>--
>To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
>"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]

--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI Deleting Duplicate Rows

1999-07-28 Thread Brian McKenzie



I have a table 
containing with 10K rows and ~1700 are duplicate rows. I have found this thru 
reading the Mapinfo 5.5 manual. 
 
Step1
 
SQL 
Select
 
Columns   
ID_Num,Count(*)
From 
TableEmlpoyee
Condition- 
Blank
Group by 
1
Order by--- 2 
desc
Into 
Selection
 
This gave me all 
rows including Dupes (and # of Dupes)
 
Step2
 
SQL 
Select
 
Columns---ID_Num,Count(*)
From 
Table---Employee
Condition--- ID_Num 
in (Select ID_Num from Query1 where Col2> 1)
Group by--- 
1
Order by 2 
desc
Into 
Selection
 
My Question is this: 
Using the above steps are my returned values above and beyond the Duplicate or 
does the result include the 1 single row as well.  2.) If the answer to 
question 1 is above and beyond do I just delete?, if the result of question 1 is 
including the single row that I need to retain How do I accompish the desired 
result of no Duplicate rows?
 
Thanks for any help 
for this newbie
 
Brian 
McKenzie
Stallings Crop 
Insurance Corp.
[EMAIL PROTECTED]


Re: MI selection question

1999-07-28 Thread Bob Young

Hi Rob

Make sure your Polygon layer has a column thats unique.

Then run an SQL select with tables showing POLTAB,PNTTAB
and where saying POLTAB.OBJ contains PNTTAB.OBJ.

In the group by column put the unique column in POLTAB

Lastly put Count(*) in Select column and hey presto!!...

Regards

Bob





In message , Gilhuly, Rob (LS - Program
Services) <[EMAIL PROTECTED]> writes
>I'm using MI 5.5 and when I do a SQL query it looks like some records
>that fall within the query are not selected (e.g. SQL query for postal
>codes LIKE "S7J%%%")... then when you look at the map with the postal
>code layer on, some of the postal code points that are for S7J sites are
>not highlighted like all the others.  When you look at the selection
>table, these postal codes seem to have been captured in the query, just
>not highlighted on the map.
>
>This occured in the 5.0 version as well... any comments, ideas?
>
>Rob Gilhuly, Research Coordinator
>City of Saskatoon 
>Community Services Department - Leisure Services Branch
>mailto:[EMAIL PROTECTED]
>http://www.city.saskatoon.sk.ca/departments/leisure/research
>
>--
>To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
>"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]

-- 
Bob Young
--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI splitting polygons with lines

1999-07-28 Thread CISGWW

hi everyone

i want to split ploygons with lines, both of which we create with gps.  in 
reading the mapinfo-l archives users recommended maplogix.  it works great 
but just wondering if their are any free utilities that will do the same 
thing?

a couple of posts mentioned splitrgn.mbx or objsplit.mbx but but couldn't 
remember the source of these utilities.  does anyone else know where i can 
find them.

thanks alot...your help has greatly shortened my learning curve of mapinfo!

greg
[EMAIL PROTECTED]
--
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 selection question

1999-07-28 Thread Bob Young

Hi Rob

This is an old one thats been there from the start.

MapInfo blame Microsoft I think you'll find. If two,four,six or any even
number of objects are on top of one another and selected then they dont
look selected, where as 1,3 etc do look selected!

Regards

Bob



In message , Gilhuly, Rob (LS - Program
Services) <[EMAIL PROTECTED]> writes
>I'm using MI 5.5 and when I do a SQL query it looks like some records
>that fall within the query are not selected (e.g. SQL query for postal
>codes LIKE "S7J%%%")... then when you look at the map with the postal
>code layer on, some of the postal code points that are for S7J sites are
>not highlighted like all the others.  When you look at the selection
>table, these postal codes seem to have been captured in the query, just
>not highlighted on the map.
>
>This occured in the 5.0 version as well... any comments, ideas?
>
>Rob Gilhuly, Research Coordinator
>City of Saskatoon 
>Community Services Department - Leisure Services Branch
>mailto:[EMAIL PROTECTED]
>http://www.city.saskatoon.sk.ca/departments/leisure/research
>
>--
>To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
>"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]

-- 
Bob Young
--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI and Coral Reef?

1999-07-28 Thread Franck Martin

Does anybody has done some surveying of Coral Reefs using MapInfo?

Franck Martin
Database Development Officer
SOPAC South Pacific Applied Geoscience Commission
Fiji
E-mail: [EMAIL PROTECTED]  
Web site: http://www.sopac.org.fj/  

--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI Geographic Operators

1999-07-28 Thread David McDonald

Thanks to everyone for their suggestions.

Thanks especially to David M Haycraft whose code worked perfectly (shown 
below)

Select *
>From PointTab
Where not (PointTab.Obj within any (Select Obj from RegionTab))

Most other suggestions like "Not Point.Obj Within Region.Obj" caused 
MapInfo to reply "No Join specified between tables. Invalid join condition 
in WHERE clause". This was strange because the syntax was checked and said 
to be correct.

Thanks once again David M Haycraft (and thanks to Peter Laulund who was 
also on the right track)


Regards,

*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
  DAVID McDONALD
  Senior Technical Officer / GIS Co-ordinator
  BC Tonkin & Associates, Consulting Engineers
  55 Queen Street, Adelaide, SA, 5000, Australia
  Ph: +61 8 8223 5583  Fax: +61 8 8223 5237
  E-mail: [EMAIL PROTECTED]
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

--
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 3D Landscape Visualization

1999-07-28 Thread GroundControl

Hi Jason,

You might want to check out the World Construction Set by Questar.

http://www.questarproductions.com/

I've never used it personally, but I've seen lots of demos.

Tyson Haverkort
-- 

GroundControl GeoTechnologies Inc.
Suite 210 - 1290 Hornby Street
Vancouver, British Columbia
Canada, V6Z 2G4

voice: (604) 684.5900
fax:   (604) 684.5909
web:   http://www.groundcontrol.ca
email: [EMAIL PROTECTED]

--
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 What is "rasterstyle" ?

1999-07-28 Thread Jacques Paris

Christophe,

What I made out of rasterstyle is that they are display parameters that
appear after you have made some adjustments with Table|Raster|Adjust image
style to a registered image.

1 and 2 stands for contrast and brightness (%)
3 and 4 ???
7 for the colour that is set to be transparent (RGB coded)

There may be more but these are the only ones I have come across.

Jacques Paris

e-mail[EMAIL PROTECTED]
   alternate   [EMAIL PROTECTED]

gis activity (MapInfo mainly)
  http://www.total.net/~rparis/gisproducts.htm


> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of Christophe Javoy
> Sent: July 28, 1999 1:04 PM
> To: '[EMAIL PROTECTED]'
> Subject: MI What is "rasterstyle" ?
>
>
> Hi,
> do somebody know the signification of "Rasterstyle" in the tab file for a
> raster ?
>  I don't find information in the mapinfo help.
>
> Christophe
>
> Optimus - Portugal
>
>
> --
> To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
> "unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]
>

--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI Selection control query

1999-07-28 Thread Sean Richards

Hi all,

I have a little query, about queries actually.  Does anyone know if there is
some way to protect a selection in progress from user intervention.  I am
referring to the (good) facility within MapInfo that allows a user to push
ESC and halt the selection procedure.  I have a case here where that ability
is undesirable - automated procedures.

The best I have come up with is removing the ESC key from all of the
keyboards in the office (lateral concept).  Anyone got any better ideas?

Input appreciated.

Thanks

Sean Richards
ERSIS Australia
Level 2 436 St Kilda Rd, PO Box 3055.   Telephone   +61 3 986 77322
Melbourne. VIC. 3004. Australia.Facsimile +61 3 986 77422
Email: [EMAIL PROTECTED]   

On the web at http:\\www.ersis.com.au
__
The views expressed in this message do not necessarily 
reflect the views of ERSIS Australia.


--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI Asuncion

1999-07-28 Thread HR and Associates, Inc / Eric Frost

We purchased some street (and rivers, boundaries) data for
Asuncion , Paraguay. It is a product from DGEEC called:
"Asuncion Capitol Cartografia Digital Censal 1998"
and it came in PC ARC/INFO format. We have ARC/INFO
7.0.4 (but of course we mostly use MapInfo) so I converted
it to AI 7 coverages using a tool from esri.com, then kicked
it to AI export files and used MI's arclink_map sun utility
to create tab's.

The data is in KM's and is UTM (datum WGS) but when it
comes into MI it is non-earth and it thinks the KM's are
meters.

I tried adding this line to the MapInfoW.prj but it's not
working out...

"UTM Zone 21, Northern Hemisphere (WGS 84)\p32621", 8, 104, 7, -57, 0,
0.9996, 50, 0
"UTM Zone 21, Southern Hemisphere (WGS 84)\p32721", 8, 104, 7, -57, 0,
0.9996, 50, 1000
"UTM Zone 21, Southern Hemisphere (WGS 84)in KM for Asuncion\p32721", 8,
104, 1, -57, 0, 0.9996, 500, 1

notice I changed the 7 to a 1 for KM and took three zeros
off each farthing. I assume I should open the Asuncion files
and do a save copy as specifying this projection.

When I then go to open it using the world country file off the
MI CD as a backdrop and do View Entire Layer asuncion tab
NOTHING appears, and as I zoom out I'm somewhere just off
the west african coast but far from South America.

Any ideas or help would be appreciated.

Thanks is advance!
Eric Frost

--
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 Sdts to DEM format conversion

1999-07-28 Thread Michael Branagan

I am looking for a utility for convert the USGS sdts files for the 7.5 min
topo maps.  I need to convert them into DEM files, but cannot find any
program which allows me to do batch processing.  All comments/suggestions
would be appreciated.

I'd be interested as well.  Especially dos, free utils.

Michael Branagan
HOME:
10207 Green Holly Terrace
Silver Spring, MD 20902-5812
OFFICE:
USEPA, OPPE (Room 3208)
401 M Street, SW
Washington, DC 20460-2123
PHONE:
(301)-754-0160 (home/casa, voice/fax)
(202)-260-7569 (office/officina, voice)
(202)-260-6732 (office/officina, fax)
EMAIL:
[EMAIL PROTECTED] (personal)
[EMAIL PROTECTED] (office/officina)

--
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 File access across a network

1999-07-28 Thread Bob Young

Hi Darren

If you are looking at the map only, then MapInfo will only really need
to read the map file. This file may be huge but it will only need to
read part of it. Basically the file contains index blocks that contain
MBRs ( Minimum bounding rectangles ) . With about twenty blocks per
level you dont have to have too many blocks too really break down your
geography!

So only a small part of the map file needs to get read - all index
blocks to blocks of objects taht intersect the screen plus the blocks of
objects themselves that intersect the screen. However this will still be
more than say MapXtreme as in this case the map is built on the server
and literally just the screen image is sent.

Some of out customers have 50 plus seats on a network and there is a
definite degradation of performance. However considering the size of the
files the technology is still very impressive!

Hope this helps.


Bob





In message <[EMAIL PROTECTED]>, Darren Kisner
<[EMAIL PROTECTED]> writes
>This transmission contains information which may be confidential and  
>which may also be privileged.  It is intended for the named addressee  
>only.  Unless you are the named addressee, or authorised to receive it 
>on behalf of the addressee you may not copy or use it, or disclose it 
>to anyone else.  If you have received this transmission in error please 
>contact the sender.  Thank you for your cooperation. 
>Hi all
>
>My question refers to how MapInfo accesses and queries files. I am setting up an 
>application in a multi-user environment and my clients need information on 
>potential network traffic. 
>
>Assuming Mapinfo tables are stored on a network drive and a user accesses them 
>using Mapinfo on a local machine:
>
> - When a table is opened (using MB command Open Table), but not browsed,  is 
>the whole file moved across the network to local machine or just the TAB file or  
>something else?
> - When a table is opened in a Map Browser is the whole table accessed or just 
>the object information?
> - If the user runs a query on an open table does the whole table need to be in 
>the local machines memory?
>
>I hope someone can make some sense of this!  Our base data tables range from 25 
>to 75mb in size, which is where the concern over network traffic arises.
>
>Thanks in advance
>
>Darren
>
>
>Darren Kisner  [ [EMAIL PROTECTED] ]
>AEA Technology Rail
>[tel]  0171 904 3505  
>[fax]  0171 904 3504
>
>
>--
>To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
>"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]

-- 
Bob Young
--
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 Sdts to DEM format conversion

1999-07-28 Thread Miguel Iturralde



On this page http://www.monumental.com/rshorne/downloads.html, 
there is a link to an sdts2dem utility; I don't know if it will allow batch 
processing though.
 
Regards,
 
Miguel Iturralde[EMAIL PROTECTED]

  - Original Message - 
  From: 
  Lepage, Mike L 
  (Mike)** CTR ** 
  To: [EMAIL PROTECTED] 
  Sent: Wednesday, 28 July, 1999 11:50 
  AM
  Subject: MI Sdts to DEM format 
  conversion
  All,I am looking for a utility for convert the USGS 
  sdts files for the 7.5 mintopo maps.  I need to convert them into DEM 
  files, but cannot find anyprogram which allows me to do batch 
  processing.  All comments/suggestionswould be 
  appreciated.Mike Lepage, B.Sc.Senior RF EngineerWireless 
  Professional ServicesLucent Technologies <<...>> 
  314-891-2130[EMAIL PROTECTED]--To 
  unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put"unsubscribe 
  MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]


MI What is "rasterstyle" ?

1999-07-28 Thread Christophe Javoy

Hi,
do somebody know the signification of "Rasterstyle" in the tab file for a
raster ?
 I don't find information in the mapinfo help.

Christophe

Optimus - Portugal


--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI Sdts to DEM format conversion

1999-07-28 Thread Lepage, Mike L (Mike)** CTR **

All,

I am looking for a utility for convert the USGS sdts files for the 7.5 min
topo maps.  I need to convert them into DEM files, but cannot find any
program which allows me to do batch processing.  All comments/suggestions
would be appreciated.

Mike Lepage, B.Sc.
Senior RF Engineer
Wireless Professional Services
Lucent Technologies <<...>> 
314-891-2130
[EMAIL PROTECTED]

--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI File access across a network

1999-07-28 Thread Darren Kisner

This transmission contains information which may be confidential and  
which may also be privileged.  It is intended for the named addressee  
only.  Unless you are the named addressee, or authorised to receive it 
on behalf of the addressee you may not copy or use it, or disclose it 
to anyone else.  If you have received this transmission in error please 
contact the sender.  Thank you for your cooperation. 
Hi all

My question refers to how MapInfo accesses and queries files. I am setting up an 
application in a multi-user environment and my clients need information on potential 
network traffic. 

Assuming Mapinfo tables are stored on a network drive and a user accesses them using 
Mapinfo on a local machine:

 - When a table is opened (using MB command Open Table), but not browsed,  is the 
whole file moved across the network to local machine or just the TAB file or  
something else?
 - When a table is opened in a Map Browser is the whole table accessed or just the 
object information?
 - If the user runs a query on an open table does the whole table need to be in the 
local machines memory?

I hope someone can make some sense of this!  Our base data tables range from 25 to 
75mb in size, which is where the concern over network traffic arises.

Thanks in advance

Darren


Darren Kisner  [ [EMAIL PROTECTED] ]
AEA Technology Rail
[tel]  0171 904 3505  
[fax]  0171 904 3504


--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI Re: 3D Landscape Visualization

1999-07-28 Thread Steve Bauke

Jason,

I understand you have some interest in investigating the capabilities of
Virtual Frontier. Although you didn't indicate what your application is,
Virtual Frontier is an ideal tool for real-time interactive 3D fly-through
visualization. It combines the power of terrain rendering with thematic
mapping.  In addition, as a MapInfo user, you'll appreciate the fact that
Virtual Frontier has the ability to connect directly to MapInfo and Vertical
Mapper files.

For more information about Virtual Frontier, please visit our website
at  http://www.northwoodgeo.com/

Please contact me if you have any further questions.

Regards,

Steve Bauke
Product Manager
Northwood Geoscience Ltd.
43 Auriga Drive
Nepean ON K2E 7Y8
CANADA

Tel: 613-224-2020
Fax: 613-224-1696
Website: www.northwoodgeo.com




- Original Message -
From: Jason Adam <[EMAIL PROTECTED]>
To: 'MapInfo List' <[EMAIL PROTECTED]>
Sent: Tuesday, July 27, 1999 1:10 PM
Subject: MI: 3D Landscape Visualization


> I'm attempting to investigate different 3D visualization packages,
including
> Virtual Frontier and GenesisII.
> I seem to remember a thread about a month and a half ago that may have
> mentioned something called VROOM, but I'm not sure.  Does anyone have any
> info/comments on this or any other package(s) to try out?
> TIA, will sum
>
> ___
> Jason Adam
> Computer Draftsperson
> Monopros Limited
> One William Morgan Drive
> Toronto, ON


--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



Vedr: MI Geographic Operators

1999-07-28 Thread pel


Hi David

The trick is to use an subselect.

Try this SQL:

Select * from MyPointTable where not obj within any (Select Obj from
myRegionTable)

Peter Laulund
National Survey and Cadastre, Denmark





"David McDonald" <[EMAIL PROTECTED]> - 27-07-99 01:14:31

  Besvar venligst til "[EMAIL PROTECTED]"
  <[EMAIL PROTECTED]>

Til:"'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
cc:  (bcc: Peter Laulund/MI/KMS)
Vedrørende:MI Geographic Operators





This may be an obvious question to some!
Is there a geographic operator for selecting points "outside" of regions.
I thought you could use "Not Within" or similar, but this does not seem to
work.

ie  "Point.Obj Not Within Region.Obj"

All the listed operator commands seem to based on being within another
object and none seem to relate to being outside.

Can someone please help?

Regards,

*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*  DAVID McDONALD *
*  Senior Technical Officer / GIS Co-ordinator*
*  BC Tonkin & Associates, Consulting Engineers   *
*  55 Queen Street, Adelaide, SA, 5000, Australia *
*  Ph: +61 8 8223 5583  Fax: +61 8 8223 5237  *
*  E-mail: [EMAIL PROTECTED]*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]







Vedr: MI MapBasic: Add Column Problem

1999-07-28 Thread pel

Hi Francois

Try declaring your ColName as an Alias and not as String, that will work.

Peter Laulund
National Survey and Cadastre, Denmark





"Bergeron, Francois" <[EMAIL PROTECTED]> - 27-07-99 20:31:39

Til:"'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
cc:  (bcc: Peter Laulund/MI/KMS)
Vedrørende:MI MapBasic: Add Column Problem




Hi All,
 I need Help! I got a problem with MapBasic.  Is there a way to pass
a variable (Value of field name) into the "Set To sum( ) parameter of the
"Add Column" statement?  Look at my example:
--
Table_Date: Name of a point Table
Table_Buffers: Name of a polygon Table
Accident: Real name of a field (Table_Data)
Dim ColName As String
ColName = "Accident"
--
1.
Add Column "Table_Buffers" ( ColName + "(Somme)" Float) From Table_Data Set
To sum(Accident) Where within Dynamic
IT WORKS WELL!!

2.
Add Column "Table_Buffers" ( ColName + "(Somme)" Float) From Table_Data Set
To sum(ColName) Where within Dynamic
PROBLEM!! :-((
Error message: Expression does not evaluate to a column or table name.



Any suggestion? THANKS!



François Bergeron, Conseiller en Géomatique
Ministère des Transports du Québec, Montreal
Direction des technologies de l'information
Service à la clientèle (Soutien Géomatique)
Téléphone: (514) 873-4293
E-Mail: [EMAIL PROTECTED] ou [EMAIL PROTECTED]



--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]




--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]