9 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
Hello,
I do not know if this is the right title to use. I have a large dictionary database which has the following structure:
where a b c d e are in English and p q r s t are in a target language., the two separated by the delimiter =.
What I am looking for is a perl script which will take... (5 Replies)
Discussion started by: gimley
5 Replies
2. IP Networking
Hello,
A friend of mine just purchased a DLINK 8500AP and I'm trying to help him set up wireless internet in his house. His computers are connected to one of two switches, which are both hooked up to his DSL modem. I connected the 8500AP to one of the switches. According to the instruction... (3 Replies)
Discussion started by: dorik
3 Replies
3. IP Networking
Hi guys,
I want to setup AP using an NETGEAR WGR614 54 Mbps 802.11g Wireless Router
The router works fine, but I don't have internet access. I will describe the structure of the net to explain it:
I have one server (Free BSD 7) with 2 LAN PCI cards:
re0 - it is connected to my ISP
... (2 Replies)
Discussion started by: sitemap
2 Replies
4. Programming
Hai Everyone,
I am newcomer to UNIX.
I am interested to write a prograame in windows which connects to unix server and executing a script and return the result. Is it possibele or not.
Please suggest me.
Thank you in advance.
With Regards
sanjeeb (3 Replies)
Discussion started by: Sanjeeb
3 Replies
5. AIX
Hello
I've just installed openSSL and SSH on my AIX 5.3 TL04 and started having a problem with acces to ftp. When I try to log in to ftp on my AIX server, I always get message like this: "530 User root access denied". The same problem occurres with all users. Can anyone help me?
Regards
Pit (3 Replies)
Discussion started by: piooooter
3 Replies
6. UNIX for Dummies Questions & Answers
Ok, so say I boot off a live Knoppix CD. Is there any way I could access the harddrive (and files on it) from the live CD? Is it complicated?
Thanks alot,
John (3 Replies)
Discussion started by: jjvacc
3 Replies
7. UNIX for Dummies Questions & Answers
Hello,
I want to allow all users on my server (AIX 5.3) to have access to X server. If they export DISPLAY=localhost:0.0, they should be able do use X server on the same machine. What should I do to do it? I've read that I must create the /etc/X0.hosts file and place in it localhost. Would it be... (0 Replies)
Discussion started by: piooooter
0 Replies
8. IP Networking
Hello,
My 2nd post...
Here is my case:
Now, I have a router. I have installed fresh freebsd and apache web server. I opened port 80 in router...and I am unable to access to it within my network if I use my 'external' IP. People not from my network however can acess to it.
I also installed... (3 Replies)
Discussion started by: kasia
3 Replies
9. UNIX for Dummies Questions & Answers
OS: Solaris
When I look at my I/O distribution on a server using iostat, the devices report as sdX where x is a number like 0, 32, 128, etc. While I can guess which device maps to which mount point, is there any way I can definitely determine which sdX points to which mount point? (2 Replies)
Discussion started by: marist89
2 Replies
map::slippy(n) Mapping utilities map::slippy(n)
__________________________________________________________________________________________________________________________________________________
NAME
map::slippy - Common code for slippy based map packages
SYNOPSIS
package require Tcl 8.4
package require Tk 8.4
package require map::slippy ?0.2?
::map::slippy length level
::map::slippy tiles level
::map::slippy tile size
::map::slippy tile valid tile levels ?msgvar?
::map::slippy geo 2tile geo
::map::slippy geo 2point geo
::map::slippy tile 2geo tile
::map::slippy tile 2point tile
::map::slippy point 2geo point
::map::slippy point 2tile point
_________________________________________________________________
DESCRIPTION
This package provides a number of methods doing things needed by all types of slippy-based map packages.
API
::map::slippy length level
This method returns the width/height of a slippy-based map at the specified zoom level, in pixels. This is, in essence, the result
of
expr { [tiles $level] * [tile size] }
::map::slippy tiles level
This method returns the width/height of a slippy-based map at the specified zoom level, in tiles.
::map::slippy tile size
This method returns the width/height of a tile in a slippy-based map, in pixels.
::map::slippy tile valid tile levels ?msgvar?
This method checks whether tile described a valid tile in a slippy-based map containing that many zoom levels. The result is a bool-
ean value, true if the tile is valid, and false otherwise. For the latter a message is left in the variable named by msgvar, should
it be specified.
A tile identifier as stored in tile is a list containing zoom level, tile row, and tile column, in this order. The command essen-
tially checks this, i.e. the syntax, that the zoom level is between 0 and "levels-1", and that the row/col information is within the
boundaries for the zoom level, i.e. 0 ... "[tiles $zoom]-1".
::map::slippy geo 2tile geo
Converts a geographical location at a zoom level (geo, a list containing zoom level, latitude, and longitude, in this order) to a
tile identifier (list containing zoom level, row, and column) at that level.
::map::slippy geo 2point geo
Converts a geographical location at a zoom level (geo, a list containing zoom level, latitude, and longitude, in this order) to a
pixel position (list containing zoom level, y, and x) at that level.
::map::slippy tile 2geo tile
Converts a tile identifier at a zoom level (tile, list containing zoom level, row, and column) to a geographical location (list con-
taining zoom level, latitude, and longitude, in this order) at that level.
::map::slippy tile 2point tile
Converts a tile identifier at a zoom level (tile, a list containing zoom level, row, and column, in this order) to a pixel position
(list containing zoom level, y, and x) at that level.
::map::slippy point 2geo point
Converts a pixel position at a zoom level (point, list containing zoom level, y, and x) to a geographical location (list containing
zoom level, latitude, and longitude, in this order) at that level.
::map::slippy point 2tile point
Converts a pixel position at a zoom level (point, a list containing zoom level, y, and x, in this order) to a tile identifier (list
containing zoom level, row, and column) at that level.
REFERENCES
[1] http://wiki.openstreetmap.org/wiki/Main_Page
KEYWORDS
geodesy, geography, latitute, location, longitude, map, slippy, zoom
map 0.2 map::slippy(n)