LSIB 2017: Large Scale International Boundary Polygons, Detailed

USDOS/LSIB/2017
Dataset Availability
2017-12-29T00:00:00Z–2017-12-29T00:00:00Z
Dataset Provider
Earth Engine Snippet
FeatureCollection
ee.FeatureCollection("USDOS/LSIB/2017")
FeatureView
ui.Map.FeatureViewLayer("USDOS/LSIB/2017_FeatureView")
Tags
borders countries dos political usdos

Description

The United States Office of the Geographer provides the Large Scale International Boundary (LSIB) dataset. It is derived from two other datasets: a LSIB line vector file and the World Vector Shorelines (WVS) from the National Geospatial-Intelligence Agency (NGA). The interior boundaries reflect U.S. government policies on boundaries, boundary disputes, and sovereignty. The exterior boundaries are derived from the WVS; however, the WVS coastline data is outdated and generally shifted from between several hundred meters to over a kilometer. Each feature is the polygonal area enclosed by interior boundaries and exterior coastlines where applicable, and many countries consist of multiple features, one per disjoint region. Each of the 180,741 features is a part of the geometry of one of the 284 countries described in this dataset.

Table Schema

Table Schema

Name Type Description
OBJECTID STRING

Object ID

COUNTRY_NA STRING

US-recognized country name

Terms of Use

Terms of Use

There are no restrictions on use of this US public domain data.

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.FeatureCollection('USDOS/LSIB/2017');
var styleParams = {
  fillColor: 'b5ffb4',
  color: '00909F',
  width: 3,
};
var countries = dataset.style(styleParams);
Map.setCenter(16.35, 48.83, 4);
Map.addLayer(countries, {}, 'USDOS/LSIB/2017', true, 0.8);
Open in Code Editor

Visualize as a FeatureView

A FeatureView is a view-only, accelerated representation of a FeatureCollection. For more details, visit the FeatureView documentation.

Code Editor (JavaScript)

var fvLayer = ui.Map.FeatureViewLayer('USDOS/LSIB/2017_FeatureView');

var visParams = {
  color: '00909F',
  fillColor: 'b5ffb4',
  width: 3,
  opacity: 1
};

fvLayer.setVisParams(visParams);
fvLayer.setName('USDOS/LSIB/2017');

Map.setCenter(16.35, 48.83, 4);
Map.add(fvLayer);
Open in Code Editor