[MI-L] Symmetry

2006-09-21 Thread Gamiz Ribelles, Sergi \(Regsa\)
 Hello List,
 Does anybody know about a tool to move/make objects symmetrically?
 
 thank you
 
 Sergi Gàmiz Ribelles (627481954)
 REGS DE CATALUNYA S.A. (www.regsa.es)
 Unitat de Promoció de Regadius i Concentració Parcel·lària
 c/General Brito, 6, 5è
 25007 Lleida
 tel. 973222838   fax 973222627
 [EMAIL PROTECTED]
 

___
MapInfo-L mailing list
MapInfo-L@lists.directionsmag.com
http://www.directionsmag.com/mailman/listinfo/mapinfo-l


[MI-L] Modelling Market Netowrks and Transportation Costs

2006-09-21 Thread Bill Thoen
I'm interested in any good information on modelling markets and 
transportation costs. I think this a problem that can be solved using 
network functions, but I'd like to know more about the factors involved 
in such a problem. For example, suppose you had 100 cities that either 
bought or sold widgets and there were various transportation routes 
between the cities with some variable cost associated with moving the 
widgets. How would you go about designing a program that could tell you 
the current price of widgets in Gotham? If you added a new 
transprotation route betwen cities or increased the carrying capacity of 
one or more routes, how would that affect the price in Gotham then?


Assume that there is a variable supply at the producing centers, and in 
some cases the can produce more than they can sell, while in other cases 
they can't produce enough to keep up with demand. I was thinking that it 
might be like water flowing into and out of a network of pipes. There 
are inflow and outflow points, there is pipeline capacity (that may or 
may not be maxed out), and I guess if you add reservoirs at various 
points in the network you would affect the response of the system to 
changes in demand.


Anyway I'm just trying to get a grip on this sort of problem, so if 
anyone knows of examples or what parameters are involved, or even how to 
go about modeling such a process, I'd be interested in learning more.


- Bill Thoen



___
MapInfo-L mailing list
MapInfo-L@lists.directionsmag.com
http://www.directionsmag.com/mailman/listinfo/mapinfo-l


[MI-L] testing attribute of directory

2006-09-21 Thread Martin Hodder
Hi,

I was wondering if anyone can help me before I delve into the windows API.

I have the API call to get a list of files from a folder.

I now need to scan these files and see if any of then are actually folders
and not files.

Does anyone know hoe to do this?

Thanks

Martin



___
MapInfo-L mailing list
MapInfo-L@lists.directionsmag.com
http://www.directionsmag.com/mailman/listinfo/mapinfo-l


[MI-L] MI 7 Window export

2006-09-21 Thread Jacques Paris








Testing the possibilities of vector format (png and emf)
for insertion of a mapper window saved as  into a Visio document,
I have noticed that label size do not seem to follow window size redefinition before
saving. That is, if I multiply by two the size of the window to be saved, label
text is not increased proportionately. Do other versions than MI 7.0 have the
same problem? Or am I way down left field passed the parking lot?



Jacques Paris






___
MapInfo-L mailing list
MapInfo-L@lists.directionsmag.com
http://www.directionsmag.com/mailman/listinfo/mapinfo-l


[MI-L] Off the PRIMARY Subject - Microwave System Design GIS data software

2006-09-21 Thread Ericson, Tim
Title: Message



I've been tasked with doing a "discovery effort." My 
company is looking for a PC based GIS system / data that will help design 
Microwave communications systems.

One of the challanges in 
Microwave design is that the designer must know about all potential 3D 
obstructions... Rather than using a TOPO map for the natural obstructions and 
doing extensive field work to determine man-made obstructions, etc. I 
ASSUME that there is some GIS based program that will help the engineers 
understand this.

With all of the GIS talent 
on this list... can anyone point me in the right direction?


Thanks!

Tim

This communication is the property of Qwest and may contain confidential or 
privileged information. Unauthorized use of this communication is strictly 
prohibited and may be unlawful.  If you have received this communication 
in error, please immediately notify the sender by reply e-mail and destroy 
all copies of the communication and any attachments.
___
MapInfo-L mailing list
MapInfo-L@lists.directionsmag.com
http://www.directionsmag.com/mailman/listinfo/mapinfo-l


RE: [MI-L] testing attribute of directory

2006-09-21 Thread Peter Horsbøll Møller
Title: RE: [MI-L] testing attribute of directory






Martin,


You can use this function to question a file Attribute to see if it is a directory


Define MAX_PATH  260

Define FILE_ATTRIBUTE_DIRECTORY H10  '16 The file is a directory.


Type WIN32_FIND_DATA

 dwFileAttributes As Integer

 ftCreationTime As FILETIME

 ftLastAccessTime As FILETIME

 ftLastWriteTime As FILETIME

 nFileSizeHigh As Integer

 nFileSizeLow As Integer

 dwReserved0  As Integer

 dwReserved1  As Integer

 cFileName  As String * MAX_PATH

 cAlternate  As String * 14

End Type


'**''

'Determinating whether a file is a directory by it fileattributes

'**''

Function APIFileAttributeIsDirectory(ByVal nFileAttributes As Integer) As Logical


OnError GoTo ErrorOccured


APIFileAttributeIsDirectory = FALSE


 If (nFileAttributes / 2 ^ FILE_ATTRIBUTE_DIRECTORY_BIT) Mod 2 Then

  APIFileAttributeIsDirectory = TRUE

 End If


 Exit Function

'-

ErrorOccured:

 Note ERR_ERRORMSG  lf  Error$()


End Function 


You would use this in the loop where you have access to the WIN32_FIND_DATA structure. The loop could look like this:



Dim f As WIN32_FIND_DATA

 ...


 hFindFile = FindFirstFile (sPath + sFilespec, f)

 If hFindFile  INVALID_HANDLE_VALUE Then

  Do

'   Print Found file:   f.cFilename  ,   f.dwFileAttributes

   If APIFileAttributeIsDirectory(f.dwFileAttributes) Then

'This is a directory

   Else

'This is not a directory

   End if

   nStatus = FindNextFile (hFindFile, f)


  Loop While nStatus = 1

 End If


HTH,


Peter Horsbøll Møller

GIS Developer, MTM

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


For enden af regnbuen... - hvordan kommer man dertil og er det overhovedet muligt? 

Læs mere om årets MapInfo konference på www.cowi.dk/mapinfokonference


-Original Message-

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Martin Hodder

Sent: Thursday, September 21, 2006 9:13 PM

To: Mapinfo-L@lists.directionsmag.com

Subject: [MI-L] testing attribute of directory


Hi,


I was wondering if anyone can help me before I delve into the windows API.


I have the API call to get a list of files from a folder.


I now need to scan these files and see if any of then are actually folders and not files.


Does anyone know hoe to do this?


Thanks


Martin




___

MapInfo-L mailing list

MapInfo-L@lists.directionsmag.com

http://www.directionsmag.com/mailman/listinfo/mapinfo-l





___
MapInfo-L mailing list
MapInfo-L@lists.directionsmag.com
http://www.directionsmag.com/mailman/listinfo/mapinfo-l


RE: [MI-L] Modelling Market Netowrks and Transportation Costs

2006-09-21 Thread Neil Havermale
Bill -

I believe if you dive into looking up milksheds you will likely find
several pathways to help sort this out.  From decades past, the
regulatory issues of milk basis versus dairies, collection points,
competitive marketplaces, distance to markets, and more have been
studied by agricultural economists and rural development specialists
many, many times.  There are two methods: spatial linear programming
and/or network/friction surface analysis. While not an expert, I believe
the most effective LP's need inputs (coefficients) from travel friction
studies?  Same ideas hold for grain transportation and competing modes:
trucks, rail, barges... versus terminals, engineered
waterways/highways/rails, and market basis.

The LP stuff I will leave to you to dig into. Its history is quite deep
given that the LP stuff was used to determine location of some our first
interstate highways back East, in particular how they would interrelate
to the milksheds surrounding New York, Boston and points between.  The
alternative would be the adjusting of several spatial analysis
abstractions that Dr Berry has offered on his MapCalc related web pages:


http://www.innovativegis.com/basis/Senarios/Default.html

I believe friction surface as a proxy for speed and its travel
complexity, start/go, uphill/downhill, combined with markets (ATMs in
the example below) might be a conceptual start? Change the friction
surface by changed assumptions and new flows occur. In this particular
example, bank customers versus bank ATM locations, the friction surface
is rather a simple one.  And as they say time is money. Flows can be
converted into cost/distance analysis.  Net profits at end points can be
guessitimated by margin analysis and simple assumptions on price
elasticy?

Travel-time and Customer Access
http://www.innovativegis.com/basis/Senarios/TTime_scenario.htm

Surface flows that conduit consumers to markets also have cost or
friction surfaces. Pooling are essentially flows that can not achieve
velocity.  

Mapping Surface Flows and Pooling
http://www.innovativegis.com/basis/Senarios/Pooling_scenario.htm

Dr Joe also has several books and in particular tutorials in the MapCalc
Learner that will also illustrate other tricks to establish friction
surfaces and impediments to natural flows... as the crow flies is not
how you really get there... but if you build a bridge over a river,
natural pathways change.

Hope this might offer some insights. 

MidNight Mapper
Aka neil

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bill
Thoen
Sent: Friday, September 22, 2006 3:53 AM
To: MapInfo List
Subject: [MI-L] Modelling Market Netowrks and Transportation Costs

I'm interested in any good information on modelling markets and 
transportation costs. I think this a problem that can be solved using 
network functions, but I'd like to know more about the factors involved 
in such a problem. For example, suppose you had 100 cities that either 
bought or sold widgets and there were various transportation routes 
between the cities with some variable cost associated with moving the 
widgets. How would you go about designing a program that could tell you 
the current price of widgets in Gotham? If you added a new 
transprotation route betwen cities or increased the carrying capacity of

one or more routes, how would that affect the price in Gotham then?

Assume that there is a variable supply at the producing centers, and in 
some cases the can produce more than they can sell, while in other cases

they can't produce enough to keep up with demand. I was thinking that it

might be like water flowing into and out of a network of pipes. There 
are inflow and outflow points, there is pipeline capacity (that may or 
may not be maxed out), and I guess if you add reservoirs at various 
points in the network you would affect the response of the system to 
changes in demand.

Anyway I'm just trying to get a grip on this sort of problem, so if 
anyone knows of examples or what parameters are involved, or even how to

go about modeling such a process, I'd be interested in learning more.

- Bill Thoen



___
MapInfo-L mailing list
MapInfo-L@lists.directionsmag.com
http://www.directionsmag.com/mailman/listinfo/mapinfo-l

___
MapInfo-L mailing list
MapInfo-L@lists.directionsmag.com
http://www.directionsmag.com/mailman/listinfo/mapinfo-l


[MI-L] [Spam] Mapinfo Module for Orthophotos

2006-09-21 Thread Richard








Dear Listers,

I am looking for a MapInfo module to handle orthophotos
and other that could extract contour lines from a photo. 

Can you tell me if there is a MapInfo module to do that? 



Thanks,



Richard Berroa.

Geodatos Dominicana.

e-mail: [EMAIL PROTECTED]

URL: www.geodatos.com.do











___
MapInfo-L mailing list
MapInfo-L@lists.directionsmag.com
http://www.directionsmag.com/mailman/listinfo/mapinfo-l


[MI-L] TAB to S-57

2006-09-21 Thread Jakob Lanstorp
Title: TAB to S-57






Hi,


Anyone with experience in converting MapInfo TAB to S-57 (vector format for marine charts).




Jakob Lanstorp

Software Developer

GIS, Surveying  IT

 

COWI A/S

Odensevej 95

DK-5260 Odense S

Denmark

 

Tel +45 6311 4900

Mob +45 4020 7529

Fax +45 6311 4949

E-mail [EMAIL PROTECTED]

http://www.cowi.com




___
MapInfo-L mailing list
MapInfo-L@lists.directionsmag.com
http://www.directionsmag.com/mailman/listinfo/mapinfo-l