MI CALCULATION OF BEARING, DISTANCE

2000-05-22 Thread Jocelyn C O'Byrne

Dear Mapinfo Users,

Does anyone know of an mapbasic application that will output bearing and
distance between points listed in a mapinfo table? 

Jocelyn O'Byrne
Mining Project Investors Pty Ltd
Perth, Western 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 Integrated Mapping

2000-05-22 Thread Anish Kumar P

Hi all

I am working on a project which uses integrated mapping on VB6. I want
to have a toolbutton which when clicked on a polygon, should zoom in
that particular polygon. This can be done in mapbasic using the
SelChangedHandler. Is this possible thro' Integrated Mapping?

Any ideas on where I can locate some good VB/MapInfo Resources on
Integrated Mapping. Any help is greatly appreciated.

Thanks in Advance

Kumar


--
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 miles or kilometers

2000-05-22 Thread Miguel Iturralde



Eric,
 
Yes, the kilometer is the measurement unit used for the 
roads system here.  Primary and secondary state roads (usually two- or 
four-lanes) connecting the towns have hectometer markers; that's why you might 
find rural addresses given as "Carr. xyz, km. xy.z".  If you see "interior" 
or "int.", it means the address is found off the main, on a branching 
road.
 
By the way, gasoline is sold by the liter.
 
Regards,
 
Miguel Iturralde[EMAIL PROTECTED]

  - Original Message - 
  From: 
  Eric Frost / HR and Associates, 
  Inc. 
  To: [EMAIL PROTECTED] 
  Sent: Monday, 22 May, 2000 05:21 PM
  Subject: MI miles or kilometers
  
  quick question... does Puerto Rico always use KM? 
  I have
  addresses with KM markers so I assume it is 
  kilometers?
   
  then for reference: Is the U.S. the only country 
  using miles?
  How about the British? Hawaii must be 
  miles?
   
  Thanks!
  Eric


Re: MI Creating a MapInfo Editor in VB

2000-05-22 Thread Trey Pattillo

Hello Aine,

1) You need to use GetObject [ole] which will connect to a currently running
application - MI
CreateObject will create a *new* instance of the app.

2) A little know trick [well over one app is over 10,000 lines of Delphi
plus many other apps]
TELL MI TO COPY TO THE CLIPBOARD --
MIMap.RunMenuCommand(M_EDIT_COPY)
Defined as ID 203
This will *paste* the current record data [tab delimited] and the
graphic [object] to the text and graphic
areas of the clipboard
The use the PasteFromClipBoard procedure of VB [or WinAPI] to put
data into a string or edit box
You can then parse out each field which is *much* quicker than all
the EVAL calls
Also you can dynamically create a scroll box with the correct number
[field count from MI] edit boxes and labels

I haven' t done an VB in about 3 years but it's all there

Hope this helps...check the website for a VB example of calling
MI plus WinAPI and other goodies


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

- Original Message -
From: Aine Deery <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, 22 May, 2000 08:40
Subject: MI Creating a MapInfo Editor in VB


> Hi there,
>
> I am attempting to create an editor in VB to view/edit point data from
> MapInfo. I want this editor to be an add-on to my core MapInfo application
> as oppose to an integrated mapping solution. Any ideas? I would like to
use
> VB as I require some dialog controls that are not available in MapBasic. I
> have a few questions that I would appreciate help on:
>
> 1. As part of the editor I wish to display the attribute information of
the
> currently selected row of the MapInfo .tab file (similar to the info tool)
> what is the most efficient way to access this data from VB. As my first
> attempt I havethe following (where TSG holds the tablename) This works but
I
> am wondering is there a better approach than calling Eval for each
> individual attribute.
> FrmSignEditor.Text1.Text = mi.Eval(TSG + ".SignGroupID")
> FrmSignEditor.Text2.Text = mi.Eval(TSG + ".NoOfPosts")
> FrmSignEditor.Text3.Text = mi.Eval(TSG + ".PostHeight")
> FrmSignEditor.Text4.Text = mi.Eval(TSG + ".PostType")
> FrmSignEditor.Text6.Text = mi.Eval(TSG + ".Terrain")
> FrmSignEditor.Text7.Text = mi.Eval(TSG + ".Comment")
>
> 2. Any ideas on where I can locate some good VB/MapInfo Resources.
>
> I am currently running VB5 and MapInfo Prof.5 and MapBasic5.  Any help is
> greatly appreciated.
>
> thank -you,
>
> Aine Deery
>
> --
> 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 Updating an integer and/or character column

2000-05-22 Thread peter . corlett


Yes Michael,
 MapInfo is treating the expression Landuse = "2"
as a Boolean expression and is giving you the answer F for "false". What
you need to do is just put 2 in the Value.

Cheers,

Pete.



   
  
Michael Goldberg   
  
<[EMAIL PROTECTED]To: "'[EMAIL PROTECTED]'" 
<[EMAIL PROTECTED]> 
x.us>  cc: 
  
Sent by:   Subject: MI Updating an integer 
and/or character column   
owner-mapinfo-l@lis
  
ts.csn.net 
  
   
  
   
  
23/05/00 08:38 AM  
  
   
  
   
  






Dear List,

I'm having trouble updating an integer column in one of my MapInfo tables.
I want to add a number 2 to a column titled LandUse.  I go to Table Update
Column, select the appropriate table and column.  Then in the value section
I put LandUse = 2.  I don't get any results or error messages.  The LandUse
column appears just as before with a 0 in every field.  I then converted
the LandUse column to a character and tried to update the column that way.
This time in Table Update Column in the value section I put LandUse = "2".
This time MI updates the column with an "F".  No matter what character I
try to update the column with I get an F.  Does anybody have a clue to what
is going on here (for the integer and character column)?  Any help would be
greatly appreciated.

Thanks,

Michael Goldberg
GIS Analyst
City of San Antonio, Planning Department
[EMAIL PROTECTED]
(210) 207-6533





--
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 Updating an integer and/or character column

2000-05-22 Thread Michael Goldberg
Title: Updating an integer and/or character column





Dear List,


I'm having trouble updating an integer column in one of my MapInfo tables.  I want to add a number 2 to a column titled LandUse.  I go to Table Update Column, select the appropriate table and column.  Then in the value section I put LandUse = 2.  I don't get any results or error messages.  The LandUse column appears just as before with a 0 in every field.  I then converted the LandUse column to a character and tried to update the column that way.  This time in Table Update Column in the value section I put LandUse = "2".  This time MI updates the column with an "F".  No matter what character I try to update the column with I get an F.  Does anybody have a clue to what is going on here (for the integer and character column)?  Any help would be greatly appreciated.

Thanks,


Michael Goldberg
GIS Analyst
City of San Antonio, Planning Department
[EMAIL PROTECTED]
(210) 207-6533






MI miles or kilometers

2000-05-22 Thread Eric Frost / HR and Associates, Inc.



quick question... does Puerto Rico always use KM? I 
have
addresses with KM markers so I assume it is 
kilometers?
 
then for reference: Is the U.S. the only country 
using miles?
How about the British? Hawaii must be 
miles?
 
Thanks!
Eric
 
 
 


Re: MI Opening workspace

2000-05-22 Thread Russell Mincher



How long was the query?
MI is probably re-running it.
I use a fair bit of thematic mapping and those workspaces can 
take ages to load as MI re-creates each thematic from scratch
 
 
- Original Message - 

  From: 
  Ewa 
  Plachta 
  To: 'MapInfo-L' 
  Sent: Tuesday, May 23, 2000 12:29 
AM
  Subject: MI Opening workspace
  
  Hi,
   
  I cannot open the workspace for not known to me 
  reasons. My previous experience with such problem was when I deleted some 
  files by accident and during the process of calling the workspace up I had the 
  messages asking me for the files which no longer physically existed - the 
  process afterwards was straightforward: modifying the workspace as a text 
  file. 
   
  This time, however, MapInfo is not responding, 
  trying to open the workspace for up to 1/2 hour (I did not have enough 
  patience to wait longer) without any error message. I've checked the text file 
  - everything looks fine. The last time I saved it was after a long 
  query  trying to match addressees. Unfortunately, I did not save the 
  query, but save the whole workspace expecting to be open as I Ieft it few 
  minutes ago. The workspace is 16KB, but I have much bigger ones and I don't 
  have any problem with them?
  What's wrong?
   
   
  Ewa


Re: MI MapInfo Professional JAVA version down the road?

2000-05-22 Thread Colonel Erick Posner

Hmm.  Presently, I'm installing Informix/SpatialWare on my Windows NT
machine.

I was told that the current version of Informix/SpatialWare will not run
on Windows 2000.

My professor told me that Informix runs on WinNT because of how the file
system are located.  He said that Win98 system "search" for the files and
then display.  WinNT just go straight to the database information and
pull. Which is why Informix works on NT best because it's faster.

On Mon, 22 May 2000, climber wrote:

> Hello list,
> 
> As a MapInfo users since v 3.02 on a Mac, I now use it on Win 95 and Win
> NT 4.  I am faced with what most of us are the lack of processing speed
> in large computational models. For example, working with large DEM / DTM
> data sets within Vertical Mapper can be painfully slow.  Now that I am
> using a PIII 600B Mhz machine with 256 MBs of RAMBUS memory it's much
> better than on the PII 350 Mhz machine with 128 MB of SDRAM. However,
> using NT with two Processors and MapInfo, I can see so much more
> potential. 
> 
> I assume that MapXtreme Java Edition is multithreaded as JAVA C++ is a
> an ideal environment for this.  However, it may not be.  I have talked
> with the tech's at Northwood Technologies Ltd. (formerly Northwood
> Geoscience Ltd.).  The have said that the Java Editions they are working
> on for some of their future products work slower than the non-java
> versions.  I am wondering if they are testing this on multi-processor
> systems as well as single processor systems.
> 
> With the advent of Win 2000 helping to merge the multimedia capabilities
> of Win98 and power of NT I think that down the road OS's will demand
> multiple CPU's and that MapInfo should start reconfiguring it's line two
> work in this environment, the sooner the better.
> 
> I have talked to a friend of mine that used to work at an ESRI partner's
> software development company.  He said that to his knowledge neither
> ARC/INFO nor Arcview were multithreaded and that is a shortcoming.
> 
> Just imagine running MapInfo (multi-threaded) on a 32 CPU high end
> workstation or MapExtreme on a server, several GBs of RAMBUS or DDR RAM
> and a couple 36 GB SCSI 3 HDs...
> 
> Too only dream,
> 
> Stan Johnston
> Geologist
> --
> To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
> "unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]
> 

-
   Erick Posner
-
Earn $$ while surfing on the website! 
http://www.alladvantage.com/go.asp?refid=cbl286

-
"My Mom said she learned how to swim.  Someone took her out in the lake
and threw her off the boat.  That's how she learned how to swim.  I said,
'Mom, they weren't trying to teach you how to swim.' "
 --Paula Poundstone 


--
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 MapInfo Professional JAVA version down the road?

2000-05-22 Thread Jeff Lebowski

>With the advent of Win 2000 helping to merge the multimedia capabilities of 
>Win98 and power of NT I think that down the road OS's will demand multiple 
>CPU's and that MapInfo should start reconfiguring it's line two work in 
>this environment, the sooner the > better.

don't hold your breath.  mapinfo has better things to think about than 
speed/quality issues with their core product.

i'd love to see it too since i have to process thousands and thousands of 
objects thru mapinfo/mapbasic and it literally takes overnight to do so.  
but, it's a fact of life i have to deal with.

>I have talked to a friend of mine that used to work at an ESRI partner's 
>software development company.  He said that to his knowledge neither 
>ARC/INFO nor Arcview were multithreaded and that is a shortcoming.

true, the esri line isn't multithreaded now, but i really think esri will 
meet this demand before mapinfo does.  especially beings they're totally 
rebuilding the arcview platform and modelling it after the arcinfo arcmap 
extension.

Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

--
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 MapInfo Professional JAVA version down the road?

2000-05-22 Thread Erickson, Ian


While it would be great to see an improvement in speed and
performance of MapXtreme Java over existing machine language applications,
JAVA code is interpreted (by a VM), and VM technology has to mature far
beyond where it is today before JAVA can be a competitor to C++ & Delphi
implementations.  And yes, multithreaded applications do have SIGNIFICANT
advantages over applications that are not multithreaded, but depending on
what OS you run, you are limited by the number of processors that a
particular OS can support.

And as far as seeing MapInfo Professional having multiprocessor
support in the near future...Don't hold your breath.  MapInfo seems to be
too wrapped up in JAVA and Internet based technology to care too much about
the tiny little desktop systems running MIPro.

-Ian Erickson 
Target Marketing

Telocity, Inc.

-Original Message-
From: climber [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 22, 2000 10:57 AM
To: '[EMAIL PROTECTED]'
Subject: MI MapInfo Professional JAVA version down the road?


Hello list,

As a MapInfo users since v 3.02 on a Mac, I now use it on Win 95 and Win
NT 4.  I am faced with what most of us are the lack of processing speed
in large computational models. For example, working with large DEM / DTM
data sets within Vertical Mapper can be painfully slow.  Now that I am
using a PIII 600B Mhz machine with 256 MBs of RAMBUS memory it's much
better than on the PII 350 Mhz machine with 128 MB of SDRAM. However,
using NT with two Processors and MapInfo, I can see so much more
potential. 

I assume that MapXtreme Java Edition is multithreaded as JAVA C++ is a
an ideal environment for this.  However, it may not be.  I have talked
with the tech's at Northwood Technologies Ltd. (formerly Northwood
Geoscience Ltd.).  The have said that the Java Editions they are working
on for some of their future products work slower than the non-java
versions.  I am wondering if they are testing this on multi-processor
systems as well as single processor systems.

With the advent of Win 2000 helping to merge the multimedia capabilities
of Win98 and power of NT I think that down the road OS's will demand
multiple CPU's and that MapInfo should start reconfiguring it's line two
work in this environment, the sooner the better.

I have talked to a friend of mine that used to work at an ESRI partner's
software development company.  He said that to his knowledge neither
ARC/INFO nor Arcview were multithreaded and that is a shortcoming.

Just imagine running MapInfo (multi-threaded) on a 32 CPU high end
workstation or MapExtreme on a server, several GBs of RAMBUS or DDR RAM
and a couple 36 GB SCSI 3 HDs...

Too only dream,

Stan Johnston
Geologist
--
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 MapInfo Professional JAVA version down the road?

2000-05-22 Thread climber

Hello list,

As a MapInfo users since v 3.02 on a Mac, I now use it on Win 95 and Win
NT 4.  I am faced with what most of us are the lack of processing speed
in large computational models. For example, working with large DEM / DTM
data sets within Vertical Mapper can be painfully slow.  Now that I am
using a PIII 600B Mhz machine with 256 MBs of RAMBUS memory it's much
better than on the PII 350 Mhz machine with 128 MB of SDRAM. However,
using NT with two Processors and MapInfo, I can see so much more
potential. 

I assume that MapXtreme Java Edition is multithreaded as JAVA C++ is a
an ideal environment for this.  However, it may not be.  I have talked
with the tech's at Northwood Technologies Ltd. (formerly Northwood
Geoscience Ltd.).  The have said that the Java Editions they are working
on for some of their future products work slower than the non-java
versions.  I am wondering if they are testing this on multi-processor
systems as well as single processor systems.

With the advent of Win 2000 helping to merge the multimedia capabilities
of Win98 and power of NT I think that down the road OS's will demand
multiple CPU's and that MapInfo should start reconfiguring it's line two
work in this environment, the sooner the better.

I have talked to a friend of mine that used to work at an ESRI partner's
software development company.  He said that to his knowledge neither
ARC/INFO nor Arcview were multithreaded and that is a shortcoming.

Just imagine running MapInfo (multi-threaded) on a 32 CPU high end
workstation or MapExtreme on a server, several GBs of RAMBUS or DDR RAM
and a couple 36 GB SCSI 3 HDs...

Too only dream,

Stan Johnston
Geologist
--
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 5.5 Detecting Overlapping (duplicate) polygons

2000-05-22 Thread Tony Andrews

Hello all

I would appreciate any assistance, particularly a MapBasic program, that
will detect the presence of overlapping (duplicate) polygons
in a MapInfo table. I would like to select all overlapping polygons and
display these to the user. Ideally I would like to demonstrate the
parts of the overlapped polygon and then delete these
"slivers"/overlaps/duplicates from the table.

Many thanks in advance

Tony Andrews
[EMAIL PROTECTED]


The information contained in this e-mail is likely to be confidential and
may be legally privileged. It is intended only for the addressee. If you
have received this message in error please notify the sender immediately at
the above address. The disclosure, copying or distribution of this message
or its contents without the prior approval of Wallingford Software Ltd. is
strictly prohibited. Wallingford Software Ltd. is not liable for
unauthorised disclosures nor for subsequent actions or omissions in reliance
upon them.


--
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 Automatically Create Points for an Excel spreadsheet

2000-05-22 Thread Warren, Steve

I currently have a mapbasic program that will automatically create points
for an Excel spreadsheet.  However, the program requires that certain column
names be required.  I would like to create a mapbasic program that will
automatically create points for any Excel spreadsheet regardless of the
column names and/or range of the Excel spreadsheet.  Does anyone have any
code snippets and/or help/advice that I could use to create this mapbasic
program.

I think that this question was asked recently on the list, but I did not see
a summary of the answers.

Any help that can be provided would be greatly appreciated.

Thanks,

Steve Warren
--
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 SUM lines to polylines question

2000-05-22 Thread Miguel Iturralde



Hello,
 
Thanks to Keith Campbell, Trey Pattillo, Martin Roundill, 
and Jim Spriggs for their input.
 
Basically, there were two suggestions:
 
1- The "Convert to polylines" option in the "Objects" 
menu.
 
2- Use the mapbasic window to run these commands: a) type 
"update selection set object = conterttopline(object)" after selecting all the lines; then 
b) update the table by typing "update mytable set 
object = conterttopline(object)".
 
I had already used the 
first alternative, but got these odd-shaped polygons when converting to 
regions; that was the reason I thought I was doing something wrong until I found 
the real problem.  The data contained very short lines and polylines 
(5 meters or less) representing piers, which in some cases were part of a 
shoreline, in others, they protruded out acting as "dangles".  Once I 
took the latter out (which was not too easy), I selected all the line segments 
(Str$(obj) = "line"), converted to polylines, and then to 
regions.
 
Thank you 
again.
 
Regards,
 
Miguel Iturralde[EMAIL PROTECTED]


MI Creating a MapInfo Editor in VB

2000-05-22 Thread Aine Deery

Hi there,

I am attempting to create an editor in VB to view/edit point data from
MapInfo. I want this editor to be an add-on to my core MapInfo application
as oppose to an integrated mapping solution. Any ideas? I would like to use
VB as I require some dialog controls that are not available in MapBasic. I
have a few questions that I would appreciate help on:

1. As part of the editor I wish to display the attribute information of the
currently selected row of the MapInfo .tab file (similar to the info tool)
what is the most efficient way to access this data from VB. As my first
attempt I havethe following (where TSG holds the tablename) This works but I
am wondering is there a better approach than calling Eval for each
individual attribute.
FrmSignEditor.Text1.Text = mi.Eval(TSG + ".SignGroupID")
FrmSignEditor.Text2.Text = mi.Eval(TSG + ".NoOfPosts")
FrmSignEditor.Text3.Text = mi.Eval(TSG + ".PostHeight")
FrmSignEditor.Text4.Text = mi.Eval(TSG + ".PostType")
FrmSignEditor.Text6.Text = mi.Eval(TSG + ".Terrain")
FrmSignEditor.Text7.Text = mi.Eval(TSG + ".Comment")

2. Any ideas on where I can locate some good VB/MapInfo Resources.

I am currently running VB5 and MapInfo Prof.5 and MapBasic5.  Any help is
greatly appreciated.

thank -you,

Aine Deery

--
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 Migratory Bird Routes

2000-05-22 Thread Lyn Du Chateau

Hi Natalie,

The Canadian Wildlife Service used our data for the study/tracking of Canadian
Wildlife and Birds.  I am attaching their story that we use our web site.  They
can be reached at 819-997-6120.
Hope this helps!

Lyn Du Chateau
ADC WorldMap

[EMAIL PROTECTED] wrote:

> I was wondering if anyone would happen to have or know where I could access
> coverage of migratory bird sites/routes for Canada. If you can help at
> all-much appreciated.
>
>   
>
>Part 1.2Type: application/ms-tnef
>Encoding: base64

Title: ADC WorldMap-Canadian Wildlife Service






    Coastal
  Bird Migration Studies 
  “The mapping is already laid out...that’s one of
  the attractions of ADC WorldMap,” says Dr. Guy Morrison,
  research scientist studying shorebirds with the Canadian Wildlife
  Service. “It eliminates the very long and tedious business
  of drawing the base maps, so we can concentrate on managing the
  bird data.”
  Dr. Morrison and his associates study bird distribution in
  North and South America and in the Arctic. They count shorebirds
  from airplanes. By conducting aerial surveys along coastlines
  from the Arctic to South America, he can identify the most important
  habitats used by the birds during their migration. His principal
  focus is on shorebirds (sandpipers, plovers, etc.), though other
  groups such as wading birds (egrets, bitterns, etc.) and waterfowl
  (ducks, geese, etc.) are also counted.
  “We plot the data (from the bird census) right on the
  base maps,” says Dr. Morrison. By studying plot patterns
  on the maps, his agency provides information for conservation
  planning. This work, in fact, led to a major conservation initiative
  known as the Western Hemisphere Shorebird Reserve Network.
  Dr. Morrison appreciates MapInfo’s plotting capabilities,
  which make his job easier. He also values the layering functions
  of MapInfo. “There’s an awful lot of detail in ADC
  WorldMap, so the ability to turn information on or off is quite
  handy,” asserts Dr. Morrison. “It’s nice to have
  maps with detailed coastlines because it improves the accuracy
  of our studies.”
  Christine Eberl, migratory birds technician, works with Dr.
  Morrison at the National Wildlife Research Center. Her responsibilities
  include plotting the bird data onto ADC WorldMap. She likes MapInfo’s
  ease of use. “Now that I’m on MapInfo, things are progressing
  a lot better,” she declares. She would like to see a greater
  level of topographical detail in the Arctic region, but is impressed
  with the general level of detail she finds in ADC WorldMap.
  In addition to the major “atlas” projects mapping
  bird distribution, Dr. Morrison routinely uses ADC WorldMap and
  MapInfo to produce maps and figures for a variety of publications.
  Other divisions of the Canadian Wildlife Service are using the
  system to plot Breeding Bird Survey routes. It was also recently
  used to produce a major Gazetteer summarizing environmental information
  on Canada’s east coast.



  



  






Helpful
FAQs




 
Success
Stories




 
Product
& Pricing




 
Product
Features






Home
Page
  


[EMAIL PROTECTED]
800-236-7973 or 920-733-6678
© 2000, American Digital
Cartography, Inc. All rights reserved.






MI Opening workspace

2000-05-22 Thread Ewa Plachta



Hi,
 
I cannot open the workspace for not known to me 
reasons. My previous experience with such problem was when I deleted some files 
by accident and during the process of calling the workspace up I had the 
messages asking me for the files which no longer physically existed - the 
process afterwards was straightforward: modifying the workspace as a text file. 

 
This time, however, MapInfo is not responding, 
trying to open the workspace for up to 1/2 hour (I did not have enough 
patience to wait longer) without any error message. I've checked the text file - 
everything looks fine. The last time I saved it was after a long 
query  trying to match addressees. Unfortunately, I did not save the query, 
but save the whole workspace expecting to be open as I Ieft it few minutes ago. 
The workspace is 16KB, but I have much bigger ones and I don't have any problem 
with them?
What's wrong?
 
 
Ewa

BEGIN:VCARD
VERSION:2.1
N:Plachta;Ewa
FN:Ewa Plachta
ORG:London Borough of Hackney;Estate Management and Development
TITLE:GIS Officer
TEL;WORK;VOICE:0181 356 2037
TEL;WORK;FAX:0181 356 2104
ADR;WORK;ENCODING=QUOTED-PRINTABLE:;Strategy and Commissioning Team;Christopher Addison House=0D=0A72 Wilton Wa=
y;London;;E8  1BJ;United Kingdom
LABEL;WORK;ENCODING=QUOTED-PRINTABLE:Strategy and Commissioning Team=0D=0AChristopher Addison House=0D=0A72 Wilto=
n Way=0D=0ALondon E8  1BJ=0D=0AUnited Kingdom
EMAIL;PREF;INTERNET:[EMAIL PROTECTED]
REV:2522T122920Z
END:VCARD



RE: MI point to polygon conversion

2000-05-22 Thread Ken Fioretti

Use the Buffer command on the Objects menu

> --
> From: Sean Holcomb[SMTP:[EMAIL PROTECTED]]
> Sent: Friday, May 19, 2000 3:55 PM
> To:   [EMAIL PROTECTED]
> Subject:  MI point to polygon conversion
> 
> I misplaced the command that can be entered into the mb window to
> acheive the following. Can someone please help?
> 
> Convert a file of points to a file of circular polygons with a
> specified radius.  
> 
> Thanks, Sean
> 
> __
> Do You Yahoo!?
> Send instant messages & get email alerts with Yahoo! Messenger.
> http://im.yahoo.com/
> --
> 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 Vertical Mapper question

2000-05-22 Thread Simon W Fox

Hello

Does anybody know whether or not it is possible to change the way that the
Create Regions from Points(Voronoi) option works within Vertical Mapper?

I want to be able to create weighted polygons dependent on points elevations
stored within the point table. For example, if two adjacent point are of two
different elevations, I would like to draw the polygon between the two at a
different distance to the default of the midpoint, so as to create smaller
polygons around the points of greatest elevations.

I hope you can make some sense of this, if you have further questions please
get in touch.

Cheers

Simon


--
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 5.5, support for ODBC 3.0 datasources ?!, SQLSetConnectAttr(SQL_ATTR_ACCESS_MODE) gives error

2000-05-22 Thread John Valore

Hi, 

I have experienced a problem connecting MI 5.5  with an ODBC 3.0 complient
database, Metrica NPR. 

An ODBC trace seems to narrow the problem to a specific request :
SQLSetConnectAttr (SQL_ATTR_ACCESS_MODE), which does not seem to work with
an 3.0 complient ODBC datasource. Accordingly to documentation on Microsoft
homepage (http://msdn.microsoft.com/libary/psdk/dasdk/odch4zn6.htm), this
kind of request has been deprecated in ODBC 3.0, whereas it was ok in ODBC
2.X applications. 

I have been able to connect to my ODBC 3.0 datasource, using lowlevel
MapBasic calls, but it appears that the standard builtin DBMS support in MI
5.5 (File- Open DBMS table) only works with ODBC 2.X datasources. 

In the release notes to MI 4.12 there is a statement that ODBC 3 file
datasources do not work, but I have not been able to find any other notes on
this issue in regards in to MI 5.X or 6.0. 

Info : using international (danish) MI 5.5 with patch 5.5.0.26  on NT 4.0
with SP5

Any help/pointers/info about this issues will be appreciated. Thanks in
advance. 

Best regards

John Valore, GIS coordinator, [EMAIL PROTECTED]
Tele Danmark, NetMobile, NMSM
Denmark


--
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 Geocoding Tools?

2000-05-22 Thread Niermann, Till, MTC-DTM, NI

Hi, Listers!

Anyone know of a good geocoding tool that works with SpatialWare? It should
be able to take German-style addresses and run on Oracle based GDF data.
Would appreciate any statements on experiences, performance, pitfalls, and
the like.
TIA - will summarize.

Till


Till Niermann
Mannesmann TeleCommerce GmbH
DTM - Mobile Services
Niederkasseler Lohweg 20
D-40547 Duesseldorf
Germany
Tel. +49 211 5368 - 648
Fax +49 211 5368 - 334
mailto:[EMAIL PROTECTED]
http://www.passo.de



--
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 DXF import and local grid

2000-05-22 Thread Keith Campbell

John,

The DXF attributes should be converted into .TAB file fields if you 
ticked the 'Preserve Attribute Data' option in the MapInfo 'DXF 
Import Information' dialog. There can be no link to the DXF file.

If you did this and the data is still not translating then it may be 
that the data in the DXF file, assuming it was created by AutoCAD, 
probably isn't attribute data. As you may be aware, tabular data in 
AutoCAD can be attached to graphical objects by a number of methods. 
The simplest and oldest method being the use of Block Attributes (a 
block is a collection of graphical objects, an attribute is the 
textural data). But there are other methods, EED (Extended Entity 
Data), Object Data Tables, and links to external databases. As far as 
I'm aware, MapInfo will only read Block Attributes from a DXF file, 
which is fairly limiting. I could be wrong, as I've not tested this, 
but the terminology used suggests I'm correct. I'm not sure how the 
Universal Translator copes with tabular data in DXF files.

So it may not be a straight forward process translating the data you 
want.

Keith

> From:  "John Elliot" <[EMAIL PROTECTED]>
> To:<[EMAIL PROTECTED]>
> Subject:   MI DXF import and local grid
> Date:  Sun, 21 May 2000 23:07:12 +1000

> I am trying to edit data which has been imported from a DXF file which
> comprises topographic contours, streams, and cultural data (buildings, roads
> etc)
> I have imported the DXF file with attributes and with a different table for
> each layer.  After importing I now have the large DXF file and each MapInfo
> table has a .DAT, .ID, .MAP, and .TAB file.  The DXF data has used the
> Australian Map Grid and this has been correctly retained after importation.
> However I wish to use a local non-earth grid to record geological/mine data
> and I have a spreadsheet which will convert Australian Map Grid coordinates
> to the local grid coordinates.
> 
> My problem is that when I open in a browser window any of the TAB files,
> created by importation from the DXF file, they only show an ID column and no
> other data is displayed.  Is all the data held in the original DXF file and
> a link maintained with the MapInfo tables?  Is it possible, without writing
> code, to convert the data to the the local grid coordinates?
> 
> Thanks for any help,
> 
> John Elliot
> Bathurst, NSW 2795, Australia
> 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]
> 
Keith Campbell
GIS Consultant
W S Atkins Consultants Ltd
UK
--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]