Re: MI-L e00 import woes

2004-08-29 Thread Michel Wurtz
use your favorite text editor to wipe out the sequence : e00 files are always pure ascii. You can retry the import after that : it should work. You may also save the XML text in some file and read it with IE, Mozilla or another XML capable browser... -- Michel

Re: MI-L ECW Crashes Mapinfo

2004-10-08 Thread Michel Wurtz
using big seamless layers). Maybe a problem in the image : did you try to open your ecw images with ERViewer ? -- Michel Wurtz DGA/SDSI/CERIT/DIG B.P. 68 - 31326 Castanet-Tolosan Cedex Tél. 05.61.28.92.92 - List hos

Re: MI-L Ang. RE: MI-L Alternative Text Editor to native MapBasic

2005-01-14 Thread Michel Wurtz
can use a "real" shell to do batch processing, like leaving the box converting to ecw some hundreds of tiff files during the Week-end, while creating the right tab files...). Save me from some boring hours :-) OK, time to go home... -- Michel Wurtz MAAP

Re: MI-L Differences between MapInfo and ArcView.

2005-02-17 Thread Michel Wurtz
combined to the ability (allways hoped, nnot yet seen) of MapInfo to run on Linux boxes (remember the time where MapInfo could run on a Unix workstation...), could give MapInfo some advantages on open source environments (ESRI did it : you have now a Linux SDK...) -- Michel Wurtz MAAPR/DGA

MI-L Side effect of april, 1st ?

2005-04-05 Thread Michel Wurtz
The patch description is not very informative... any idea ? :-) <http://extranet.mapinfo.com/smartupdate/html/mapbasic0.html> -- Michel Wurtz MAAPR/DGA/SDSI/CERIT/DIG - List hosting provided by Directions Ma

MI-L ECW shift with MapX

2005-05-16 Thread Michel Wurtz
behaviour ? And how to avoid it ? -- Michel Wurtz MAAPR/DGA/SDSI/CERIT/DIG - List hosting provided by Directions Magazine | www.directionsmag.com | To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: MI-L MapInfo hanging up

2003-08-29 Thread Michel Wurtz
orget to save all your data before :-) -- Michel Wurtz Board of Agriculture - France - List hosting provided by Directions Magazine | www.directionsmag.com | To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: MI-L using data arrays in MI

2003-09-10 Thread Michel Wurtz
sites (points) and export the points in ascii (x, y, z) tupples, understandable by MapInfo (you can also export it to an e00 file, which can be imported by MapInfo) -- Michel Wurtz - List hosting p

Re: MI-L GetLocalTime

2003-10-09 Thread Michel Wurtz
apBasic and source in VB where GetLocalTime works correctly If my memory is not too bad, VB Integers are 2 bytes long, but MB integers are 4 bytes long. Try using "Smallint" in place of "Integer" in your MapBasic Code.

Re: MI-L MapX raster drawing

2003-10-17 Thread Michel Wurtz
he same directory, keeping also the same name before the extension. - save the .tab files associated to the tiff images (one never knows...) - edit them to replace ".tif" by ".ecw" in the image file names Now you can test your mapX application since the seemless table points to the .

MI-L MapX: Datsets, fields and rowvalues

2003-10-20 Thread Michel Wurtz
empty or null depending the definition in the table... Any idea is welcome, as any better documentation than the MapX manual... Thanks for reading, -- Michel Wurtz MAAPAR/DGA/SDSI/CERIT/DIG - List hosting provided by D

Re: MI-L internal error 31109!

2003-10-23 Thread Michel Wurtz
so maybe the answer to your problem is also somewhere else ;-) -- Michel Wurtz MAAPAR/DGA/SDSI/CERIT/DIG - List hosting provided by Directions Magazine | www.directionsmag.com | To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

MI-L Custom symbol in a ttf font file

2003-11-12 Thread Michel Wurtz
s, or does MapInfo have a list of "authorised" fonts somewhere ? (or is the font list hard-coded ?) -- Michel Wurtz MAAPAR/DGA/SDSI/CERIT/DIG - List hosting provided by Directions Magazine | www.directionsmag.com | To

Re: MI-L E00 translation error: ETABFIL

2004-01-26 Thread Michel Wurtz
x27;s a text file). It must end by the two following lines : EOI EOS -- Michel Wurtz MAAPAR/DGA/SDSI/CERIT/DIG - List hosting provided by Directions Magazine | www.directionsmag.com | To unsubscribe, e-mail: [EMAIL PROTECTE

Re: MI-L UK OS MasterMap - Can't work with ESRI .shp files?

2004-02-06 Thread Michel Wurtz
pefile cannot transmit them directly (and most peoples forget to put a .prj file along with the shp, shx and dbx files), it is often difficult to use shapefile directly with other data, so it remains a complex, however incomplete exchange format, at

Re: MI-L MapInfo files on server

2004-02-09 Thread Michel Wurtz
ide and outside MapInfo instead of dealing with MapX on one side and MapBasic on the other side... -- Michel Wurtz MAAPAR/DGA/SDSI/CERIT/DIG - List hosting provided by Directions Magazine | www.directionsmag.com | To unsubscribe

Re: MI-L How to Search MapBasic Files Using XP's Bloody Stupid Search Assistant

2004-02-24 Thread Michel Wurtz
and in a shell script (a little tricky because you have to escape the insane backslash used as a directory separator). I used this to convert some hundreds of tiff files into ecw. It ran all the night without me to interact every 2 mn with the u

Re: Ang. [MI-L] custom projection

2005-12-19 Thread Michel Wurtz
versal translator EPSG#2400 corresponds to Mapinfow.prj \p3012 number... but I've seen some differences too in french systems between MapInfo and Mapserver (some pojections seem to be defined with 2 numbers in EPSG database and it is sometimes difficult to choose the right one ! -- Mic

Re: [MI-L] ecw compressor

2006-02-28 Thread Michel Wurtz
irname "$f"` infile=`echo "$f" | sed -e 's/\/cygdrive\/e/E:/' | tr '/' '\134' ` outfile=`echo "$outdir/$outname.ecw" | sed -e 's/\/cygdrive\/e/E:/' | tr '/' '\134' ` ecw_compress "$infile&qu

Re: [MI-L] Determining how many polygons occupy the same area

2006-04-24 Thread Michel Wurtz
ceived. Regards Alan ___ MapInfo-L mailing list MapInfo-L@lists.directionsmag.com http://www.directionsmag.com/mailman/listinfo/mapinfo-l -- Michel Wurtz MAP/SG/SM/SDSI/CERIT/DIG B.P. 12668

Re: [MI-L] Angle Measurement in MapBasic/MapInfo

2006-04-26 Thread Michel Wurtz
and 2 : If you want N-1 intermediate point run for i = 1 to N-1 : Xi = F_XX1 + (F_XX2 - F_XX1) * i/N Yi = F_YY1 + (F_YY2 _ F_YY1) * i/N -- Michel Wurtz MAP/SG/SM/SDSI/CERIT/DIG B.P. 12668 - 31326 Castanet-Tolosan Cedex ___ MapInfo-L ma

Re: [MI-L] Seamless layers and spatial filter/index [HOW-TO - Long]

2006-06-20 Thread Michel Wurtz
can't query it or open a new browser window. How can see what tabs it references? Do you have any ideas how I could create my own seamless table without using the seamless layer tool? Are there any other tools around that can do this? I don't have mapbasic. [...] -- Michel Wurtz MAP/