Sponsored Content
Full Discussion: Aix Certifications
Operating Systems AIX Aix Certifications Post 302134845 by varungupta on Tuesday 4th of September 2007 03:06:45 AM
Old 09-04-2007
How to approach to register myself for the certification in AIX ?
And what is the amount do they charge for the certification ??
Any Idea ??

Please let me know !!
Smilie
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

UNIX certifications

Are there any nationally recognized UNIX certifications, similar to A+., for basic unix and system admin skills? thanks (1 Reply)
Discussion started by: pacsman
1 Replies

2. What is on Your Mind?

Unix certifications

Hi all, I'm new to this forum also to unix, but eager to learn unix. Can any one gimme the certifications/exams available to validate our unix strengths. (7 Replies)
Discussion started by: sarang
7 Replies

3. UNIX for Dummies Questions & Answers

What Certifications to be done in UNIX

Hello I am a newbie i learnt Shell programming and Unix Internals.Well plz advice me what certifications i shud do as i have free time and want to utilize my time :) (1 Reply)
Discussion started by: strawberry
1 Replies

4. Shell Programming and Scripting

Certifications in Unix?

Guys, I just want information abt certifications available for unix. If they exist can anyone give some info them. Making clear I am pointing to developer level exams, not admin side. Thanks, Sharif.S (0 Replies)
Discussion started by: sharifhere
0 Replies

5. Shell Programming and Scripting

UNIX Certifications

Hi All, Can anybody let me know if there is any Unix certification course which will provide basically programming in Unix. (4 Replies)
Discussion started by: darshakraut
4 Replies

6. What is on Your Mind?

Certifications on Unix and Linux

hi there :) I will study the Linux LPI certification in a few months What do u think about it? Is this certification good enough to work with solaris too actually? I´m not sure because i think is more oriented to linux, and solaris as far as i know, is based on UNix. What else can i... (3 Replies)
Discussion started by: andriusman
3 Replies

7. HP-UX

HP-UX Certifications

Hi, I am planning to get certified on HP-UX. I googled about HPUX Certifications. I understand that I need to pass on exam HP0-A01 but I find many references to HP0-095. I bought this book: HP-UX: HP Certification Systems Administrator, Exam HP0-A01 - Training Guide and Administrator's... (16 Replies)
Discussion started by: psicopunk
16 Replies

8. What is on Your Mind?

Certifications in Linux

Hi , I am working in Perl/Shell Script for past 3 years.I am planning to learn and switch my Career as Linux Admin.So Please suggest some certifications to learn about it.Do we have separate sub categories/area of specifications in Linux Admin ? Like Virtualization ,Vmware,storage. ... (0 Replies)
Discussion started by: Ajaytts123
0 Replies

9. What is on Your Mind?

Are certifications worth it?

I have just been on RedHat SA 3 training course (4 days) and sat exams EX200 (RHCSA) and EX300 (RHCE) The daft thing was that politics meant I wasn't allowed to take courses SA 1 or 2. So I learnt about stuff I would never use (SELinux; iSCSI; NFS Kerberos encrypted with user specific access... (22 Replies)
Discussion started by: rbatte1
22 Replies
Geo::OSM::Tiles(3pm)					User Contributed Perl Documentation				      Geo::OSM::Tiles(3pm)

NAME
Geo::OSM::Tiles - Calculate tile numbers for OpenStreetMap SYNOPSIS
use Geo::OSM::Tiles qw( :all ); $zoom = 13; $lat = 49.60055; $lon = 11.01296; $tilex = lon2tilex($lon, $zoom); $tiley = lat2tiley($lat, $zoom); $path = tile2path($tilex, $tiley, $zoom); $tileurl = "http://tile.openstreetmap.org/$path"; DESCRIPTION
This module provides functions for calculating the path to a map tile at OpenStreetMap out of geographic coordinates. The path of a tile at OSM has the form "$zoom/$tilex/$tiley.png". The numbering scheme is documented in the OSM wiki, see the link below. "lon2tilex($lon, $zoom)" Returns $tilex for the tile at longitude $lon and zoom level $zoom. The longitude must be in the range "-180.0 <= $lon < 180.0". The zoom level must be a non-negative integer. "lat2tiley($lat, $zoom)" Returns $tiley for the tile at latitude $lat and zoom level $zoom. The latitude must be in the range "-85.0511 <= $lat <= 85.0511". The zoom level must be a non-negative integer. "tile2path($tilex, $tiley, $zoom)" Composes the path to the tile at $tilex, $tiley, and $zoom at the OSM server. $tilex and $tiley must be integers in the range "0..2**$zoom-1". The supported range of zoom levels depends on the tile server. The maximum zoom for the Osmarender layer is 17, it is 18 for the Mapnik layer. "checklonrange($lonmin, $lonmax)" Checks whether $lonmin and $lonmax are within the allowed range of the longitude argument to "lon2tilex". Returns "($lonmin, $lonmax)" unchanged if they are ok or corrected values if not. "checklatrange($latmin, $latmax)" Checks whether $latmin and $latmax are within the allowed range of the latitude argument to "lat2tiley". Returns "($latmin, $latmax)" unchanged if they are ok or corrected values if not. SEE ALSO
<http://wiki.openstreetmap.org/wiki/Slippy_map_tilenames> AUTHOR
Rolf Krahl <rotkraut@cpan.org> COPYRIGHT AND LICENCE
Copyright (C) 2008-2010 by Rolf Krahl This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available. perl v5.14.2 2010-05-15 Geo::OSM::Tiles(3pm)
All times are GMT -4. The time now is 08:51 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy