RE: MI-L When 12 = 11 ( Error maybe in mapbasic/mapinfo)

2005-01-17 Thread Warren Vick, Europa Technologies Ltd.
Hello Paul,

As Uffe has pointed out, the problem is with floating point numbers not
representing the results of your calculation exactly. If you enter the
following in the MapBasic window, it will demonstrate what's happening:

print format$((145.2-fix(145.2))*60, "0.000")

Produces:
11.999318

So, that last fix() rounds it down to 11. My advice it to leave it out.

Regards,
Warren Vick
Europa Technologies Ltd.
http://www.europa-tech.com

-Original Message-
From: Uffe Kousgaard [mailto:[EMAIL PROTECTED] 
Sent: 18 January 2005 07:26
To: Mapinfo-L
Subject: Re: MI-L When 12 = 11 ( Error maybe in mapbasic/mapinfo)


Welcome to the world of floating point math !

Floating point numbers are usually expressed as binary numbers internally,
which are not always exact. In this case 0.2 may be stored as 0.199.
Multiply that with 60 and you get something a bit smaller than 12. Use the
fix funtion and you get 11.

Similarly 145.2 - 145 <> 0.2, when using floating point numbers. So you mat
get the correct result using straight 0.2, but not using 145.2 - 145.

Here is an explanation (Delphi based, but same principle):
http://www.guidogybels.net/index.html?floats.html

Kind regards

Uffe Kousgaard
www.routeware.dk


- Original Message - 
From: "Paul Smith" <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, January 18, 2005 8:08 AM
Subject: MI-L When 12 = 11 ( Error maybe in mapbasic/mapinfo)


Hi List,

I have been working on some of my own tools and in a equation working with
Lat's and Long's I have found something odd.

What I was trying to do was take a float and give the result of the float
without the preceding integer ie. 145.2   =  0.2  (Remove the 145) Then
multiply the result by 60

ie. 0.2 x 60 = 12


But wait fo it: In mapbasic 12 = 11

Yes you all think I am crazy but here is my proof.

My equation is:
print fix((abs(fltvariable)-fix(abs(fltvariable)))*60)

subtituting fltvariable for 145.2 (makes not different if you use any other
number as long as it has 0.2 as the decimal)

Type this equation into the mapbasic window and even try them on paper
yourself.

print fix((abs(145.2)-fix(abs(145.2)))*60)

Working through the equation we would have

print fix((abs(145.2)-fix(abs(145.2)))*60) = 11   ?
print fix((145.2-fix(145.2))*60)   = 11?
print fix((145.2-145)*60)   = 11?
print fix(0.2*60)   = 12
Correct
print fix(12) = 12
Correct

The answer should be 12 but mapbasic is giving 11 as the result for the
first 3 equations.

It this a bug that should be fixed or been fixed?

Paul Smith


-
List hosting provided by Directions Magazine | www.directionsmag.com | To
unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14895




-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14898



MI-L Just to save some time... Let me ask if somebody has ever made a tool like this

2005-01-17 Thread Rienks, Doekele








Hi great MapBasic wizards,

 

Before I start writing a mapbasic tool myself, in the short
time I have for a certain task, let me first ask if maybe somebody in this group
has ever made a similar tool I’m now looking for. The following is the
case:

 

I have one table (Call it table A) with point-numbers (appr
3200 points) and 6 tables (call them A1 ….  A6) with each 3200 areas
corresponding with the point-numbers in the first table. So each point has 6
corresponding areas. What I’m looking for is a tool, that let’s me
select a point in the first table, and than shows me the corresponding area A1,
a second click on the point shows me area A2, another click on the point shows
me A3.. etc. 

 

I hope the challenge I’m facing is clear… And
hopefully somebody out there on the great MI list can help me out, and save me
from (again) working overtime in the coming days.

 

With Regards / Met vriendelijke groet,

 

Doekele Rienks

GeoMarketing Associate

 

Groenhovenstraat 2

2596 HT Den Haag 

Tel: (+31)(0)6-28022411

E-mail: [EMAIL PROTECTED]

 

 



===De informatie opgenomen in dit bericht kan vertrouwelijk zijn en is alleen bestemd voor de geadresseerde. Indien u dit bericht onterecht ontvangt, wordt u verzocht de inhoud niet te gebruiken en de afzender direct te informeren door het bericht te retourneren. Hoewel Orange maatregelen heeft genomen om virussen in deze email of attachments te voorkomen, dient u ook zelf na te gaan of virussen aanwezig zijn aangezien Orange niet aansprakelijk is voor computervirussen die veroorzaakt zijn door deze email.The information contained in this message may be confidential and is intended to be only for the addressee. Should you receive this message unintentionally, please do not use the contents herein and notify the sender immediately by return e-mail. Although Orange has taken steps to ensure that this email and attachments are free from any virus, you do need to verify the possibility of their existence as Orange can take no responsibility for any computer virus which might be transferred by way of this email.===




Re: MI-L MapInfo v7.5 & MapBasic v7.5 Compatability

2005-01-17 Thread Uffe Kousgaard
Hi,

I couldn't install MapInfo 6.5-7.8 at all on window 2003 server.
However, with version 6.0 it went all right (different installer).
Others have reported to have been more successful.

Kind regards

Uffe Kousgaard
www.routeware.dk


- Original Message - 
From: <[EMAIL PROTECTED]>
To: 
Sent: Monday, January 17, 2005 11:11 PM
Subject: MI-L MapInfo v7.5 & MapBasic v7.5 Compatability


Group,

Have any of you installed MapInfo v7.5 & MapBasic v7.5 on a Windows 2003
Server and had any problems?  We have been informed that
MapInfo-Thompson
does not yet support Windows 2003.



Philip Lesnik
Research Systems Analyst, Market Research
General Growth Properties, Inc.
110 N. Wacker Drive   BSC 3-13
Chicago, IL  60606
312-960-2998
312-960-5519 (fax)
[EMAIL PROTECTED]



-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14896



Re: MI-L When 12 = 11 ( Error maybe in mapbasic/mapinfo)

2005-01-17 Thread Uffe Kousgaard
Welcome to the world of floating point math !

Floating point numbers are usually expressed as binary numbers
internally, which are not always exact. In this case 0.2 may be stored
as 0.199. Multiply that with 60 and you get something a bit smaller
than 12. Use the fix funtion and you get 11.

Similarly 145.2 - 145 <> 0.2, when using floating point numbers. So you
mat get the correct result using straight 0.2, but not using 145.2 -
145.

Here is an explanation (Delphi based, but same principle):
http://www.guidogybels.net/index.html?floats.html

Kind regards

Uffe Kousgaard
www.routeware.dk


- Original Message - 
From: "Paul Smith" <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, January 18, 2005 8:08 AM
Subject: MI-L When 12 = 11 ( Error maybe in mapbasic/mapinfo)


Hi List,

I have been working on some of my own tools and in a equation working
with
Lat's and Long's I have found something odd.

What I was trying to do was take a float and give the result of the
float
without the preceding integer ie. 145.2   =  0.2  (Remove the 145) Then
multiply the result by 60

ie. 0.2 x 60 = 12


But wait fo it: In mapbasic 12 = 11

Yes you all think I am crazy but here is my proof.

My equation is:
print fix((abs(fltvariable)-fix(abs(fltvariable)))*60)

subtituting fltvariable for 145.2 (makes not different if you use any
other
number as long as it has 0.2 as the decimal)

Type this equation into the mapbasic window and even try them on paper
yourself.

print fix((abs(145.2)-fix(abs(145.2)))*60)

Working through the equation we would have

print fix((abs(145.2)-fix(abs(145.2)))*60) = 11   ?
print fix((145.2-fix(145.2))*60)   = 11?
print fix((145.2-145)*60)   = 11?
print fix(0.2*60)   = 12
Correct
print fix(12) = 12
Correct

The answer should be 12 but mapbasic is giving 11 as the result for the
first 3 equations.

It this a bug that should be fixed or been fixed?

Paul Smith


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14895



MI-L When 12 = 11 ( Error maybe in mapbasic/mapinfo)

2005-01-17 Thread Paul Smith
Hi List,
 
I have been working on some of my own tools and in a equation working with
Lat's and Long's I have found something odd.
 
What I was trying to do was take a float and give the result of the float
without the preceding integer ie. 145.2   =  0.2  (Remove the 145) Then
multiply the result by 60
 
ie. 0.2 x 60 = 12
 
 
But wait fo it: In mapbasic 12 = 11
 
Yes you all think I am crazy but here is my proof.
 
My equation is:
print fix((abs(fltvariable)-fix(abs(fltvariable)))*60)
 
subtituting fltvariable for 145.2 (makes not different if you use any other
number as long as it has 0.2 as the decimal)
 
Type this equation into the mapbasic window and even try them on paper
yourself.
 
print fix((abs(145.2)-fix(abs(145.2)))*60)
 
Working through the equation we would have
 
print fix((abs(145.2)-fix(abs(145.2)))*60) = 11   ?
print fix((145.2-fix(145.2))*60)   = 11?
print fix((145.2-145)*60)   = 11?
print fix(0.2*60)   = 12   Correct
print fix(12) = 12   Correct
 
The answer should be 12 but mapbasic is giving 11 as the result for the
first 3 equations.
 
It this a bug that should be fixed or been fixed?
 
Paul Smith


MI-L MapInfo v7.5 & MapBasic v7.5 Compatability

2005-01-17 Thread Philip . Lesnik




Group,

Have any of you installed MapInfo v7.5 & MapBasic v7.5 on a Windows 2003
Server and had any problems?  We have been informed that MapInfo-Thompson
does not yet support Windows 2003.



Philip Lesnik
Research Systems Analyst, Market Research
General Growth Properties, Inc.
110 N. Wacker Drive   BSC 3-13
Chicago, IL  60606
312-960-2998
312-960-5519 (fax)
[EMAIL PROTECTED]




-
+++  Notice: This
e-mail including attachments) is covered by the Electronic Communications
Privacy Act, 18 U.S.C. §§ 2510-2521, is confidential and may be legally
privileged. If you are not the intended recipient, you are hereby notified
that any retention, dissemination, distribution, or copying of this
communication is strictly prohibited. Please reply to the sender that you
have received the message in error, then delete it. Thank you.
+++


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14893



Re: MI-L Projection Parameters for UTM 39 N-ED50Iran

2005-01-17 Thread Clifford J Mugnier




Alige,

>From European Datum 1950 (ED50) to WGS84 Datum, the TR8350.2 published
parameters for Iran are:

Delta a = -251
Delta f x 10^4 = -0.14192702
Delta X = -117, plus or minus 9 meters
Delta Y = -132, plus or minus 12 meters
Delta Z = -164, plus or minus 11 meters

and that solution is based on collocation at 27 points.

Some 35 years ago, I worked (in Washington, D.C.), with a fellow that had
participated in the classical triangulation of Iran.  He used to do WILD
T-4 astronomical observations from various locations in the mountains.  The
stories were vivid!

Clifford J. Mugnier
Chief of Geodesy and
Associate Director,
CENTER FOR GEOINFORMATICS
Department of Civil Engineering
CEBA 3223A
LOUISIANA STATE UNIVERSITY
Baton Rouge, LA  70803
Voice and Facsimile:  (225) 578-8536 [Academic]
Voice and Facsimile:  (225) 578-4474 [Research]
==
http://www.asprs.org/resources/GRIDS/
http://www.cee.lsu.edu/facultyStaff/mugnier/index.html
==





Dear All,

I need help to register 1:5 scaled scanned maps of Iran with
UTM-ED50(Iran) projection. I would be gratefull if anybody will help me to
find the related parameters.
Thanks in advance

alige




-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14892



Re: MI-L Packing A Table

2005-01-17 Thread Trey Pattillo
From my 13 years with MapInfo I have never done data or graphics alone 
[#1 and #2].
My thought would be that it would then wreck the ID link between the 
data and graphic rows.
I have always packed the the whole thing [#3]
I think I might have done that once but it would have been 12 1/2 yr ago

yes if you have deleted rows in your table and then create custom labels 
you labels with then be wrong.
RowID > Street Name
100 > Main St
101 > DELETED
102 > East St --- custom label here
103 > West St

AFTER PACKING
100 > Main St
101 > East St
102 > West St --- custom label still uses #102
Peter Horsbøll Møller wrote:
Hi Philip,
Good question !
My guess is that you will have some problems with your labels if you use either 
1 or 3. I'm not sure if option 2 will have any influence on the labels.
What these options mean is :
1. Pack Tabular data: Packing the DAT file
2. Pack Graphic data: Packing the MAP file
3. Pack both: ...
The problem with your labels is caused be the fact that packing a table might 
reorganize the reocrds and completely remove the deleted records. And costum 
labels are connected to the table thru the ROWID, which might be changed during 
the packing of the table
Peter Horsbøll Møller
GIS Developer
Geographical Information & IT
 
COWI A/S
Odensevej 95
DK-5260 Odense S.
Denmark
 
Tel	+45 6311 4900
Direct	+45 6311 4908
Mob	+45 5156 1045
Fax	+45 6311 4949
E-mail	[EMAIL PROTECTED]
http://www.cowi.dk/gis

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 17, 2005 11:06 PM
To: MapInfo-L@lists.directionsmag.com
Subject: MI-L Packing A Table

I understand that packing a table can corrupt custom labeling.  However, I see 
the options when packing a table appear,
1) Pack Tabular Data
2) Pack Graphic Data
3) Pack Both Types of Data
I can't find where it tells me what these 2 mean.  Does choosing either 
number 1 or 2 stop the label corruption?

Philip Lesnik
Research Systems Analyst, Market Research
General Growth Properties, Inc.
110 N. Wacker Drive   BSC 3-13
Chicago, IL  60606
312-960-2998
312-960-5519 (fax)
[EMAIL PROTECTED]


-
+++  Notice: This
e-mail including attachments) is covered by the Electronic Communications 
Privacy Act, 18 U.S.C. §§ 2510-2521, is confidential and may be legally 
privileged. If you are not the intended recipient, you are hereby notified that 
any retention, dissemination, distribution, or copying of this communication is 
strictly prohibited. Please reply to the sender that you have received the 
message in error, then delete it. Thank you.
+++
-
List hosting provided by Directions Magazine | www.directionsmag.com | To 
unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14888

-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14889


--
Trey Pattillo
[EMAIL PROTECTED]
www.wap3.com
N27.799013 W-97.665322
| If you receive an email that says something like
| 'Send this to everyone you know,'
| pretend you don't know me.
-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14891


Re: MI-L how to export or copy all content in message windows

2005-01-17 Thread Trey Pattillo
Since no one answered today I'll throw out what I have found.

can't be done

The "message" window is a bare-bones window frame that the text must be
directly printed too.  The WinAPI's only get to the window title unless
it is a "text box".  There is a possibility the window has a "scroll
box" that is printed directly to.

If you are building your own MB's, I have a Delphi DLL that has all
types of goodies in it that MB/MI don't offer, like HTML [connects to
internet also] with full tool bar control, a better MessageWindow that
is based on a RichEdit so you can have bold/colors/etc, many math
functions like XOR and parsing/calc a math string.

Anyone wanting to use it drop me a mail wap3 at wap3 dot com


GaoLang wrote:
> hi,
> 
>   
>   Does anyone know of how to export or copy all content in message windows to 
> a text file with mapbasic code?
> 
> Any advice is much appreciated!
> 
>   
> 
> GaoLang
> [EMAIL PROTECTED]
> 2005-01-16
> 
> 
> 
> -
> List hosting provided by Directions Magazine | www.directionsmag.com |
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> Message number: 14871
> 
> 
> 
> 

-- 
Trey Pattillo
[EMAIL PROTECTED]
www.wap3.com
N27.799013 W-97.665322

| If you receive an email that says something like
| 'Send this to everyone you know,'
| pretend you don't know me.


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14890



RE: MI-L Packing A Table

2005-01-17 Thread Peter Horsbøll Møller
Hi Philip,

Good question !

My guess is that you will have some problems with your labels if you use either 
1 or 3. I'm not sure if option 2 will have any influence on the labels.

What these options mean is :
1. Pack Tabular data: Packing the DAT file
2. Pack Graphic data: Packing the MAP file
3. Pack both: ...

The problem with your labels is caused be the fact that packing a table might 
reorganize the reocrds and completely remove the deleted records. And costum 
labels are connected to the table thru the ROWID, which might be changed during 
the packing of the table

Peter Horsbøll Møller
GIS Developer
Geographical Information & IT
 
COWI A/S
Odensevej 95
DK-5260 Odense S.
Denmark
 
Tel +45 6311 4900
Direct  +45 6311 4908
Mob +45 5156 1045
Fax +45 6311 4949
E-mail  [EMAIL PROTECTED]
http://www.cowi.dk/gis


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 17, 2005 11:06 PM
To: MapInfo-L@lists.directionsmag.com
Subject: MI-L Packing A Table

I understand that packing a table can corrupt custom labeling.  However, I see 
the options when packing a table appear,

1) Pack Tabular Data
2) Pack Graphic Data
3) Pack Both Types of Data


I can't find where it tells me what these 2 mean.  Does choosing either number 
1 or 2 stop the label corruption?


Philip Lesnik
Research Systems Analyst, Market Research
General Growth Properties, Inc.
110 N. Wacker Drive   BSC 3-13
Chicago, IL  60606
312-960-2998
312-960-5519 (fax)
[EMAIL PROTECTED]




-
+++  Notice: This
e-mail including attachments) is covered by the Electronic Communications 
Privacy Act, 18 U.S.C. §§ 2510-2521, is confidential and may be legally 
privileged. If you are not the intended recipient, you are hereby notified that 
any retention, dissemination, distribution, or copying of this communication is 
strictly prohibited. Please reply to the sender that you have received the 
message in error, then delete it. Thank you.
+++


-
List hosting provided by Directions Magazine | www.directionsmag.com | To 
unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14888



-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14889



MI-L Packing A Table

2005-01-17 Thread Philip . Lesnik




I understand that packing a table can corrupt custom labeling.  However, I
see the options when packing a table appear,

1) Pack Tabular Data
2) Pack Graphic Data
3) Pack Both Types of Data


I can't find where it tells me what these 2 mean.  Does choosing either
number 1 or 2 stop the label corruption?





Philip Lesnik
Research Systems Analyst, Market Research
General Growth Properties, Inc.
110 N. Wacker Drive   BSC 3-13
Chicago, IL  60606
312-960-2998
312-960-5519 (fax)
[EMAIL PROTECTED]




-
+++  Notice: This
e-mail including attachments) is covered by the Electronic Communications
Privacy Act, 18 U.S.C. §§ 2510-2521, is confidential and may be legally
privileged. If you are not the intended recipient, you are hereby notified
that any retention, dissemination, distribution, or copying of this
communication is strictly prohibited. Please reply to the sender that you
have received the message in error, then delete it. Thank you.
+++


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14888



Re: MI-L Rasters & Layers.

2005-01-17 Thread Bill Thoen
On Mon, 13 Dec 2004, Sherwood Botsford wrote:

> Add a second layer to it.
> Check display:  Ah ha!  This one inherits the zoom status of the first one.
> Didn't see that on my tour through the unabridged manual.

Raster layers are special and have their own weird behaviors. By default 
all raster layers open with pre-set zoom display turned on. You'll have to 
turn it on or be zoomed in to the right level or any new raster layer 
added will not be visible.

Also, the FIRST raster layer open in a map controls the coordinate system. 
This isn't a problem when you are displaying several raster images that 
use the same system, but if you try to display two raster images that use 
different systems, it won't work well. And worse, it *may* look okay, but 
if you then try to lay a vector layer on top of them, you may see your 
vectors warped drmatically.

> Right click on map window.  View all Layers.  Nothing.
> View all layers.  Select X1_Y1.  See it.
> View all layers.  Select X1_Y2.  See it.
> View all layers. Select view all layers. Disappears.
> View one image.  Zoom one.
> View other image. Disappears.
> 
> Bring up layer control.  Both images have display zoom off.
> Both check marks are black not magenta.

Check your coordinates. (Click 'Zoom' in the lower left corner of the 
status bar and choose 'Cursor Location') Are the two raster images 
actually anywhere near each other? Are your maps correctly registered? 
(i.e. are the corners of your map where you think they should be?)

- Bill Thoen



-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14887



MI-L Rasters & Layers.

2005-01-17 Thread Sherwood Botsford
Ok, I'm missing something:
Before I started, I renamed my images X1_Y1.jpg, X1_Y2.jpg (They came 
with
X-Y. Which in UTM makes for long filenames.)

Open all of them.  Register to my local UTM projection and datum.
This creates a .tab file for each.  No hassle.
Open a new map window.  Add X1_Y1 to it.
Turn OFF zoom visibility control.
Add a second layer to it.
Check display:  Ah ha!  This one inherits the zoom status of the first one.
Didn't see that on my tour through the unabridged manual.
Say Ok.
First image is visible. Second is not.
I expected to see a taller image. (X1_Y2 is the image north of X1_Y1)
Right click on map window.  View all Layers.  Nothing.
View all layers.  Select X1_Y1.  See it.
View all layers.  Select X1_Y2.  See it.
View all layers. Select view all layers. Disappears.
View one image.  Zoom one.
View other image. Disappears.
Bring up layer control.  Both images have display zoom off.
Both check marks are black not magenta.
I think I'm missing some concept about how layers work.
--
Sherwood Botsford
-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14886


MI-L Projection Parameters for UTM 39 N-ED50Iran

2005-01-17 Thread ali.gemalmaz
Dear All,

I need help to register 1:5 scaled scanned maps of Iran with
UTM-ED50(Iran) projection. I would be gratefull if anybody will help me
to find the related parameters.
Thanks in advance
alige 




Bu elektronik posta ve onunla iletilen butun dosyalar sadece gondericisi 
tarafindan almasi amaclanan yetkili gercek ya da tuzel kisinin kullanimi 
icindir.  Eger soz konusu yetkili alici degilseniz bu elektronik postanin 
icerigini aciklamaniz, kopyalamaniz, yonlendirmeniz ve kullanmaniz kesinlikle 
yasaktir ve bu elektronik postayi derhal silmeniz gerekmektedir.
TURKCELL bu mesajin icerdigi bilgilerin dogrulugu veya eksiksiz oldugu 
konusunda herhangi bir garanti vermemektedir.  Bu nedenle bu bilgilerin ne 
sekilde olursa olsun iceriginden, iletilmesinden, alinmasindan ve 
saklanmasindan sorumlu degildir. Bu mesajdaki gorusler yalnizca gonderen kisiye 
aittir ve TURKCELLin goruslerini yansitmayabilir
Bu e-posta bilinen butun bilgisayar viruslerine karsi taranmistir.

This e-mail and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed. If 
you are not the intended recipient you are hereby notified that any 
dissemination, forwarding, copying or use of any of the information is strictly 
prohibited, and the e-mail should immediately be deleted.
TURKCELL makes no warranty as to the accuracy or completeness of any 
information contained in this message and hereby excludes any liability of any 
kind for the information contained therein or for the information transmission, 
reception, storage or use of such in any way whatsoever.  The opinions 
expressed in this message belong to sender alone and may not necessarily 
reflect the opinions of TURKCELL.
This e-mail has been scanned for all known computer viruses.



-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14885



MI-L MapInfo and Oracle

2005-01-17 Thread jquispe
Friends  
  
I work with MapInfo 5.5 and Oracle 9i. All my graphic information is in native
files of MapInfo, I wanted help regarding the procedures to be able to overturn
this information in Oracle, also like I can consent this information from
MapInfo. That is to say, I need help on behalf of you of the handling of the
information of MapInfo in oracle, so much in graphic information, access,
modifications of the same one, programming, etc.  
  
I say goodbye expecting their prompt help

Ing Javier Quispe
Oficine of Informatic




.::.
Proyecto Especial Titulación de Tierras y Catastro Rural - PETT
Ministerio de Agricultura
Lima -Perú
.::.

-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14884



Re: MI-L Date Format in Labels

2005-01-17 Thread Taylor, Zara
Thanks Marcus,

I've set my Date format in Control Panel/Regional Settings to 17-Jan-2005 
format.  

However, even using FormatDate$(OPEN_DATE) my labels still look like this 
01/03/1987 and not like this 01-Mar-1987 

Any ideas?

Zara Taylor
Information Systems Analyst
Customer Insight Unit
* 181752
* 020 8718 1752
* [EMAIL PROTECTED]


-Original Message-
From: Markus Lindner [mailto:[EMAIL PROTECTED] 
Sent: 17 January 2005 14:26
To: Taylor, Zara
Cc: MapInfo-L@lists.directionsmag.com
Subject: Re: MI-L Date Format in Labels


Try the FormatDate$ Function,
it prints the date according to your system environment, look at the 
windows control panel for your own local settings

Regards

Markus

Taylor, Zara wrote:

>Dear List,
>
>I have a mappable table of stores with an OPEN_DATE field.
>
>The OPEN_DATE field is in the format 01/03/1987 - I want to label my 
>stores with the date they opened, but I want the label to be in the 
>format March 1, 1987.
>
>How can I do this without having to making extra tables or extra 
>columns in my table?  Is there a function that I can include in my 
>label expression?
>
>Many thanks
>
>Zara Taylor
>
>
>
>
>
>---
>
>==
>Registered Office:
>Marks and Spencer plc
>Waterside House
>35 North Wharf Road
>London
>W2 1NW
>
>Registered No. 214436 in England and Wales.
>
>Telephone (020) 7935 4422
>Facsimile (020) 7487 2670
>
><>
>
>Please note that electronic mail may be monitored.
>
>This e-mail is confidential. If you received it by mistake, please let 
>us know and then delete it from your system; you should not copy, 
>disclose, or distribute its contents to anyone nor act in reliance on 
>this e-mail, as this is prohibited and may be unlawful.
>
>  
>

-- 
CISS TDI GmbH 


Markus Lindner CISS TDI GmbH
Tel. +49 2642 97 80 0  Barbarossastraße 36
Fax. +49 2642 97 80 10 53489 Sinzig, Germany
mailto:[EMAIL PROTECTED]   http://www.ciss.de/
Sitz der Gesellschaft: Sinzig  AG Andernach, HR-Nummer 3357
Geschäftsführer: Dipl.-Math. Joachim Figura, Dipl.-Inform. Berthold Bärk



---

==
Registered Office:
Marks and Spencer plc
Waterside House
35 North Wharf Road
London
W2 1NW

Registered No. 214436 in England and Wales.

Telephone (020) 7935 4422
Facsimile (020) 7487 2670

<>

Please note that electronic mail may be monitored.

This e-mail is confidential. If you received it by mistake, please let us know 
and then delete it from your system; you should not copy, disclose, or 
distribute its contents to anyone nor act in reliance on this e-mail, as this 
is prohibited and may be unlawful.


MI-L Upgrading from 7 to 7.8

2005-01-17 Thread Terry McDonnell
Hi GISers
 
Anybody know of any upgrade issues with MI apps and MB code, when going
from 7 to 7.8?  I'm hoping to avoid a load of re-working.
 
TIA
 
Terry McDonnell


Re: MI-L Routing with StreetPro and Chronovia

2005-01-17 Thread Uffe Kousgaard
Hi Philippe,

"StreetPro Display" has so-called chained streets, which means the
entire street with the same name is 1 object in your map. In the full
version (with addresses) the streets split at every intersection, making
it possible to make turns etc.

See description here:
http://extranet.mapinfo.com/products/Overview.cfm?productid=808

Our RouteFinder software also don't like the "StreetPro Display" data
for routing (at least not out-of-the-box).

Kind regards

Uffe Kousgaard
www.routeware.dk


- Original Message - 
From: "Solomon Côté, Philippe" <[EMAIL PROTECTED]>
To: 
Sent: Monday, January 17, 2005 3:33 PM
Subject: MI-L Routing with StreetPro and Chronovia


Hi Listers,

I'm running a routing application nammed « Chronovia » from
Magellan-Ingénérie (France).

I have two road network, one based on StreetPro v.7.2 with addresses an
the other one based on StreetPro display (without addresses)

When I ask for a mileage chart between customers, I get results only
with the network with addresses.

As far as I know, Choronovia doesn't use the fields related to the
addresses while modeling the network.

Any ideas on differences between the two road network that can cause
Choronovia difficulties to give results with StreetPro display (without
addresses) ?

Thanks
Kind regards,
__

Philippe Solomon Côté

KOREM Inc.
www.korem.com


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14881



MI-L Routing with StreetPro and Chronovia

2005-01-17 Thread Solomon Côté, Philippe
Hi Listers,

 

I'm running a routing application nammed « Chronovia » from Magellan-Ingénérie 
(France).

 

I have two road network, one based on StreetPro v.7.2 with addresses an the 
other one based on StreetPro display (without addresses)

When I ask for a mileage chart between customers, I get results only with the 
network with addresses.

As far as I know, Choronovia doesn't use the fields related to the addresses 
while modeling the network.

 

Any ideas on differences between the two road network that can cause Choronovia 
difficulties to give results with StreetPro display (without addresses) ?

 

Thanks 

Kind regards,

__

 


Philippe Solomon Côté


Consultant

[EMAIL PROTECTED]  

 

KOREM Inc.

www.korem.com  

 

MapInfo Québec, operated by KOREM Inc.

www.mapinfo.qc.ca  

__

 

680, Charest East Blvd., suite 120

Québec (Québec)  G1K 3J4

Canada

Tel: (418) 647-1555

Fax: (418) 647-1666

Toll free: 1 888 440-1MAP

Office Locator: Québec 

   Montréal 

 

__

 



Re: MI-L Date Format in Labels

2005-01-17 Thread Markus Lindner
Try the FormatDate$ Function,
it prints the date according to your system environment, look at the 
windows control panel for your own local settings

Regards
Markus
Taylor, Zara wrote:
Dear List,
I have a mappable table of stores with an OPEN_DATE field.
The OPEN_DATE field is in the format 01/03/1987 - I want to label my
stores with the date they opened, but I want the label to be in the
format March 1, 1987.
How can I do this without having to making extra tables or extra columns
in my table?  Is there a function that I can include in my label
expression? 

Many thanks
Zara Taylor


---
==
Registered Office:
Marks and Spencer plc
Waterside House
35 North Wharf Road
London
W2 1NW
Registered No. 214436 in England and Wales.
Telephone (020) 7935 4422
Facsimile (020) 7487 2670
<>
Please note that electronic mail may be monitored.
This e-mail is confidential. If you received it by mistake, please let us know 
and then delete it from your system; you should not copy, disclose, or 
distribute its contents to anyone nor act in reliance on this e-mail, as this 
is prohibited and may be unlawful.
 

--
CISS TDI GmbH 
Markus Lindner CISS TDI GmbH
Tel. +49 2642 97 80 0  Barbarossastraße 36
Fax. +49 2642 97 80 10 53489 Sinzig, Germany
mailto:[EMAIL PROTECTED]   http://www.ciss.de/
Sitz der Gesellschaft: Sinzig  AG Andernach, HR-Nummer 3357
Geschäftsführer: Dipl.-Math. Joachim Figura, Dipl.-Inform. Berthold Bärk
-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14879


MI-L Date Format in Labels

2005-01-17 Thread Taylor, Zara
Dear List,

I have a mappable table of stores with an OPEN_DATE field.

The OPEN_DATE field is in the format 01/03/1987 - I want to label my
stores with the date they opened, but I want the label to be in the
format March 1, 1987.

How can I do this without having to making extra tables or extra columns
in my table?  Is there a function that I can include in my label
expression? 

Many thanks

Zara Taylor





---

==
Registered Office:
Marks and Spencer plc
Waterside House
35 North Wharf Road
London
W2 1NW

Registered No. 214436 in England and Wales.

Telephone (020) 7935 4422
Facsimile (020) 7487 2670

<>

Please note that electronic mail may be monitored.

This e-mail is confidential. If you received it by mistake, please let us know 
and then delete it from your system; you should not copy, disclose, or 
distribute its contents to anyone nor act in reliance on this e-mail, as this 
is prohibited and may be unlawful.


RE: MI-L Mapbasic: Creating polylines with multiple sections

2005-01-17 Thread David Baker
On 17 Jan 2005 at 10:37, Peter Horsbøll Møller <[EMAIL PROTECTED]> wrote:

> If you look at the syntax for create Polyline, I think you need to specify
> how many segments it should contain:

> But, I think this was added in a later version of MapInfo, and it is not
> available in MB 4.5 So I guess you have to create only single segment
> polylines, and then combine them everytime you shift to next segment

Thanks Peter (and Robert). You are correct that this parameter isn't in 4.5, so 
your 
lateral thinking got me out of trouble.

>   ElseIf nNumSegment = 1 then
>oMultiSegment = oSingleSegment
>   else
>oMultiSegment = Combine(oMultiSegment, oSingleSegment)
>   End if

This idea works nicely.

Excellent - I can hang onto my MapBasic 4.5 a little bit longer. :-)

Dave

-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14877



MI-L MapInfo Professional and terminal Server

2005-01-17 Thread Michel Van Asten
Hi,

Does anybody have some experience using MIPRO and Terminal Server ?
1) Licensing ?
2) Issue ?

Regards, 

Michel Van Asten
Projections SA
Responsable de projet
Tel+32 (0)81 713243
Email [EMAIL PROTECTED]


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14876



MI-L Oracle spatial - Text fields

2005-01-17 Thread Juan Luis Cardoso
Hi

We are working with Oracle spatial (9i) and Mapinfo (7.8)

We have in Oracle all the graphycal information, except text fields tables
that we have in native Mapinfo tables.

We want to integrate the text fields into the database.

So we download the Mapinfo Interoperability kit from the Mapinfo website,
thinking that that is the way to do it.
but we don´t find how to do it.

Any help? any example?
Thanks

Juan Luis Cardoso Santos
SGSmap Ingenieros Consultores
 Camino de Portuetxe, 83 - Oficinas 5, 6
 20018 - San Sebastian - España
 Tel (+34) 943 31 74 90
 Fax (+34) 943 31 70 63
 http://www.sgsmap.com/
 [EMAIL PROTECTED]


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14875



RE: MI-L Mapbasic: Creating polylines with multiple sections

2005-01-17 Thread Peter Horsbøll Møller
If you look at the syntax for create Polyline, I think you need to specify how 
many segments it should contain:

Create Pline 
[  Into  { Window   window_id  |  Variable   var_name } ] 
[ Multiple num_sections ]
num_points
 ( x1,  y1)  ( x2,  y2)  [ ... ]

If is the Multiple num_sections I'm refering to.

But, I think this was added in a later version of MapInfo, and it is not 
available in MB 4.5
So I guess you have to create only single segment polylines, and then combine 
them everytime you shift to next segment

Something like this:

Do While (...)
'**Here you read the segment#, point# and the coordinates

If nCurSegm <> nNextSegm Then
If nNumSegment = 0 Then

ElseIf nNumSegment = 1 then
oMultiSegment = oSingleSegment
else
oMultiSegment = Combine(oMultiSegment, oSingleSegment)
End if

Create PLine Into Variable TempPolyLine 0   

nNumSegment = nNumSegment + 1
End if

'**Here you add the nodes
Loop

Peter Horsbøll Møller
GIS Developer
Geographical Information & IT
 
COWI A/S
Odensevej 95
DK-5260 Odense S.
Denmark
 
Tel +45 6311 4900
Direct  +45 6311 4908
Mob +45 5156 1045
Fax +45 6311 4949
E-mail  [EMAIL PROTECTED]
http://www.cowi.dk/gis


-Original Message-
From: David Baker [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 17, 2005 9:45 AM
To: MapInfo-L@lists.directionsmag.com
Subject: MI-L Mapbasic: Creating polylines with multiple sections


I have a MapBasic 4.5 command:

Alter Object TempPolyLine Node Add Position PolylineSections, 
ObjectInfo(TempPolyLine, OBJ_INFO_NPNTS) + 1 (PointLong, PointLat)

TempPolyLine is my polyline which was originally created with:

Create Pline Into Variable TempPolyLine 0

PolylineSections is a "SmallInt value (one or larger), identifying one section 
from a 
polyline object".

ObjectInfo(TempPolyLine, OBJ_INFO_NPNTS) + 1 is of course the number of 
existing nodes + 1, to refer to my new node number that I am about to create.

PointLat & PointLong are my Latitude & Longitude of the node I want to create.



I am reading in polylines from another file format (Garmin .mp "polish" 
format). These 
polylines have multiple sections, so I want to create the MapInfo polylines 
with the same 
multiple sections.

All works well while PolylineSections is 1, but as soon as I try to add the 
first node after 
changing PolylineSections to 2, I get a MapBasic error:

"Alter Object Node Add failure"

Am I trying to do this the wrong way? Can I just keep adding points & the new 
section 
will be created automatically, or am I missing some command to inform MapBasic 
that I 
am adding in a new section?

Thanks,

Dave




-
List hosting provided by Directions Magazine | www.directionsmag.com | To 
unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14872



-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14874



Re: MI-L Mapbasic: Creating polylines with multiple sections

2005-01-17 Thread Robert Crossley
Maybe the easiest way would be to create these segments as an array of  
separate polyline objects, and then combine them into one when you have  
finished.

r
On Mon, 17 Jan 2005 16:44:45 +0800, David Baker <[EMAIL PROTECTED]> wrote:
I have a MapBasic 4.5 command:
	Alter Object TempPolyLine Node Add Position PolylineSections,  
ObjectInfo(TempPolyLine, OBJ_INFO_NPNTS) + 1 (PointLong, PointLat)

TempPolyLine is my polyline which was originally created with:
Create Pline Into Variable TempPolyLine 0
PolylineSections is a "SmallInt value (one or larger), identifying one  
section from a
polyline object".

ObjectInfo(TempPolyLine, OBJ_INFO_NPNTS) + 1 is of course the number  
of
existing nodes + 1, to refer to my new node number that I am about to  
create.

PointLat & PointLong are my Latitude & Longitude of the node I want to  
create.


I am reading in polylines from another file format (Garmin .mp "polish"  
format). These
polylines have multiple sections, so I want to create the MapInfo  
polylines with the same
multiple sections.

All works well while PolylineSections is 1, but as soon as I try to add  
the first node after
changing PolylineSections to 2, I get a MapBasic error:

"Alter Object Node Add failure"
Am I trying to do this the wrong way? Can I just keep adding points &  
the new section
will be created automatically, or am I missing some command to inform  
MapBasic that I
am adding in a new section?

Thanks,
Dave

-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14872


--

Robert Crossley
Agtrix P/L
9 Short St
PO Box 63
New Brighton 2483
Far Southern Queensland
AUSTRALIA
153.549004 E 28.517344 S
P: 02 6680 1309
F: 02 6680 5214
M: 0419 718 642
E: [EMAIL PROTECTED]
W: www.agtrix.com
W: www.wotzhere.com
-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14873


MI-L Mapbasic: Creating polylines with multiple sections

2005-01-17 Thread David Baker
I have a MapBasic 4.5 command:

Alter Object TempPolyLine Node Add Position PolylineSections, 
ObjectInfo(TempPolyLine, OBJ_INFO_NPNTS) + 1 (PointLong, PointLat)

TempPolyLine is my polyline which was originally created with:

Create Pline Into Variable TempPolyLine 0

PolylineSections is a "SmallInt value (one or larger), identifying one section 
from a 
polyline object".

ObjectInfo(TempPolyLine, OBJ_INFO_NPNTS) + 1 is of course the number of 
existing nodes + 1, to refer to my new node number that I am about to create.

PointLat & PointLong are my Latitude & Longitude of the node I want to create.



I am reading in polylines from another file format (Garmin .mp "polish" 
format). These 
polylines have multiple sections, so I want to create the MapInfo polylines 
with the same 
multiple sections.

All works well while PolylineSections is 1, but as soon as I try to add the 
first node after 
changing PolylineSections to 2, I get a MapBasic error:

"Alter Object Node Add failure"

Am I trying to do this the wrong way? Can I just keep adding points & the new 
section 
will be created automatically, or am I missing some command to inform MapBasic 
that I 
am adding in a new section?

Thanks,

Dave




-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 14872