Projects tagged ‘earth’ and ‘kml’


Jump to tag:

Projects tagged ‘earth’ and ‘kml’

Filtered by Project Tags earth kml

Refine results Project Tags kmz (4) gps (4) xml (3) gis (3) map (3) java (2) coordinates (2) wireless (2) maps (2) python (2) library (2) kismet (2)

[17 total ]

0 Users

Creates a Google Earth KML file from a given set of data and outputs it either to a file or returns the kml code as a string.
Created 2 months ago.

0 Users

Hello, This project is written in c# and is in the early stages. I hope it will be usefull to anyone wishing to intergate the Api in to their own application - by using the controls directly or ... [More] any of the code or ideas behind them. The basis of the control library interaction is the COM Google Earth Plugin Type Library (plugin_ax.dll) converted into the equivalent definitions in a common language runtime assembly. As this library uses the Google Earth Plug-in so you should read the Google Earth APIs Terms of Service before downloading or using any of the code on this site. http://code.google.com/apis/maps/terms.html Fraser 03/09 Latest ChangesRebuilt for the Google Earth version 5 enhancements Changed target platform from AnyCpu to x86 Added an embedded html resource to host th [Less]
Created 11 months ago.

0 Users

Description not available Please view source
Created 12 months ago.

0 Users

An extension of the pykismetearth library with added functionality.
Created 4 months ago.

0 Users

GPS moving map for google earth. Small 'webserver' that reads and logs GPS input, and serves various KML/KMZ 'files' to output current position, heading, track-log, various views to Google Earth. ... [More] Current Inputs: * Serial/bluetooth GPS receiver outputting NMEA, * NMEA over UDP packets. Outputs: * NMEA over UDP * NMEA to file * NMEA over HTTP text * Various and configurable KML (google Earth) outputs over HTTP [Less]
Created 12 months ago.

0 Users

Liegenschaftskataster Online Version
Created 11 months ago.

0 Users

Google Earth上的天气预报
Created 11 months ago.

0 Users

World Wind Geo: The Eclipse RCP GeobrowserWelcome to World Wind Geo: The Eclipse Geo browser. The Geospatial Web or Geoweb is a relatively new term that implies the merging of geographical ... [More] (location-based) information with the abstract information that currently dominates the Internet. World Wind Geo is an experimental geo browser built on top of: World Wind Java SDK - http://worldwind.arc.nasa.gov/java/ : Allows developers to embed World Wind technology in their own applications. Eclipse - http://www.eclipse.org/ : Eclipse is an open source community whose projects are focused on building an open development platform comprised of extensible frameworks, tools and runtimes. Our goal is to close the gap between GIS & SIS (Scientific Information Systems) by incorporating low/med/hi resolution GIS datasets from multiple sources: NASA, MS Virtual Earth, and others with the java NetCDF library for plotting/subsetting capabilities of scientific data. World Wind Geo has the following fetaures: Interactive 3D navigation. Full support for WMS 1.1.x and 1.3.x using wizards. Over 500 real time weather data sets from NOAA and the Navy Research Labs. Limited support for KML: Ground overlays, screen overlays, and placemarks only. Support for animated ground overlays to visualize events over time. Scientific Data Plot/Subset capabilities with NetCDF. Open source: built on top of the World Wind Java SDK and Eclipse frameworks. Highly extensible: It uses the eclipse plugin framework to extend the user interface. Multi platform: built on proven standards: Java and Eclipse. Automatic Updates with Eclipse!You can keep WWGeo up to date by using the eclipse update system: Under "Help", select "Software Updates/Find and Install" Click "Search for new features to install", then click next Click the "New Remote Site" button on the right and enter the update information Name: World Wind Geo Update Site Url : http://playerx.sf.net/wwgeo/ Click Finish, and follow the easy installation instructions. DatasetsWW Geo bundles the following datasets and features: NASAhttp://www.worldwindcentral.com/wiki/World_Wind_Data_Sources Blue Marble (1-km/pixel resolution) - http://earthobservatory.nasa.gov/Newsroom/BlueMarble/ i-cubed Landsat 7 (15-meter/pixel resolution) - Global Land Cover Facility. University of Maryland, Institute for Advanced Computer Studies Elevation data (SRTM30Plus/SRTMv2/USGS NED derived dataset). NASA Jet Propulsion Laboratory. http://www2.jpl.nasa.gov/srtm/ USGS Topographic, B&W Ortho, and Color Urban Area USGS and Microsoft Research. http://www.terraserver-usa.com/ United States Placenames. USGS Geographic Names Information System.http://geonames.usgs.gov/ World Placenames. National Geospatial-Intelligence Agency. http://earth-info.nga.mil/gns/html Microsofthttp://www.microsoft.com/virtualearth/ Virtual Earth Roads. Virtual Earth Satellite. Virtual Earth Hybrid (Satellite with place names). The NetCDF ViewerNetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. http://www.unidata.ucar.edu/software/netcdf/ . WW Geo bundles a NetCDF viewer for the following conventions: NetCDF File types: http://www.unidata.ucar.edu/software/netcdf-java/ NetCDF conventions: COARDS, Models3, WRF, CF, and others (see link above). To use the viewer select "File/Open Dataset" or simply point the built-in web browser to any OpeNDAP/THREDDS data server such as http://dataportal.ucar.edu:9191/dods then click any dataset OpeNDAP link (The data will be displayed automatically on the NetCDF View). OthersFull support for WMS 1.1.x layers and 1.3.x animated or static layers. Limited KML support: Temporal/static Ground, Screen overlays and placemarks. RequirementsGraphics card with updated drivers. See http://worldwind.arc.nasa.gov/java/ Java 1.5 WW Geo Main GUI Screen ShotHere is a screen shot of the main user interface. The earth, moon, and mars are shown, the earth displays a sea surface temperature ground overlay obtained from a scientific NetCDF OpeNDAP dataset. Known IssuesOSX/Linux: The built-in web browser doesn't work yet. A patch using Mozilla/XULRunner is on the way. OSX: The WMS wizard server selection combo doesn't recognize built in server URLs. [Less]
Created about 1 year ago.

0 Users

Click here to view the new tutorial. More to come!pylibkml is Python wrapper for Google's libkml library that allows for creating valid KML documents using a more 'pythonic' syntax than the ... [More] SWIG-generated Python bindings provided by libkml. For example, the following code generates a placemark object using pylibkml: from pylibkml import Kml placemark = Kml().create_placemark({ 'name' : 'Placemark Name', 'snippet' : 'Sample Snippet', 'description' : 'Sample Description', 'timestamp' : {'when': '5/19/2009'}, 'point' : Kml().create_point({ 'extrude' : True, 'altitudemode' : 'relativetoground', 'coordinates' : Kml().create_coordinates(-120,40), }) })This is equivalent to the following code, which generates a placemark object using libkml: import kmldom factory = kmldom.KmlFactory_GetFactory() placemark = factory.CreatePlacemark() placemark.set_name('Placemark Name') snip = factory.CreateSnippet() snip.set_text('Sample Snippet') placemark.set_snippet(snip) placemark.set_description('Sample Description'.encode()) timestamp = factory.CreateTimeStamp() timestamp.set_when('5/19/2009') placemark.set_timeprimitive(timestamp) coordinates = factory.CreateCoordinates() coordinates.add_latlng(40, -120) point = factory.CreatePoint() point.set_altitudemode(kmldom.ALTITUDEMODE_RELATIVETOGROUND) point.set_extrude(True) point.set_coordinates(coordinates) placemark.set_geometry(point)Both code blocks result in the following KML text (once serialized using kmldom.SerializeRaw(placemark)): Placemark Name Sample Snippet Sample Description 5/19/2009 1 relativeToGround -120,40,0\n [Less]
Created 4 months ago.

0 Users

This project includes a collection of Python classes and scripts which can be used to generate and verify Region-based KML. ScriptsHere are some useful scripts: checkcsvlinks.py - check HTML link ... [More] targets in a CSV file checklinks.py - walk a RbNL hierarchy checkregions.py - check Region elements in an RbNL hiearchy csvregionator.py - CSV point data in, RbNL out getkml.py - get the doc.kml in KMZ file or URL kmlsuperoverlay.py - GTiff in, SuperOverlay out mkregionboxes.py - create boxes for the Regions in an RbNL hierarchy placemarks.py - KML Placemarks in, RbNL out ClassesHere are some useful modules. Use pydoc on each module for more info: kml.checklinks - module for checking KML ahd HTML links kml.checkregions - module for checking KML Regions kml.cvsregionator - CSV regionator mainline kml.featureset - container for a set of features kml.genkml - convenience functions for generating KML kml.genxml - KML types (Placemark, Folder, NetworkLink, etc) kml.href - KML href support and fetch kml.kmlregionator - KML regionator main module kml.kmz - KMZ archive support kml.model - KML Model support kml.photooverlay - KML PhotoOverlay support kml.region - KML Region support kml.regionator - core "regionator" algorithm kml.regionhandler - base class for building specific regionators kml.superoverlay - SuperOverlay main module kml.walk - KML RbNL walker [Less]
Created about 1 year ago.