map
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 878
Maps 1.0
Maps project is a topographal map and aerial photo generator and viewer. more>>
Maps project is a topographal map and aerial photo generator and viewer.
Maps allows users to generate topographical maps and aerial photographs of any region in the United States.
It uses data provided by the USGS through the geoserver system.
The interactive view lets you move around, zoom in and out, and locate named geographical features.
<<lessMaps allows users to generate topographical maps and aerial photographs of any region in the United States.
It uses data provided by the USGS through the geoserver system.
The interactive view lets you move around, zoom in and out, and locate named geographical features.
Download (0.011MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
1167 downloads
Other version of Maps
CMap 0.2
CMap is a cross map API designed to make coding and switching between online maps such as Google and Yahoo easier. more>>
CMap project is a cross map API designed to make coding and switching between online maps such as Google and Yahoo easier and quicker.
Currently, CMap can generate Google Maps, Yahoo Maps, and Google Earth KML files. There are many more advanced plans for CMap, and I intend to support it for a long time as it has a practical application for myself.
Written in Php, CMap is very easy to use and the INSTALL file contains code examples of how to get CMap up and running easily and as soon as possible.
Enhancements:
- This release moves the Google Map API to v2.
- It includes better memory management, especially in Internet Explorer.
<<lessCurrently, CMap can generate Google Maps, Yahoo Maps, and Google Earth KML files. There are many more advanced plans for CMap, and I intend to support it for a long time as it has a practical application for myself.
Written in Php, CMap is very easy to use and the INSTALL file contains code examples of how to get CMap up and running easily and as soon as possible.
Enhancements:
- This release moves the Google Map API to v2.
- It includes better memory management, especially in Internet Explorer.
Download (0.008MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
697 downloads
SILC Map 1.0
SILC Map is an utility which can be used to visualize the topology of a SILC network. more>>
SILC Map is an utility which can be used to visualize the topology of a SILC network. This project can create maps which indicate the exact global position of the servers and it can create HTML pages out of the information it gathers from the servers.
It is also possible to create a HTML map page which allows the user to click the servers on the map image to get more detailed information of the server. The links between the routers and servers can also be drawn on the map image.
<<lessIt is also possible to create a HTML map page which allows the user to click the servers on the map image to get more detailed information of the server. The links between the routers and servers can also be drawn on the map image.
Download (0.34MB)
Added: 2007-05-28 License: GPL (GNU General Public License) Price:
880 downloads
MMap 0.0.10
MMap is a GTK2 map viewer. more>>
MMap is a GTK2 map viewer. MMap project supports Blue Marble, Land Sat 7, Watchizu, SRTM. You can show a part of World Wind data with OpenGL 3D graphics.
It supports (a part of) these maps:
- Watchizu
- Blue Marble
- Land Sat 7
- SRTM
== WARNING ==
MMap+ stores map data in ~/.mmap/ .
Its so huge.
<<lessIt supports (a part of) these maps:
- Watchizu
- Blue Marble
- Land Sat 7
- SRTM
== WARNING ==
MMap+ stores map data in ~/.mmap/ .
Its so huge.
Download (0.31MB)
Added: 2006-08-30 License: GPL (GNU General Public License) Price:
1196 downloads
GD::Map 1.00
GD::Map is Perl extension for creating geographic map files with GD. more>>
GD::Map is Perl extension for creating geographic map files with GD.
SYNOPSIS
use GD::Map;
my $m = GD::Map:new(
basemap_path => "[required]",
output_path => "[required]",
verbose => 1,
);
$m->set_basemap("northamerica");
$m->add_object(id => "route", type => "line", color => "255,0,0");
$m->add_data(
id => "route",
start_long => 123.1,
end_long => 124.7,
start_lat => 49.3,
end_lat => 37.5,
);
$m->draw();
my $filename = "$m->{filename}.png";
my $w = $m->{map_width};
my $h = $m->{map_height};
ABSTRACT
Perl extension for creating geographic map files with GD
<<lessSYNOPSIS
use GD::Map;
my $m = GD::Map:new(
basemap_path => "[required]",
output_path => "[required]",
verbose => 1,
);
$m->set_basemap("northamerica");
$m->add_object(id => "route", type => "line", color => "255,0,0");
$m->add_data(
id => "route",
start_long => 123.1,
end_long => 124.7,
start_lat => 49.3,
end_lat => 37.5,
);
$m->draw();
my $filename = "$m->{filename}.png";
my $w = $m->{map_width};
my $h = $m->{map_height};
ABSTRACT
Perl extension for creating geographic map files with GD
Download (0.008MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1092 downloads
Bumpmap 2.04
Bumpmap plug-in uses the algorithm described by John Schlag, Fast Embossing Effects on Raster Image Data. more>>
Bumpmap plug-in uses the algorithm described by John Schlag, "Fast Embossing Effects on Raster Image Data in Graphics Gems IV (ISBN 0-12-336155-9).
Bumpmap takes an image to be applied as a bump map to another image, producing a nice embossing effect.
<<lessBumpmap takes an image to be applied as a bump map to another image, producing a nice embossing effect.
Download (0.046MB)
Added: 2006-09-21 License: Perl Artistic License Price:
1128 downloads
NestedMap 1.0
NestedMap is a module to make nesting map{}s inside map{}s easierc. more>>
NestedMap is a module to make nesting map{}s inside map{}s easierc.
SYNOPSIS
# show all combinations of (A,B,C) (a,b,c) and (1,2,3)
print join("n",
nestedmap {
nestedmap {
nestedmap {
join(,@NestedMap::stack[0..2])
} qw(A B C)
} qw(a b c)
} qw(1 2 3)
);
# a zip() function for any number of lists of varying length
sub zipn {
my @args = @_;
[
nestedmap {
nestedmap {
defined($args[$_][$NestedMap::stack[1]]) ?
$args[$_][$NestedMap::stack[1]] :
} 0..$#args
} 0 .. max(map { $#{$_[$_]} } 0..$#args)
]
}
NB - older versions of perl may not like the code blocks I use in these examples.
You may have to use:
nestedmap sub { ... }, @list;
instead of
nestedmap { ... } @list;
See the test suite for examples of the above code modified to use that syntax.
<<lessSYNOPSIS
# show all combinations of (A,B,C) (a,b,c) and (1,2,3)
print join("n",
nestedmap {
nestedmap {
nestedmap {
join(,@NestedMap::stack[0..2])
} qw(A B C)
} qw(a b c)
} qw(1 2 3)
);
# a zip() function for any number of lists of varying length
sub zipn {
my @args = @_;
[
nestedmap {
nestedmap {
defined($args[$_][$NestedMap::stack[1]]) ?
$args[$_][$NestedMap::stack[1]] :
} 0..$#args
} 0 .. max(map { $#{$_[$_]} } 0..$#args)
]
}
NB - older versions of perl may not like the code blocks I use in these examples.
You may have to use:
nestedmap sub { ... }, @list;
instead of
nestedmap { ... } @list;
See the test suite for examples of the above code modified to use that syntax.
Download (0.003MB)
Added: 2007-07-25 License: Perl Artistic License Price:
821 downloads
UO Web Map 1.0.0
UO Web Map is a Web-based map with user-defined markers for Ultima Online. more>>
UO Web Map project is a Web-based map with user-defined markers for Ultima Online.
UO Web Map is Web-based map over the different lands and dungeons in Ultima Online.
It is possible for the users to zoom and add their own points of interest directly on the map.
<<lessUO Web Map is Web-based map over the different lands and dungeons in Ultima Online.
It is possible for the users to zoom and add their own points of interest directly on the map.
Download (MB)
Added: 2006-12-14 License: GPL (GNU General Public License) Price:
1056 downloads
easygmap 1.0.0
easygmap is an online map builder to create simple, easy-to-use maps with Google Maps. more>>
easygmap is an online map builder to create simple, easy-to-use maps with Google Maps.
The project allows the user to add markers to the map and optionally giving each marker a name, description, and picture. The finished map can then be sent to the email address of the users choice.
<<lessThe project allows the user to add markers to the map and optionally giving each marker a name, description, and picture. The finished map can then be sent to the email address of the users choice.
Download (0.076MB)
Added: 2007-02-20 License: MIT/X Consortium License Price:
978 downloads
GIFgraph::Map 1.02
GIFgraph::Map can generate HTML map text. more>>
GIFgraph::Map can generate HTML map text.
SYNOPSIS
use GIFgraph::Map;
$map = new GIFgraph::Map($gr_object);
$map->set(key1 => value1, key2 => value2 ...);
$HTML_map = $map->imagemap($gr_file, @data);
Is a perl5 module to generate HTML map text for following graph objects GIFgraph::pie, GIFgraph::bars, GIFgraph::point and GIFgraph::linespoints. As a result of its work is created HTML code containing IMG and MAP tags.
You simply need to insert this code into the necessary place of your page. In the inserted thus image, its certain parts are the references and at a choice their mouse in a status line of your browser displays the additional information.(See Samples).
<<lessSYNOPSIS
use GIFgraph::Map;
$map = new GIFgraph::Map($gr_object);
$map->set(key1 => value1, key2 => value2 ...);
$HTML_map = $map->imagemap($gr_file, @data);
Is a perl5 module to generate HTML map text for following graph objects GIFgraph::pie, GIFgraph::bars, GIFgraph::point and GIFgraph::linespoints. As a result of its work is created HTML code containing IMG and MAP tags.
You simply need to insert this code into the necessary place of your page. In the inserted thus image, its certain parts are the references and at a choice their mouse in a status line of your browser displays the additional information.(See Samples).
Download (0.009MB)
Added: 2006-07-31 License: Perl Artistic License Price:
1193 downloads
Mila Ajax Map 1.2
Mila Ajax Map is an AJAX Web application that may be used with a Web browser to display a network map with monitoring functions. more>>
Mila Ajax Map is an AJAX Web application witch can be used with a Web browser to display a network map with monitoring functions.
How Install
- You need apache, python, python gadfly and cup of coffee.
- At first you need create gadfly db with create_db.py.
- You need determine x and y coordinates for your nodes.
- For each x and y determine node center, i.e x = node x + gif-image size/2. This is center of image. y has same option.
- Write now connections in map.html with jg.drawLine(x,y,x2,y2).
- Write custom tooltips for each node in map.html.
- You can use rrdtools for creating round-trip-time or traffic graffics(see demo page).
- Then copy all from "cgi-bin" and "htdocs" dirs to your apache dirs.
- Add poller.py to crontab (and script for rrd, if you use it). Open http://your.host/map.html and relax.
- You can customize scripts as you want.
Enhancements:
- Changes were made in JavaScript support.
<<lessHow Install
- You need apache, python, python gadfly and cup of coffee.
- At first you need create gadfly db with create_db.py.
- You need determine x and y coordinates for your nodes.
- For each x and y determine node center, i.e x = node x + gif-image size/2. This is center of image. y has same option.
- Write now connections in map.html with jg.drawLine(x,y,x2,y2).
- Write custom tooltips for each node in map.html.
- You can use rrdtools for creating round-trip-time or traffic graffics(see demo page).
- Then copy all from "cgi-bin" and "htdocs" dirs to your apache dirs.
- Add poller.py to crontab (and script for rrd, if you use it). Open http://your.host/map.html and relax.
- You can customize scripts as you want.
Enhancements:
- Changes were made in JavaScript support.
Download (0.11MB)
Added: 2006-03-15 License: GPL (GNU General Public License) Price:
1333 downloads
STL AVL Map 1.2
STL AVL Map is an implementation of AVL-tree-based map, multimap, set and multiset containers for g++ 4.1.1. more>> <<less
Download (0.10MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
989 downloads
Puzzle Maps 1.0.0
Puzzle Maps is a software version of the Montessori Puzzle Maps activity. more>>
Puzzle Maps is a software version of the Montessori Puzzle Maps activity.
Puzzle Maps presents users with a choice of maps in which they can remove and replace the various countries or states that make up the map.
In this way, they familiarize themselves with the geography of the world.
<<lessPuzzle Maps presents users with a choice of maps in which they can remove and replace the various countries or states that make up the map.
In this way, they familiarize themselves with the geography of the world.
Download (1.28MB)
Added: 2006-04-17 License: GPL (GNU General Public License) Price:
1294 downloads
gucharmap 1.10.0
gucharmap is a Unicode character map and font viewer. more>>
gucharmap is a Unicode Character Map and Font Viewer. gucharmap uses gtk+ 2.0, so it supports beautiful anti-aliased scalable fonts via Xft.
Installation
To compile and install, do the usual
./configure
make
make install
There are two extra ./configure options:
--disable-gnome disables GNOME-only functionality, even if the GNOME libraries are found.
--disable-unihan disables CJK ideograph information. The ideograph information includes definition and pronunciations in several languages, and is extracted from [3]. Omitting the ideograph information will reduce gucharmaps size by roughly 2 megabytes.
<<lessInstallation
To compile and install, do the usual
./configure
make
make install
There are two extra ./configure options:
--disable-gnome disables GNOME-only functionality, even if the GNOME libraries are found.
--disable-unihan disables CJK ideograph information. The ideograph information includes definition and pronunciations in several languages, and is extracted from [3]. Omitting the ideograph information will reduce gucharmaps size by roughly 2 megabytes.
Download (2.9MB)
Added: 2007-03-13 License: GPL (GNU General Public License) Price:
956 downloads
GMap 0.0.4 Alpha
GMap is a Map editor for GPS maps that runs on linux. more>>
GMap is a Map editor for GPS maps that runs on linux. This project is a work in progress. GMap reads various formats and writes .mp polish map format files suitable for compiling using the cgpsmapper compiler.
I also have some notes relating to the use of GPS tools on Linux and the use of cGPSmapper on Linux and M$-Windows.
Currently the development is at an alpha stage. However it is starting to provide some basic funtionality so there is a copy here for anyone that wants to play.
Note that this is the only doc there is at the moment, it is incomplete and may also be slightly out of sync with the uploaded executable.
Main features:
- Display tracks and area (POLYLINE/POLYGON) features.
- Some POI support
- Editing of track and area features.
- Limited UNDO, currently should handle add, delete and move points. Split tracks. Convert a track to an area feature. Dont rely on it. Save often.
- Read and write data data to Polish format map data files. These are suitable for feeding to the cGPSmapper map compiler.
- Read tracks and waypoints from ".gpx" files (from gpsbabel or mapsource uploads)
- Read Tracks and points from google earth ".kml" files (not .kmz)
- Saves to named file or first input file. Original input is renamed to oldname;version (eg gmap fred.mp -> save renames to fred.mp;1 etc)
- Holds 2 sets of map data, one as a reference which is not written out. You can merge as many files as you like on read.
- Some handling of things with holes.
- Map warping. Allows you to warp one set of map data so it aligns correctly with another set of data. Example being to fix data estimated from images or maps against correct ground tracks.
- Knows something about the world being curved.
- Can read tracks, waypoints and current position from my garmin GPSMap 60CSx and a ForeRunner301
<<lessI also have some notes relating to the use of GPS tools on Linux and the use of cGPSmapper on Linux and M$-Windows.
Currently the development is at an alpha stage. However it is starting to provide some basic funtionality so there is a copy here for anyone that wants to play.
Note that this is the only doc there is at the moment, it is incomplete and may also be slightly out of sync with the uploaded executable.
Main features:
- Display tracks and area (POLYLINE/POLYGON) features.
- Some POI support
- Editing of track and area features.
- Limited UNDO, currently should handle add, delete and move points. Split tracks. Convert a track to an area feature. Dont rely on it. Save often.
- Read and write data data to Polish format map data files. These are suitable for feeding to the cGPSmapper map compiler.
- Read tracks and waypoints from ".gpx" files (from gpsbabel or mapsource uploads)
- Read Tracks and points from google earth ".kml" files (not .kmz)
- Saves to named file or first input file. Original input is renamed to oldname;version (eg gmap fred.mp -> save renames to fred.mp;1 etc)
- Holds 2 sets of map data, one as a reference which is not written out. You can merge as many files as you like on read.
- Some handling of things with holes.
- Map warping. Allows you to warp one set of map data so it aligns correctly with another set of data. Example being to fix data estimated from images or maps against correct ground tracks.
- Knows something about the world being curved.
- Can read tracks, waypoints and current position from my garmin GPSMap 60CSx and a ForeRunner301
Download (0.93MB)
Added: 2007-05-15 License: Free for non-commercial use Price:
908 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above map search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed