Skip to content

Instantly share code, notes, and snippets.

@brunob
Created May 15, 2012 09:34
Show Gist options
  • Save brunob/2700390 to your computer and use it in GitHub Desktop.
Save brunob/2700390 to your computer and use it in GitHub Desktop.
tilestache debug
""" Provider that returns vector representation of features in a data source.
This is a provider that does not return an image, but rather queries
a data source for raw features and replies with a vector representation
such as GeoJSON. For example, it's possible to retrieve data for
locations of OpenStreetMap points of interest or street centerlines
contained within a tile's boundary.
Many Polymaps (http://polymaps.org) examples use GeoJSON vector data tiles,
which can be effectively created using this provider.
Vector functionality is provided by OGR (http://www.gdal.org/ogr/).
Thank you, Frank Warmerdam.
Currently two serializations and three encodings are supported for a total
of six possible kinds of output with these tile name extensions:
GeoJSON (.geojson):
See http://geojson.org/geojson-spec.html
Arc GeoServices JSON (.arcjson):
See http://www.esri.com/library/whitepapers/pdfs/geoservices-rest-spec.pdf
GeoBSON (.geobson) and Arc GeoServices BSON (.arcbson):
BSON-encoded GeoJSON and Arc JSON, see http://bsonspec.org/#/specification
GeoAMF (.geoamf) and Arc GeoServices AMF (.arcamf):
AMF0-encoded GeoJSON and Arc JSON, see:
http://opensource.adobe.com/wiki/download/attachments/1114283/amf0_spec_121207.pdf
Possible future supported formats might include KML and others. Get in touch
via Github to suggest other formats: http://github.com/migurski/TileStache.
Common parameters:
driver:
String used to identify an OGR driver. Currently, "ESRI Shapefile",
"PostgreSQL", "MySQL", Oracle, Spatialite and "GeoJSON" are supported as
data source drivers, with "postgis" and "shapefile" accepted as synonyms.
Not case-sensitive.
OGR's complete list of potential formats can be found here:
http://www.gdal.org/ogr/ogr_formats.html. Feel free to get in touch via
Github to suggest new formats: http://github.com/migurski/TileStache.
parameters:
Dictionary of parameters for each driver.
PostgreSQL:
"dbname" parameter is required, with name of database.
"host", "user", and "password" are optional connection parameters.
One of "table" or "query" is required, with a table name in the first
case and a complete SQL query in the second.
Shapefile and GeoJSON:
"file" parameter is required, with filesystem path to data file.
properties:
Optional list or dictionary of case-sensitive output property names.
If omitted, all fields from the data source will be included in response.
If a list, treated as a whitelist of field names to include in response.
If a dictionary, treated as a whitelist and re-mapping of field names.
clipped:
Default is true.
Boolean flag for optionally clipping the output geometries to the
bounds of the enclosing tile, or the string value "padded" for clipping
to the bounds of the tile plus 5%. This results in incomplete geometries,
dramatically smaller file sizes, and improves performance and
compatibility with Polymaps (http://polymaps.org).
projected:
Default is false.
Boolean flag for optionally returning geometries in projected rather than
geographic coordinates. Typically this means EPSG:900913 a.k.a. spherical
mercator projection. Stylistically a poor fit for GeoJSON, but useful
when returning Arc GeoServices responses.
precision:
Default is 6.
Optional number of decimal places to use for floating point values.
spacing:
Optional number of tile pixels for spacing geometries in responses. Used
to cut down on the number of returned features by ensuring that only those
features at least this many pixels apart are returned. Order of features
in the data source matters: early features beat out later features.
verbose:
Default is false.
Boolean flag for optionally expanding output with additional whitespace
for readability. Results in larger but more readable GeoJSON responses.
id_property:
Default is None.
Sets the id of the geojson feature to the specified field of the data source.
This can be used, for example, to identify a unique key field for the feature.
Example TileStache provider configuration:
"vector-postgis-points":
{
"provider": {"name": "vector", "driver": "PostgreSQL",
"parameters": {"dbname": "geodata", "user": "geodata",
"table": "planet_osm_point"}}
}
"vector-postgis-lines":
{
"provider": {"name": "vector", "driver": "postgis",
"parameters": {"dbname": "geodata", "user": "geodata",
"table": "planet_osm_line"}}
}
"vector-shapefile-points":
{
"provider": {"name": "vector", "driver": "ESRI Shapefile",
"parameters": {"file": "oakland-uptown-point.shp"},
"properties": ["NAME", "HIGHWAY"]}
}
"vector-shapefile-lines":
{
"provider": {"name": "vector", "driver": "shapefile",
"parameters": {"file": "oakland-uptown-line.shp"},
"properties": {"NAME": "name", "HIGHWAY": "highway"}}
}
"vector-postgis-query":
{
"provider": {"name": "vector", "driver": "PostgreSQL",
"parameters": {"dbname": "geodata", "user": "geodata",
"query": "SELECT osm_id, name, highway, way FROM planet_osm_line WHERE SUBSTR(name, 1, 1) = '1'"}}
}
"vector-sf-streets":
{
"provider": {"name": "vector", "driver": "GeoJSON",
"parameters": {"file": "stclines.json"},
"properties": ["STREETNAME"]}
}
Caveats:
Your data source must have a valid defined projection, or OGR will not know
how to correctly filter and reproject it. Although response tiles are typically
in web (spherical) mercator projection, the actual vector content of responses
is unprojected back to plain WGS84 latitude and longitude.
If you are using PostGIS and spherical mercator a.k.a. SRID 900913,
you can save yourself a world of trouble by using this definition:
http://github.com/straup/postgis-tools/raw/master/spatial_ref_900913-8.3.sql
"""
from re import compile
from urlparse import urlparse, urljoin
try:
from json import JSONEncoder, loads as json_loads
except ImportError:
from simplejson import JSONEncoder, loads as json_loads
try:
from osgeo import ogr, osr
except ImportError:
# At least we'll be able to build the documentation.
pass
from TileStache.Core import KnownUnknown
from TileStache.Geography import getProjectionByName
from Arc import reserialize_to_arc, pyamf_classes
class VectorResponse:
""" Wrapper class for Vector response that makes it behave like a PIL.Image object.
TileStache.getTile() expects to be able to save one of these to a buffer.
Constructor arguments:
- content: Vector data to be serialized, typically a dictionary.
- verbose: Boolean flag to expand response for better legibility.
"""
def __init__(self, content, verbose, precision=6):
self.content = content
self.verbose = verbose
self.precision = precision
def save(self, out, format):
"""
"""
#
# Serialize
#
if format == 'WKT':
if 'wkt' in self.content['crs']:
out.write(self.content['crs']['wkt'])
else:
out.write(_sref_4326().ExportToWkt())
return
if format in ('GeoJSON', 'GeoBSON', 'GeoAMF'):
content = self.content
if 'wkt' in content['crs']:
content['crs'] = {'type': 'link', 'properties': {'href': '0.wkt', 'type': 'ogcwkt'}}
else:
del content['crs']
elif format in ('ArcJSON', 'ArcBSON', 'ArcAMF'):
content = reserialize_to_arc(self.content, format == 'ArcAMF')
else:
raise KnownUnknown('Vector response only saves .geojson, .arcjson, .geobson, .arcbson, .geoamf, .arcamf and .wkt tiles, not "%s"' % format)
#
# Encode
#
if format in ('GeoJSON', 'ArcJSON'):
indent = self.verbose and 2 or None
encoded = JSONEncoder(indent=indent).iterencode(content)
float_pat = compile(r'^-?\d+\.\d+$')
for atom in encoded:
if float_pat.match(atom):
out.write(('%%.%if' % self.precision) % float(atom))
else:
out.write(atom)
elif format in ('GeoBSON', 'ArcBSON'):
import bson
encoded = bson.dumps(content)
out.write(encoded)
elif format in ('GeoAMF', 'ArcAMF'):
import pyamf
for class_name in pyamf_classes.items():
pyamf.register_class(*class_name)
encoded = pyamf.encode(content, 0).read()
out.write(encoded)
def _sref_4326():
"""
"""
sref = osr.SpatialReference()
proj = getProjectionByName('WGS84')
sref.ImportFromProj4(proj.srs)
return sref
def _tile_perimeter(coord, projection, padded):
""" Get a tile's outer edge for a coordinate and a projection.
Returns a list of 17 (x, y) coordinates corresponding to a clockwise
circumambulation of a tile boundary in a given projection. Projection
is like those found in TileStache.Geography, used for tile output.
If padded argument is True, pad bbox by 5% on all sides.
"""
if padded:
ul = projection.coordinateProj(coord.left(0.05).up(0.05))
lr = projection.coordinateProj(coord.down(1.05).right(1.05))
else:
ul = projection.coordinateProj(coord)
lr = projection.coordinateProj(coord.right().down())
xmin, ymin, xmax, ymax = ul.x, ul.y, lr.x, lr.y
xspan, yspan = xmax - xmin, ymax - ymin
perimeter = [
(xmin, ymin),
(xmin + 1 * xspan/4, ymin),
(xmin + 2 * xspan/4, ymin),
(xmin + 3 * xspan/4, ymin),
(xmax, ymin),
(xmax, ymin + 1 * yspan/4),
(xmax, ymin + 2 * yspan/4),
(xmax, ymin + 3 * yspan/4),
(xmax, ymax),
(xmax - 1 * xspan/4, ymax),
(xmax - 2 * xspan/4, ymax),
(xmax - 3 * xspan/4, ymax),
(xmin, ymax),
(xmin, ymax - 1 * yspan/4),
(xmin, ymax - 2 * yspan/4),
(xmin, ymax - 3 * yspan/4),
(xmin, ymin)
]
return perimeter
def _tile_perimeter_width(coord, projection):
""" Get the width in projected coordinates of the coordinate tile polygon.
Uses _tile_perimeter().
"""
perimeter = _tile_perimeter(coord, projection, False)
return perimeter[8][0] - perimeter[0][0]
def _tile_perimeter_geom(coord, projection, padded):
""" Get an OGR Geometry object for a coordinate tile polygon.
Uses _tile_perimeter().
"""
perimeter = _tile_perimeter(coord, projection, padded)
wkt = 'POLYGON((%s))' % ', '.join(['%.3f %.3f' % xy for xy in perimeter])
geom = ogr.CreateGeometryFromWkt(wkt)
ref = osr.SpatialReference()
ref.ImportFromProj4(projection.srs)
geom.AssignSpatialReference(ref)
return geom
def _feature_properties(feature, layer_definition, whitelist=None):
""" Returns a dictionary of feature properties for a feature in a layer.
Third argument is an optional list or dictionary of properties to
whitelist by case-sensitive name - leave it None to include everything.
A dictionary will cause property names to be re-mapped.
OGR property types:
OFTInteger (0), OFTIntegerList (1), OFTReal (2), OFTRealList (3),
OFTString (4), OFTStringList (5), OFTWideString (6), OFTWideStringList (7),
OFTBinary (8), OFTDate (9), OFTTime (10), OFTDateTime (11).
"""
properties = {}
okay_types = ogr.OFTInteger, ogr.OFTReal, ogr.OFTString, ogr.OFTWideString
for index in range(layer_definition.GetFieldCount()):
field_definition = layer_definition.GetFieldDefn(index)
field_type = field_definition.GetType()
if field_type not in okay_types:
try:
name = [oft for oft in dir(ogr) if oft.startswith('OFT') and getattr(ogr, oft) == field_type][0]
except IndexError:
raise KnownUnknown("Found an OGR field type I've never even seen: %d" % field_type)
else:
raise KnownUnknown("Found an OGR field type I don't know what to do with: ogr.%s" % name)
name = field_definition.GetNameRef()
if type(whitelist) in (list, dict) and name not in whitelist:
continue
property = type(whitelist) is dict and whitelist[name] or name
properties[property] = feature.GetField(name)
return properties
def _append_with_delim(s, delim, data, key):
if key in data:
return s + delim + str(data[key])
else:
return s
def _open_layer(driver_name, parameters, dirpath):
""" Open a layer, return it and its datasource.
Dirpath comes from configuration, and is used to locate files.
"""
#
# Set up the driver
#
okay_drivers = {'postgis': 'PostgreSQL', 'esri shapefile': 'ESRI Shapefile',
'postgresql': 'PostgreSQL', 'shapefile': 'ESRI Shapefile',
'geojson': 'GeoJSON', 'spatialite': 'SQLite', 'oracle': 'OCI', 'mysql': 'MySQL'}
if driver_name.lower() not in okay_drivers:
raise KnownUnknown('Got a driver type Vector doesn\'t understand: "%s". Need one of %s.' % (driver_name, ', '.join(okay_drivers.keys())))
driver_name = okay_drivers[driver_name.lower()]
driver = ogr.GetDriverByName(str(driver_name))
#
# Set up the datasource
#
if driver_name == 'PostgreSQL':
if 'dbname' not in parameters:
raise KnownUnknown('Need at least a "dbname" parameter for postgis')
conn_parts = []
for part in ('dbname', 'user', 'host', 'password', 'port'):
if part in parameters:
conn_parts.append("%s='%s'" % (part, parameters[part]))
source_name = 'PG:' + ' '.join(conn_parts)
elif driver_name == 'MySQL':
if 'dbname' not in parameters:
raise KnownUnknown('Need a "dbname" parameter for MySQL')
if 'table' not in parameters:
raise KnownUnknown('Need a "table" parameter for MySQL')
conn_parts = []
for part in ('host', 'port', 'user', 'password'):
if part in parameters:
conn_parts.append("%s=%s" % (part, parameters[part]))
source_name = 'MySql:' + parameters["dbname"] + "," + ','.join(conn_parts) + ",tables=" + parameters['table']
elif driver_name == 'OCI':
if 'host' not in parameters:
raise KnownUnknown('Need a "host" parameter for oracle')
if 'table' not in parameters:
raise KnownUnknown('Need a "table" parameter for oracle')
source_name = 'OCI:'
source_name = _append_with_delim(source_name, '', parameters, 'user')
source_name = _append_with_delim(source_name, '/', parameters, 'password')
if 'user' in parameters:
source_name = source_name + '@'
source_name = source_name + parameters['host']
source_name = _append_with_delim(source_name, ':', parameters, 'port')
source_name = _append_with_delim(source_name, '/', parameters, 'dbname')
source_name = source_name + ":" + parameters['table']
elif driver_name in ('ESRI Shapefile', 'GeoJSON', 'SQLite'):
if 'file' not in parameters:
raise KnownUnknown('Need at least a "file" parameter for a shapefile')
file_href = urljoin(dirpath, parameters['file'])
scheme, h, file_path, q, p, f = urlparse(file_href)
if scheme not in ('file', ''):
raise KnownUnknown('Shapefiles need to be local, not %s' % file_href)
source_name = file_path
datasource = driver.Open(str(source_name))
if datasource is None:
raise KnownUnknown('Couldn\'t open datasource %s' % source_name)
#
# Set up the layer
#
if driver_name == 'PostgreSQL' or driver_name == 'OCI' or driver_name == 'MySQL':
if 'query' in parameters:
layer = datasource.ExecuteSQL(str(parameters['query']))
elif 'table' in parameters:
layer = datasource.GetLayerByName(str(parameters['table']))
else:
raise KnownUnknown('Need at least a "query" or "table" parameter for postgis or oracle')
elif driver_name == 'SQLite':
layer = datasource.GetLayerByName(str(parameters['layer']))
else:
layer = datasource.GetLayer(0)
if layer.GetSpatialRef() is None and driver_name != 'SQLite':
raise KnownUnknown('Couldn\'t get a layer from data source %s' % source_name)
#
# Return the layer and the datasource.
#
# Technically, the datasource is no longer needed
# but layer segfaults when it falls out of scope.
#
return layer, datasource
def _get_features(coord, properties, projection, layer, clipped, projected, spacing, id_property):
""" Return a list of features in an OGR layer with properties in GeoJSON form.
Optionally clip features to coordinate bounding box, and optionally
limit returned features to only those separated by number of pixels
given as spacing.
"""
#
# Prepare output spatial reference - always WGS84.
#
if projected:
output_sref = osr.SpatialReference()
output_sref.ImportFromProj4(projection.srs)
else:
output_sref = _sref_4326()
#
# Load layer information
#
definition = layer.GetLayerDefn()
layer_sref = layer.GetSpatialRef()
print "layer %s" % layer
print "layer_sref %s" % layer_sref
if layer_sref == None:
layer_sref = _sref_4326()
#
# Spatially filter the layer
#
bbox = _tile_perimeter_geom(coord, projection, clipped == 'padded')
print "bbox 1 %s" % bbox
bbox.TransformTo(layer_sref)
print "bbox to layer_sref %s" % bbox
layer.SetSpatialFilter(bbox)
before = []
features = []
print "spacing %s" % spacing
print "coord %s" % coord
print "projection %s" % projection
print "_tile_perimeter_width %s" % _tile_perimeter_width(coord, projection)
mask = None
if spacing is not None:
buffer = spacing * _tile_perimeter_width(coord, projection) / 256.
print "buffer %s" % buffer
for feature in layer:
geometry = feature.geometry().Clone()
before.append(feature)
if not geometry.Intersect(bbox):
continue
if mask and geometry.Intersect(mask):
continue
if clipped:
geometry = geometry.Intersection(bbox)
if geometry is None:
# may indicate a TopologyException
continue
# mask out subsequent features if spacing is defined
if mask and buffer:
mask = geometry.Buffer(buffer, 2).Union(mask)
elif spacing is not None:
mask = geometry.Buffer(buffer, 2)
geometry.AssignSpatialReference(layer_sref)
geometry.TransformTo(output_sref)
geom = json_loads(geometry.ExportToJson())
prop = _feature_properties(feature, definition, properties)
geojson_feature = {'type': 'Feature', 'properties': prop, 'geometry': geom}
if id_property != None and id_property in prop:
geojson_feature['id'] = prop[id_property]
features.append(geojson_feature)
print "mask %s" % mask
print "before %s" % len(before)
print "features %s" % len(features)
return features
class Provider:
""" Vector Provider for OGR datasources.
See module documentation for explanation of constructor arguments.
"""
def __init__(self, layer, driver, parameters, clipped, verbose, projected, spacing, properties, precision, id_property):
self.layer = layer
self.driver = driver
self.clipped = clipped
self.verbose = verbose
self.projected = projected
self.spacing = spacing
self.parameters = parameters
self.properties = properties
self.precision = precision
self.id_property = id_property
def renderTile(self, width, height, srs, coord):
""" Render a single tile, return a VectorResponse instance.
"""
layer, ds = _open_layer(self.driver, self.parameters, self.layer.config.dirpath)
features = _get_features(coord, self.properties, self.layer.projection, layer, self.clipped, self.projected, self.spacing, self.id_property)
response = {'type': 'FeatureCollection', 'features': features}
if self.projected:
sref = osr.SpatialReference()
sref.ImportFromProj4(self.layer.projection.srs)
response['crs'] = {'wkt': sref.ExportToWkt()}
if srs == getProjectionByName('spherical mercator').srs:
response['crs']['wkid'] = 102113
else:
response['crs'] = {'srid': 4326, 'wkid': 4326}
return VectorResponse(response, self.verbose, self.precision)
def getTypeByExtension(self, extension):
""" Get mime-type and format by file extension.
This only accepts "geojson" for the time being.
"""
if extension.lower() == 'geojson':
return 'text/json', 'GeoJSON'
elif extension.lower() == 'arcjson':
return 'text/json', 'ArcJSON'
elif extension.lower() == 'geobson':
return 'application/x-bson', 'GeoBSON'
elif extension.lower() == 'arcbson':
return 'application/x-bson', 'ArcBSON'
elif extension.lower() == 'geoamf':
return 'application/x-amf', 'GeoAMF'
elif extension.lower() == 'arcamf':
return 'application/x-amf', 'ArcAMF'
elif extension.lower() == 'wkt':
return 'text/x-wkt', 'WKT'
raise KnownUnknown('Vector Provider only makes .geojson, .arcjson, .geobson, .arcbson, .geoamf, .arcamf and .wkt tiles, not "%s"' % extension)
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-15.5998241901,
27.735057086
]
},
"properties": {
"name": "Pyroclastiques Maspalomas",
"icon": "http://www.geodiversite.net/local/cache-gd2/5bafd9d8fcd92d64d20b62cb661b2c49.jpg"
},
"id": "834"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-15.5681419373,
27.7459106903
]
},
"properties": {
"name": "Mégadune sableuse Maspalomas",
"icon": "http://www.geodiversite.net/local/cache-gd2/8dfea028796af5b18ed768f2d4500155.jpg"
},
"id": "833"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.41909525415,
48.1940374657
]
},
"properties": {
"name": "Minerai d’andalousite - détail - Glomel",
"icon": "http://www.geodiversite.net/local/cache-gd2/4b711d555c1aeb552e0fef43cbcf7a57.jpg"
},
"id": "831"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.41838715097,
48.1938944265
]
},
"properties": {
"name": "Minerai d’andalousite - Glomel",
"icon": "http://www.geodiversite.net/local/cache-gd2/2568598299dfb85d9e4d75846467f974.jpg"
},
"id": "830"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.41712114832,
48.1949099961
]
},
"properties": {
"name": "Dumper - carrière d’andalousite - Glomel",
"icon": "http://www.geodiversite.net/local/cache-gd2/2aa87bd907b78391359f50c98229808a.jpg"
},
"id": "829"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.41913816949,
48.1943664543
]
},
"properties": {
"name": "Fosse 2 - Carrière d’andalousite - Glomel",
"icon": "http://www.geodiversite.net/local/cache-gd2/828ece7d601e851d7c042a69c38ee938.jpg"
},
"id": "828"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.25802629759,
47.7920710682
]
},
"properties": {
"name": "Cordon dunaire ",
"icon": "http://www.geodiversite.net/local/cache-gd2/1eff46893a956e1902cb3107a54995bc.jpg"
},
"id": "827"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.70580689404,
48.0484522932
]
},
"properties": {
"name": "Falaises et sable fin",
"icon": "http://www.geodiversite.net/local/cache-gd2/ad2c5648cbfb573a93fc88cfff1ab5c0.jpg"
},
"id": "826"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.72280137036,
48.0414517039
]
},
"properties": {
"name": "Paysage rocheux de la pointe du Raz",
"icon": "http://www.geodiversite.net/local/cache-gd2/bb916c18ec8e29b3957d9e488c29cd2a.jpg"
},
"id": "825"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.74086873029,
48.0405335232
]
},
"properties": {
"name": "Pointe du Raz",
"icon": "http://www.geodiversite.net/local/cache-gd2/2f2cca4b2f919cb3c68f1b2d38601ed7.jpg"
},
"id": "824"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.74065415356,
48.0403039755
]
},
"properties": {
"name": " Pointe du Raz",
"icon": "http://www.geodiversite.net/local/cache-gd2/0b9d30264882908cdadb1ab2b09daf00.jpg"
},
"id": "823"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.48201498141,
43.9093592964
]
},
"properties": {
"name": "Résurgence de source",
"icon": "http://www.geodiversite.net/local/cache-gd2/305c64a25397ba120d32f95442b0ea4f.jpg"
},
"id": "822"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.48308786502,
43.9090964942
]
},
"properties": {
"name": "Coulée d’ocre",
"icon": "http://www.geodiversite.net/local/cache-gd2/ae486b9b45441d13568dce7ce128d428.jpg"
},
"id": "821"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.48201498141,
43.9093438374
]
},
"properties": {
"name": "Coulée ocreuse",
"icon": "http://www.geodiversite.net/local/cache-gd2/75429462fb31bafa8bb5d3b5379e602b.jpg"
},
"id": "820"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.48107084384,
43.9098539797
]
},
"properties": {
"name": "Couche ocreuse",
"icon": "http://www.geodiversite.net/local/cache-gd2/375e791c75c7a497161688c1101f4d90.jpg"
},
"id": "819"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.48016962161,
43.9102868243
]
},
"properties": {
"name": "Glauconie",
"icon": "http://www.geodiversite.net/local/cache-gd2/3edb37df07566793c885642122f9ced1.jpg"
},
"id": "818"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.48092064014,
43.9099274089
]
},
"properties": {
"name": "Anfractuosité...",
"icon": "http://www.geodiversite.net/local/cache-gd2/9d9e78ec28c4bd139ea3eb712d63c7db.jpg"
},
"id": "817"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.48967537036,
43.9139156383
]
},
"properties": {
"name": "\"Catastrophe ferroviaire\"",
"icon": "http://www.geodiversite.net/local/cache-gd2/3c941f4dd34ff114c4314df394a065fd.jpg"
},
"id": "816"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.6437702179,
48.6964559723
]
},
"properties": {
"name": "Orthogneiss de 2 milliards d’années à Locquirec en Bretagne",
"icon": "http://www.geodiversite.net/local/cache-gd2/49f8161da9d3b2ce0ebaec5d4ee3bbc8.jpg"
},
"id": "815"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.7225575448,
48.3572684683
]
},
"properties": {
"name": "Galerie des charioteurs - Mine Locmaria-Berrien",
"icon": "http://www.geodiversite.net/local/cache-gd2/51dd1c212cf771aad3f7e2e1501d2a8b.jpg"
},
"id": "814"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.72367334375,
48.3557713275
]
},
"properties": {
"name": "Plan de la mine de Locmaria-Berrien",
"icon": "http://www.geodiversite.net/local/cache-gd2/966e2d37307c6d58323b518d1291ce23.jpg"
},
"id": "813"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.72073364267,
48.3552152355
]
},
"properties": {
"name": "Galerie de l’aqueduc - Mine de Locmaria-Berrien",
"icon": "http://www.geodiversite.net/local/cache-gd2/c2f1e8d2011646e57dbc6f285f47fbf9.jpg"
},
"id": "812"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.69556008598,
48.3538032409
]
},
"properties": {
"name": "Regard sur l’ancienne mine de Poullaouën : une mine d’informations",
"icon": "http://www.geodiversite.net/local/cache-gd2/0106dbba037472ce5447f232fb6a768f.jpg"
},
"id": "810"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.69556915769,
48.3537928954
]
},
"properties": {
"name": "Minerai ",
"icon": "http://www.geodiversite.net/local/cache-gd2/9a73f7b4dd2d2e67c5d5811696100d2b.jpg"
},
"id": "809"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.77316726971,
48.7061623131
]
},
"properties": {
"name": "Brèche ",
"icon": "http://www.geodiversite.net/local/cache-gd2/0045027efe6869b1a371eb3ef890bf07.jpg"
},
"id": "807"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.43236157413,
47.9679837108
]
},
"properties": {
"name": "Schistes à gogo",
"icon": "http://www.geodiversite.net/local/cache-gd2/ccd0e2934215cdacdc32aeb8c4951f25.jpg"
},
"id": "808"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.50326538086,
48.8371533339
]
},
"properties": {
"name": "Pleumeur Bodou Landrellec par STEREDEN 2010-11 photo n14",
"icon": "http://www.geodiversite.net/local/cache-gd2/25a44b7e86adac38cd7591fec518a19a.jpg"
},
"id": "805"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.4858417511,
48.835740967
]
},
"properties": {
"name": "Perros-Guirec site de Ploumanach",
"icon": "http://www.geodiversite.net/local/cache-gd2/01f22b3b2420cdf1cdca24c53319f4ac.jpg"
},
"id": "804"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.47487645261,
48.8319707658
]
},
"properties": {
"name": "Détail du granite de la Clarté - Ploumanac’h",
"icon": "http://www.geodiversite.net/local/cache-gd2/23749a3a240f8698fa1d3cac45baefd9.jpg"
},
"id": "803"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.4748825111,
48.8321885089
]
},
"properties": {
"name": "Granite de la Clarté- Ploumanac’h",
"icon": "http://www.geodiversite.net/local/cache-gd2/64564993b59f62d81e520b2c680d8a8e.jpg"
},
"id": "802"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.72313315344,
48.3569583864
]
},
"properties": {
"name": "Présentation de l’ancienne mine de Locmaria-Berrien et Huelgoat",
"icon": "http://www.geodiversite.net/local/cache-gd2/ebf7ab7208363ef77561be63b7b84bf4.jpg"
},
"id": "801"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.5718002319,
45.8254499466
]
},
"properties": {
"name": "FundyBay HopewellCape Carboniferous Conglomerate msfs",
"icon": "http://www.geodiversite.net/local/cache-gd2/5fb7c1fe703aa551bf65867c83665ac1.jpg"
},
"id": "800"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.778137207,
45.5967439285
]
},
"properties": {
"name": " FundyBay Cape Enrage Cliff Carboniferous deep basins msfs",
"icon": "http://www.geodiversite.net/local/cache-gd2/4e8398a44070b2773af50f5661f4d387.jpg"
},
"id": "799"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.51752005684,
56.5859322064
]
},
"properties": {
"name": "Arbroath cliffs (Ecosse)",
"icon": "http://www.geodiversite.net/local/cache-gd2/227095006c4b94472fde8fff676dfc13.jpg"
},
"id": "797"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-6.26867215851,
58.3049729942
]
},
"properties": {
"name": "Coupe de la tourbe",
"icon": "http://www.geodiversite.net/local/cache-gd2/2b5fe9b9f55dc6270eb19a05ce622646.jpg"
},
"id": "796"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.02706230942,
47.849786037
]
},
"properties": {
"name": "Sables blancs et eaux turquoises",
"icon": "http://www.geodiversite.net/local/cache-gd2/ad44db12673e1a2608527171d9c3daa0.jpg"
},
"id": "795"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.01740635696,
47.8535442335
]
},
"properties": {
"name": "le polder de Mousterlin (Finistère)",
"icon": "http://www.geodiversite.net/local/cache-gd2/14ce115a55fc26bf96aca98ba80ac4b0.jpg"
},
"id": "794"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.46568489075,
48.2387087539
]
},
"properties": {
"name": "Postolonnec.",
"icon": "http://www.geodiversite.net/local/cache-gd2/53e1e78bd30b586de0f11c00a81f05f0.jpg"
},
"id": "793"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.601136446,
48.2849955866
]
},
"properties": {
"name": "ripple marks plage du Koréjou à Camaret",
"icon": "http://www.geodiversite.net/local/cache-gd2/5772a2a1842c0fa29cf3df22f375bb2d.jpg"
},
"id": "792"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.60075289011,
48.286487667
]
},
"properties": {
"name": "mégarides sur la plage du Koréjou",
"icon": "http://www.geodiversite.net/local/cache-gd2/e1823e80d661d73861c4e2459526e6f8.jpg"
},
"id": "791"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.60072338581,
48.2865019451
]
},
"properties": {
"name": "plage fossilisée",
"icon": "http://www.geodiversite.net/local/cache-gd2/30900a0cc8878f0f103548b675ca1cec.jpg"
},
"id": "790"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.65971589088,
48.3502600826
]
},
"properties": {
"name": "Trégana, Plouzané, Finistère : Granite altéré 2/2, Zoom",
"icon": "http://www.geodiversite.net/local/cache-gd2/e609c5c2b7e3a74b9fc50c7a14f6a581.jpg"
},
"id": "789"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.65971589088,
48.3502600826
]
},
"properties": {
"name": "Trégana, Plouzané, Finistère : Granita altere 1/2",
"icon": "http://www.geodiversite.net/local/cache-gd2/6a50f939824db014d42182b5f443af7f.jpg"
},
"id": "788"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.78686788436,
44.2238543838
]
},
"properties": {
"name": "Sagnos",
"icon": "http://www.geodiversite.net/local/cache-gd2/57ef8143082198e353adeaa2f4bf6fcc.jpg"
},
"id": "786"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.810103,
44.220854
]
},
"properties": {
"name": "Vers la Tinée",
"icon": "http://www.geodiversite.net/local/cache-gd2/48f2340c9a72df93f18cb106efeeb9d9.jpg"
},
"id": "785"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.75474343412,
44.2476875187
]
},
"properties": {
"name": "Source du Var (1780 m.)",
"icon": "http://www.geodiversite.net/local/cache-gd2/4ec2c1b90371b93e812306bb50db0efd.jpg"
},
"id": "784"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.75474343412,
44.2476875187
]
},
"properties": {
"name": "Source du Var (1780 m.)",
"icon": "http://www.geodiversite.net/local/cache-gd2/4ec2c1b90371b93e812306bb50db0efd.jpg"
},
"id": "784"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.72355081349,
44.2538737741
]
},
"properties": {
"name": "Lac du Lausson (2600 m.)",
"icon": "http://www.geodiversite.net/local/cache-gd2/808e4405e3c7ce532d0eb0c5011876d3.jpg"
},
"id": "783"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.80896574338,
44.2221803192
]
},
"properties": {
"name": "Casemates napoléoniennes",
"icon": "http://www.geodiversite.net/local/cache-gd2/f146c2117d40086b94af6e27b3c61b7f.jpg"
},
"id": "782"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.80199199994,
44.2258054392
]
},
"properties": {
"name": "Vu sous un autre angle...",
"icon": "http://www.geodiversite.net/local/cache-gd2/07aebe9d9bce3b14dc0f86935d34ef18.jpg"
},
"id": "781"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.810103,
44.220854
]
},
"properties": {
"name": "Col de Gialorgues (2519 m.)",
"icon": "http://www.geodiversite.net/local/cache-gd2/0df4afedfc82d73a1de62932ee28bdd9.jpg"
},
"id": "780"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.773312,
44.228056
]
},
"properties": {
"name": "Vallon de l’Estrop",
"icon": "http://www.geodiversite.net/local/cache-gd2/7e1838d269d137941fba0daa6dd09eb4.jpg"
},
"id": "779"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.743611,
44.259771
]
},
"properties": {
"name": "Col de la Cayolle (alt. 2326 m.)",
"icon": "http://www.geodiversite.net/local/cache-gd2/871760f19f738055b2298eb981e2dc29.jpg"
},
"id": "778"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.70935984717,
44.2334915615
]
},
"properties": {
"name": "Lac d’Allos (alt. 2228 m.)",
"icon": "http://www.geodiversite.net/local/cache-gd2/e8deef45ad3afd6a21250e46f6ec78c8.jpg"
},
"id": "777"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.93060762882,
48.3576071392
]
},
"properties": {
"name": "Tourbières de Yeun Elez",
"icon": "http://www.geodiversite.net/local/cache-gd2/ea30b8c5a42241250ae6350383c33281.jpg"
},
"id": "776"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.93398086967,
48.3620042686
]
},
"properties": {
"name": "Schistes et quartz du Tuchenn Kador",
"icon": "http://www.geodiversite.net/local/cache-gd2/e739744615e4f28006eaa22b19aa7166.jpg"
},
"id": "775"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.4562376674,
47.3076665482
]
},
"properties": {
"name": "Marais salants de Guérande",
"icon": "http://www.geodiversite.net/local/cache-gd2/2408efc49436d887f90122c95b360c1e.jpg"
},
"id": "774"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.927962,
45.920386
]
},
"properties": {
"name": "Au pied de la mer de glace",
"icon": "http://www.geodiversite.net/local/cache-gd2/2297d794f1898e5bbcf1c73144aee7ef.jpg"
},
"id": "773"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.87966872565,
46.0997905515
]
},
"properties": {
"name": "Massif de Tenneverge (alt. 2969 m.)",
"icon": "http://www.geodiversite.net/local/cache-gd2/b871be59f6c543a4ac7c76ece853b1b3.jpg"
},
"id": "772"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.8639374,
45.8324787
]
},
"properties": {
"name": "Le Mont Blanc (alt. 48... m.)",
"icon": "http://www.geodiversite.net/local/cache-gd2/4fd99c5ca5358a64e336e49f7b5e82c4.jpg"
},
"id": "771"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.957624,
45.933096
]
},
"properties": {
"name": "Aiguille du Dru (alt. 3754 m.)",
"icon": "http://www.geodiversite.net/local/cache-gd2/3c0ce7b3c213f3017e90ef80dfcaf54e.jpg"
},
"id": "770"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.93363705322,
45.8833595059
]
},
"properties": {
"name": "La mer de glace",
"icon": "http://www.geodiversite.net/local/cache-gd2/58c3850944ceec001fad5ee95a75a369.jpg"
},
"id": "769"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.888288,
45.878497
]
},
"properties": {
"name": "Aiguille du Midi (alt. 3842 m.)",
"icon": "http://www.geodiversite.net/local/cache-gd2/1d73ae96d91520ae060f8ed0aed6a1e9.jpg"
},
"id": "768"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.62978187766,
43.6769388263
]
},
"properties": {
"name": "Alt. 22.80m",
"icon": "http://www.geodiversite.net/local/cache-gd2/a1b45007c4054691abdb08bc2df2a065.jpg"
},
"id": "767"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
3.56813645483,
44.3292330458
]
},
"properties": {
"name": "Les monts de Lozère",
"icon": "http://www.geodiversite.net/local/cache-gd2/70c04982cce42ce5bbb65fa10062b7fa.jpg"
},
"id": "766"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-1.404923,
47.93653
]
},
"properties": {
"name": "La roche aux fées (Ile et Vilaine)",
"icon": "http://www.geodiversite.net/local/cache-gd2/9e4f8bdcee43fc0f1db64ba259d5de41.jpg"
},
"id": "765"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.56191546494,
48.0021037617
]
},
"properties": {
"name": "Festival de galets",
"icon": "http://www.geodiversite.net/local/cache-gd2/40bb8a4e15c927493d72af2d2386e08d.jpg"
},
"id": "764"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.851465,
43.351483
]
},
"properties": {
"name": "la glacière de Pivaut restaurée",
"icon": "http://www.geodiversite.net/local/cache-gd2/badeb5ff00281464f685313e8d3bf2ee.jpg"
},
"id": "763"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.76286,
43.324145
]
},
"properties": {
"name": "Massif de la Sainte Baume",
"icon": "http://www.geodiversite.net/local/cache-gd2/7de6c1ad090eb02bee53096732c30ea8.jpg"
},
"id": "762"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.0630356546,
48.6884421532
]
},
"properties": {
"name": "Batée - opération de débourbage",
"icon": "http://www.geodiversite.net/local/cache-gd2/30b42678394557fffd9121fee164546c.jpg"
},
"id": "761"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.49704677725,
48.3988155845
]
},
"properties": {
"name": "Patron d’un cristal de Béryl",
"icon": "http://www.geodiversite.net/local/cache-gd2/6112b3f993f48c008b2d8f901a2b8b54.jpg"
},
"id": "760"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.49697167539,
48.3987942145
]
},
"properties": {
"name": "Patron d’un cristal de tourmaline",
"icon": "http://www.geodiversite.net/local/cache-gd2/95ea0d0f27d8e4d4436a652372ac1785.jpg"
},
"id": "759"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.49707842138,
48.3988037778
]
},
"properties": {
"name": "Patron d’un feldspath potassique",
"icon": "http://www.geodiversite.net/local/cache-gd2/0b090422dc924348d8750e8cb8001ce8.jpg"
},
"id": "757"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.85349626387,
35.0812706998
]
},
"properties": {
"name": "Vallée dans les Aurès",
"icon": "http://www.geodiversite.net/local/cache-gd2/61432e09c3b6d5b0314aad838b7efe7c.jpg"
},
"id": "756"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.21462315974,
56.5318548532
]
},
"properties": {
"name": "Lande de Ben Lawers (Ecosse)",
"icon": "http://www.geodiversite.net/local/cache-gd2/b838966cb6e4cbbd23c839f5b317538d.jpg"
},
"id": "755"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-1.52817256671,
48.6252355039
]
},
"properties": {
"name": "Polder ( baie du Mont St Michel)",
"icon": "http://www.geodiversite.net/local/cache-gd2/28e5c760b8005e1548f22db6e902e52b.jpg"
},
"id": "754"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-6.75246523262,
58.2006854692
]
},
"properties": {
"name": "Tourbière",
"icon": "http://www.geodiversite.net/local/cache-gd2/ba5ad645cca4e80c38bdaf2d2a068876.jpg"
},
"id": "753"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-6.35203161191,
58.2732754365
]
},
"properties": {
"name": "Briquettes de tourbe",
"icon": "http://www.geodiversite.net/local/cache-gd2/1378040eb87557255b0c8ebbe7fbdef6.jpg"
},
"id": "752"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-16.7976825714,
65.0534031203
]
},
"properties": {
"name": "Petite bombe volcanique",
"icon": "http://www.geodiversite.net/local/cache-gd2/06000ac507d6917632c4f71bbb8ba2ed.jpg"
},
"id": "751"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-19.0726464,
63.9885232
]
},
"properties": {
"name": "Obsidienne (Islande)",
"icon": "http://www.geodiversite.net/local/cache-gd2/39499c6ddf58730f3943d21c9452b922.jpg"
},
"id": "750"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.09769313125,
34.2004301991
]
},
"properties": {
"name": "Amethyste",
"icon": "http://www.geodiversite.net/local/cache-gd2/8e733a9244ecd7b0c549135bd03190f5.jpg"
},
"id": "749"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.10593287734,
34.2160462297
]
},
"properties": {
"name": "Agate, sous réserve",
"icon": "http://www.geodiversite.net/local/cache-gd2/fd70a7ebec9c92884fb5482267c215fd.jpg"
},
"id": "748"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.045261,
33.98534
]
},
"properties": {
"name": "Bois fossilisé",
"icon": "http://www.geodiversite.net/local/cache-gd2/b2b6491a1a15b45027738c19a9016bc5.jpg"
},
"id": "747"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-6.555654,
31.0604911
]
},
"properties": {
"name": "Huitre fossile",
"icon": "http://www.geodiversite.net/local/cache-gd2/a9ae778ea83b78c4979bd38f8ff8044c.jpg"
},
"id": "746"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-1.26582182422,
29.3027969825
]
},
"properties": {
"name": "Gypse \"Fer de lance\"",
"icon": "http://www.geodiversite.net/local/cache-gd2/a6f41b89405507024acfc3a9f9862239.jpg"
},
"id": "745"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.342011,
31.96298
]
},
"properties": {
"name": "Rose des sables",
"icon": "http://www.geodiversite.net/local/cache-gd2/01b579538649bb49530b1eb070ee220a.jpg"
},
"id": "744"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-1.83570268203,
48.8776120781
]
},
"properties": {
"name": "Le \"plateau\" granitique de Chausey",
"icon": "http://www.geodiversite.net/local/cache-gd2/98820f5866ea35da363771e180fc43bb.jpg"
},
"id": "742"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.18686828613,
49.1689195549
]
},
"properties": {
"name": "Grès rouge",
"icon": "http://www.geodiversite.net/local/cache-gd2/9e8847f0816c1619e8b9068d00939b87.jpg"
},
"id": "741"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.28112885048,
48.0007459602
]
},
"properties": {
"name": "Le siège de Merlin",
"icon": "http://www.geodiversite.net/local/cache-gd2/5c56dd441ea5079d1a3d30a85398426e.jpg"
},
"id": "740"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.87586136765,
43.4656696936
]
},
"properties": {
"name": "Porphyre de l’Esterel",
"icon": "http://www.geodiversite.net/local/cache-gd2/6e4ba0fc980be8d4ec70bf170bc0829d.jpg"
},
"id": "739"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.45459594708,
43.2112618591
]
},
"properties": {
"name": "Calanque de Sugiton",
"icon": "http://www.geodiversite.net/local/cache-gd2/926c4b54dbb48cb2485b609960fc5187.jpg"
},
"id": "738"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.06223195251,
48.687792854
]
},
"properties": {
"name": "Batée : chargement et tamisage",
"icon": "http://www.geodiversite.net/local/cache-gd2/751007429fae566dd3917e0e639ac7f0.jpg"
},
"id": "737"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.75055845653,
48.5401549655
]
},
"properties": {
"name": "Filon de pegmatite - Landunvez (3)",
"icon": "http://www.geodiversite.net/local/cache-gd2/87d9ea40d407c8fa87e964789f9f0b25.jpg"
},
"id": "736"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.75055845653,
48.540162069
]
},
"properties": {
"name": "Filon de pegmatite - Landunvez (2)",
"icon": "http://www.geodiversite.net/local/cache-gd2/d8aeebeee849095068d2a48d7513c2b2.jpg"
},
"id": "735"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.75053699886,
48.5401301032
]
},
"properties": {
"name": "Filon de pegmatite - Landunvez",
"icon": "http://www.geodiversite.net/local/cache-gd2/5ee53d4d32378103517d9d0ba7844373.jpg"
},
"id": "734"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.06278985199,
48.688451547
]
},
"properties": {
"name": "Grenats au fond de la batée (2)",
"icon": "http://www.geodiversite.net/local/cache-gd2/0f0ecc4ae5d57493f70c774742c75465.jpg"
},
"id": "733"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.06281130966,
48.6884373817
]
},
"properties": {
"name": "Grenats au fond de la batée",
"icon": "http://www.geodiversite.net/local/cache-gd2/6981fd3f970d0d3e78821095122daef3.jpg"
},
"id": "732"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.06281130966,
48.6884798777
]
},
"properties": {
"name": "Batées américaines (pans)",
"icon": "http://www.geodiversite.net/local/cache-gd2/c845dd44d2b3096990323242fc620935.jpg"
},
"id": "731"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.1220952699,
43.8862625066
]
},
"properties": {
"name": "Point d’arpentage",
"icon": "http://www.geodiversite.net/local/cache-gd2/c43e6b502163f9032588781b5ef4f885.jpg"
},
"id": "730"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.12213818524,
43.8862741052
]
},
"properties": {
"name": "Point d’arpentage",
"icon": "http://www.geodiversite.net/local/cache-gd2/40fb948e810e33fbf7a496982db747b6.jpg"
},
"id": "729"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.06429767609,
48.6875324307
]
},
"properties": {
"name": "Grenats récupérés à la technique de la batée",
"icon": "http://www.geodiversite.net/local/cache-gd2/dc604aa3ce6e4c3cd12be6be8a707365.jpg"
},
"id": "728"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.06313317474,
48.6877716057
]
},
"properties": {
"name": "échantillon de mica blanc",
"icon": "http://www.geodiversite.net/local/cache-gd2/4274c9811ca919ac45b59b64cf4f2a23.jpg"
},
"id": "727"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.0621675795,
48.6880407502
]
},
"properties": {
"name": "pegmatite graphique",
"icon": "http://www.geodiversite.net/local/cache-gd2/1a41466ed4978adf355be6bf1f3b1421.jpg"
},
"id": "726"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.06296730042,
48.6879007352
]
},
"properties": {
"name": "pegmatite, plougoulm",
"icon": "http://www.geodiversite.net/local/cache-gd2/a8d18625fc35e7b7eda3777946259619.jpg"
},
"id": "725"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.06266647038,
48.687792854
]
},
"properties": {
"name": "Cristal de grenat",
"icon": "http://www.geodiversite.net/local/cache-gd2/3c466159a7c1d6d70de7c3341fa0c0fe.jpg"
},
"id": "724"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.0634393692,
48.687787411
]
},
"properties": {
"name": "site de pegmatite, plougoulm",
"icon": "http://www.geodiversite.net/local/cache-gd2/4029490581e495621a2314e6e5151585.jpg"
},
"id": "723"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.46802450781,
43.9124758961
]
},
"properties": {
"name": "Usine de fer \"du haut\"",
"icon": "http://www.geodiversite.net/local/cache-gd2/d8bb6e3bb9d202c24405ff093ae12188.jpg"
},
"id": "722"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.46806742316,
43.9123522311
]
},
"properties": {
"name": "Tour carronde",
"icon": "http://www.geodiversite.net/local/cache-gd2/40af76b2168d56da935492f5b490929a.jpg"
},
"id": "721"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.46803523665,
43.9123754183
]
},
"properties": {
"name": "Mais qu’est-ce donc que cette cheminée ?",
"icon": "http://www.geodiversite.net/local/cache-gd2/9d4447f615e7feabce230c54504bf0a8.jpg"
},
"id": "720"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.3394154762,
43.946344291
]
},
"properties": {
"name": "Roc salière",
"icon": "http://www.geodiversite.net/local/cache-gd2/856ec3a4197b4baba4c368549bcb927b.jpg"
},
"id": "719"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.33890049207,
43.9456954165
]
},
"properties": {
"name": "Fond de la grande beaume",
"icon": "http://www.geodiversite.net/local/cache-gd2/8f685c8057374e1d43828c74e3f11af8.jpg"
},
"id": "718"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.33887903439,
43.9457108659
]
},
"properties": {
"name": "Bord sud de la grande beaume",
"icon": "http://www.geodiversite.net/local/cache-gd2/b785ac7a18dee02d077bffcb7e39ff52.jpg"
},
"id": "717"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.33881466138,
43.9457881132
]
},
"properties": {
"name": "Bord nord de la grande beaume",
"icon": "http://www.geodiversite.net/local/cache-gd2/cad1af66e0b1680af3d862677cace032.jpg"
},
"id": "716"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.338643,
43.9460971015
]
},
"properties": {
"name": "La grande beaume",
"icon": "http://www.geodiversite.net/local/cache-gd2/786f4d658ad098ed9c9b68e3bc17e7ad.jpg"
},
"id": "715"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.34659479092,
43.9100376959
]
},
"properties": {
"name": "Coulée d’ocre",
"icon": "http://www.geodiversite.net/local/cache-gd2/a1e3948bfa75cc35c548910d6ad8b30c.jpg"
},
"id": "713"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.34942720364,
43.9109497548
]
},
"properties": {
"name": "Mais qu’y-a-t-il par là ?",
"icon": "http://www.geodiversite.net/local/cache-gd2/c564fb0919ca18066d66bd8f65a55164.jpg"
},
"id": "712"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.34653041791,
43.9101304483
]
},
"properties": {
"name": "Falaise escarpée",
"icon": "http://www.geodiversite.net/local/cache-gd2/625b7d04b3b28b16b7cb79af3d030f44.jpg"
},
"id": "711"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.34648750256,
43.9100531547
]
},
"properties": {
"name": "Sortie de galerie",
"icon": "http://www.geodiversite.net/local/cache-gd2/c77c105aa12023e11a002da46a75647e.jpg"
},
"id": "710"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.34653041791,
43.9100222372
]
},
"properties": {
"name": "Falaise d’ocre",
"icon": "http://www.geodiversite.net/local/cache-gd2/a4542cc56500e2fa49171decd4addaa6.jpg"
},
"id": "709"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.34653041791,
43.9097130615
]
},
"properties": {
"name": "Pin grimpeur",
"icon": "http://www.geodiversite.net/local/cache-gd2/e960c47a9783c3bd68248d5b94600547.jpg"
},
"id": "708"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.34646604489,
43.9099913197
]
},
"properties": {
"name": "£-&nbsp;?!$<&#176;x&nbsp;?=%\"...",
"icon": "http://www.geodiversite.net/local/cache-gd2/891ad06265be3d0be8943f67a9fa8c2f.jpg"
},
"id": "707"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.34650896024,
43.9100376959
]
},
"properties": {
"name": "Sans le flash",
"icon": "http://www.geodiversite.net/local/cache-gd2/a26606433fc2bc0397259b9a2ec0b0f2.jpg"
},
"id": "706"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.34653041791,
43.9100686134
]
},
"properties": {
"name": "Galerie d&#8217;accès - bis",
"icon": "http://www.geodiversite.net/local/cache-gd2/7a05275bb8bc84fde1ea6e04e9c6ea99.jpg"
},
"id": "705"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.34648750256,
43.9099449434
]
},
"properties": {
"name": "Voie sans issue",
"icon": "http://www.geodiversite.net/local/cache-gd2/56b9fa4ebdc2fd25c65f16096cab764b.jpg"
},
"id": "704"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.34650896024,
43.9100067784
]
},
"properties": {
"name": "Galerie d&#8217;accès",
"icon": "http://www.geodiversite.net/local/cache-gd2/d9d3a37d00af9cd3fe31dacd752afee6.jpg"
},
"id": "703"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.34663770627,
43.9102695766
]
},
"properties": {
"name": "Accès libre",
"icon": "http://www.geodiversite.net/local/cache-gd2/00c99d14d810598197f587a22b3d6cec.jpg"
},
"id": "702"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.34592960309,
43.9090947052
]
},
"properties": {
"name": "Accès bloqué",
"icon": "http://www.geodiversite.net/local/cache-gd2/694ca1a9583d60a8e25ecbf1cd40b367.jpg"
},
"id": "701"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.34605834912,
43.9092183769
]
},
"properties": {
"name": "Mines de Bruoux - Gargas (84)",
"icon": "http://www.geodiversite.net/local/cache-gd2/4f9f23c81ff4cd6da65c8c47e84a2814.jpg"
},
"id": "700"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.27831437579,
44.17399461
]
},
"properties": {
"name": "Mont Ventoux (1912 m.)",
"icon": "http://www.geodiversite.net/local/cache-gd2/53ca24a71038301ea5f9ac4c7379301b.jpg"
},
"id": "698"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.10414166946,
44.2223415476
]
},
"properties": {
"name": "Mont Ventoux",
"icon": "http://www.geodiversite.net/local/cache-gd2/ed81a6eac0787fc4c106265f7d7873c4.jpg"
},
"id": "697"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.29151338617,
44.0061825339
]
},
"properties": {
"name": "Borne du mur de la peste (1720)",
"icon": "http://www.geodiversite.net/local/cache-gd2/7a876c961ac8a0c96ec515f70585c3f7.jpg"
},
"id": "696"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.29207966138,
44.0069383451
]
},
"properties": {
"name": "Mur de la peste (1720)",
"icon": "http://www.geodiversite.net/local/cache-gd2/93447e8fc6ee991628a1c8a792f34587.jpg"
},
"id": "695"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.342269,
44.0452579
]
},
"properties": {
"name": "Gorges de la Nesque",
"icon": "http://www.geodiversite.net/local/cache-gd2/00aa882af8cdc31e167a1e2c7c53c302.jpg"
},
"id": "694"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.22988548682,
43.9869517521
]
},
"properties": {
"name": "Mont Ventoux (alt. 1912 m.)",
"icon": "http://www.geodiversite.net/local/cache-gd2/debedf568f223998a73cba0946d98c9e.jpg"
},
"id": "693"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.338643,
43.956818
]
},
"properties": {
"name": "Combe de Fontjouvale",
"icon": "http://www.geodiversite.net/local/cache-gd2/ba8aef28847f693e932bb095cf195a89.jpg"
},
"id": "692"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-109.362030029,
-27.1141458021
]
},
"properties": {
"name": "Tunnel de lave sur l&#8217;île de Pâques",
"icon": "http://www.geodiversite.net/local/cache-gd2/4ac92b4e643e4c9a4a9a18d89136f21c.jpg"
},
"id": "690"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
1.6694659,
44.790191
]
},
"properties": {
"name": "Moulin du Saut - XVIIIè S.",
"icon": "http://www.geodiversite.net/local/cache-gd2/f7f344d9f23682c399f8dcc22f398361.jpg"
},
"id": "688"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
1.6694659,
44.790191
]
},
"properties": {
"name": "Moulin du Saut - XVIIIè S.",
"icon": "http://www.geodiversite.net/local/cache-gd2/165f4223fb10ceb68d37c9e1fc6182d8.jpg"
},
"id": "687"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
1.6694659,
44.790191
]
},
"properties": {
"name": "Moulin du Saut - XVIIIè S.",
"icon": "http://www.geodiversite.net/local/cache-gd2/1c44c0814ff28632235a0390beb32411.jpg"
},
"id": "686"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
1.6694659,
44.790191
]
},
"properties": {
"name": "Moulin du Saut - XVIIIè S.",
"icon": "http://www.geodiversite.net/local/cache-gd2/1ed096df30ac717f1b713a2ac7a6092c.jpg"
},
"id": "685"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
1.6694659,
44.790191
]
},
"properties": {
"name": "Moulin du Saut - XVIIIè S.",
"icon": "http://www.geodiversite.net/local/cache-gd2/f0c30a1abe8b5dbc6b45b8ff7538edcc.jpg"
},
"id": "684"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
1.707859,
44.8535139
]
},
"properties": {
"name": "Matériel de fouille",
"icon": "http://www.geodiversite.net/local/cache-gd2/85ec8b5ec08c2e5c106ad387e13345e3.jpg"
},
"id": "683"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
1.707859,
44.8535139
]
},
"properties": {
"name": "Archéosite des fieux",
"icon": "http://www.geodiversite.net/local/cache-gd2/fdc9a9c1170b1e24f94cdb0367ce301a.jpg"
},
"id": "682"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
1.707859,
44.8535139
]
},
"properties": {
"name": "Archéosite des fieux",
"icon": "http://www.geodiversite.net/local/cache-gd2/ef8712aaf77a03cab086b2a4da4c381c.jpg"
},
"id": "681"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
1.70766588095,
44.8531412144
]
},
"properties": {
"name": "Archéosite des fieux",
"icon": "http://www.geodiversite.net/local/cache-gd2/10957e202ecc9638498cd7b5af464c10.jpg"
},
"id": "680"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.435658,
44.320405
]
},
"properties": {
"name": "Rocheclose",
"icon": "http://www.geodiversite.net/local/cache-gd2/87eba571c82fd07698fc4df800049f17.jpg"
},
"id": "679"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.2664859,
44.04571
]
},
"properties": {
"name": "Vallée et village d&#8217;Entrages",
"icon": "http://www.geodiversite.net/local/cache-gd2/cc3f286f99a21254d7f9d98610b7a432.jpg"
},
"id": "678"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.23829342859,
44.093795759
]
},
"properties": {
"name": "Musée Gassendi",
"icon": "http://www.geodiversite.net/local/cache-gd2/eee1ba8a9c7c9b8f76c575768d700d32.jpg"
},
"id": "677"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.28253781447,
44.2095742782
]
},
"properties": {
"name": "Le Vieil-esclangon",
"icon": "http://www.geodiversite.net/local/cache-gd2/f92c7bf916d07cda6239bebbb62fca86.jpg"
},
"id": "676"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.23829342859,
44.093795759
]
},
"properties": {
"name": "River of earth",
"icon": "http://www.geodiversite.net/local/cache-gd2/f04220c2b32b8c0e377dcd3e939a6c2c.jpg"
},
"id": "675"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.339291,
44.138547
]
},
"properties": {
"name": "Fossile d&#8217;amonite",
"icon": "http://www.geodiversite.net/local/cache-gd2/a040869211ae11a6829b540d8833e905.jpg"
},
"id": "674"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.339291,
44.138547
]
},
"properties": {
"name": "Arches - Ferme Belon",
"icon": "http://www.geodiversite.net/local/cache-gd2/ddee0b5705a3aa9af72f8becc4385227.jpg"
},
"id": "673"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.339291,
44.138547
]
},
"properties": {
"name": "Ferme Belon - rez-de-chaussée",
"icon": "http://www.geodiversite.net/local/cache-gd2/7ea55e717404e54ac9ef76196fd312f6.jpg"
},
"id": "672"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.3392914669,
44.1385476529
]
},
"properties": {
"name": "Ferme Belon à Draix (04)",
"icon": "http://www.geodiversite.net/local/cache-gd2/e90a8f9ae02c4da417341ba1a79a0ddc.jpg"
},
"id": "671"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.33390921191,
44.0663519707
]
},
"properties": {
"name": "La barre des doures",
"icon": "http://www.geodiversite.net/local/cache-gd2/792bf1a756690f2a22f3b51e8168b015.jpg"
},
"id": "670"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.297517,
44.029337
]
},
"properties": {
"name": "Robines",
"icon": "http://www.geodiversite.net/local/cache-gd2/c4fc2e6d339b8e68b5284c999567c899.jpg"
},
"id": "669"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.25582,
44.23362
]
},
"properties": {
"name": "La source de Fontchaude",
"icon": "http://www.geodiversite.net/local/cache-gd2/006ea2ad5d1fce5ba1cea88d906a64f9.jpg"
},
"id": "668"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-19.6737995148,
63.9948005676
]
},
"properties": {
"name": "Volcan Hekla",
"icon": "http://www.geodiversite.net/local/cache-gd2/7126d12e3950f5c30933bbed700ceb30.jpg"
},
"id": "546"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.49703014162,
48.3988287094
]
},
"properties": {
"name": "Patron d&#8217;un cristal de pyrite ",
"icon": "http://www.geodiversite.net/local/cache-gd2/116afd2c963aac9b2cc2a7b3582dab13.jpg"
},
"id": "667"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.49699795511,
48.3987717228
]
},
"properties": {
"name": "Patron d&#8217;un cristal de quartz",
"icon": "http://www.geodiversite.net/local/cache-gd2/36aaae473e6b89becaecb3886aa0cba0.jpg"
},
"id": "665"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.49694431093,
48.3987752845
]
},
"properties": {
"name": "Patron d&#8217;un cristal de galène",
"icon": "http://www.geodiversite.net/local/cache-gd2/309e4a0716826e2d02bdf101992f3d46.jpg"
},
"id": "666"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.42848801613,
48.2365900063
]
},
"properties": {
"name": "Les fours à chaux de la Presqu&#8217;île de Crozon",
"icon": "http://www.geodiversite.net/local/cache-gd2/ebf7ab7208363ef77561be63b7b84bf4.jpg"
},
"id": "664"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.42850410938,
48.2365935793
]
},
"properties": {
"name": "Histoire du four à chaux de Rozan",
"icon": "http://www.geodiversite.net/local/cache-gd2/ebf7ab7208363ef77561be63b7b84bf4.jpg"
},
"id": "663"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
42.1021842957,
15.1578021608
]
},
"properties": {
"name": "Une nouvelle île dans la Mer Rouge",
"icon": "http://www.geodiversite.net/local/cache-gd2/00741f03c0e809a45b8e855d3ec1b967.jpg"
},
"id": "662"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-70.7316,
-29.2612
]
},
"properties": {
"name": "Observatoire de La Silla",
"icon": "http://www.geodiversite.net/local/cache-gd2/ec8f3d57054f4b7ea2a56c004f444ed3.jpg"
},
"id": "659"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-67.9945886135,
-23.1891761768
]
},
"properties": {
"name": "Quebrada de Jerez",
"icon": "http://www.geodiversite.net/local/cache-gd2/c15c49eb4cf676363320a9911878ff4a.jpg"
},
"id": "658"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-68.010278,
-22.331389
]
},
"properties": {
"name": "Colonne de fumée aux geyser del Tatio",
"icon": "http://www.geodiversite.net/local/cache-gd2/81e84c44fec6c4d4ffe47ae4a240049f.jpg"
},
"id": "657"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-68.010278,
-22.331389
]
},
"properties": {
"name": "Cours d&#8217;eau chaude, devant le volcan Tatio",
"icon": "http://www.geodiversite.net/local/cache-gd2/000f67f1674c9c47db163a2ec5ea2d6e.jpg"
},
"id": "656"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-69.0692424774,
-24.2721614659
]
},
"properties": {
"name": "Mina Escondida (\"mine cachée\")",
"icon": "http://www.geodiversite.net/local/cache-gd2/0dfab73dd7d8f3cce2acc49fb7b09b69.jpg"
},
"id": "654"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-68.3624267578,
-23.5287366174
]
},
"properties": {
"name": "mine de lithium",
"icon": "http://www.geodiversite.net/local/cache-gd2/64b7b18c71ae08ed3b69bd3ea74bd7a9.jpg"
},
"id": "652"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-68.2176679373,
-23.0587018652
]
},
"properties": {
"name": "Los ojos del salar",
"icon": "http://www.geodiversite.net/local/cache-gd2/007ac72ac1c0a6378de8399c953f29c2.jpg"
},
"id": "651"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-68.112487793,
-22.6266873622
]
},
"properties": {
"name": "Volcan Licancabur",
"icon": "http://www.geodiversite.net/local/cache-gd2/94af1bde76ddf095d7e71f35a0d40bc8.jpg"
},
"id": "650"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-68.1372070312,
-23.2262030483
]
},
"properties": {
"name": "Salar de l&#8217;Atacama",
"icon": "http://www.geodiversite.net/local/cache-gd2/4a91875109da74c40b40938fa22f00df.jpg"
},
"id": "649"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-16.4946842194,
15.9510136033
]
},
"properties": {
"name": "Marais salant - langue de Barbarie",
"icon": "http://www.geodiversite.net/local/cache-gd2/650d423bd1abe88409586e180843cef8.jpg"
},
"id": "648"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-8.97711217403,
29.6788226877
]
},
"properties": {
"name": "Rocher peint de Jean Vérame",
"icon": "http://www.geodiversite.net/local/cache-gd2/476410e083a55e4059b4b9c5444ddc99.jpg"
},
"id": "646"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
158.183898926,
52.4655274513
]
},
"properties": {
"name": "Mutnovsky",
"icon": "http://www.geodiversite.net/local/cache-gd2/a27ebc290826a87320c94d1f44cbe250.jpg"
},
"id": "645"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
160.307006836,
55.9499687595
]
},
"properties": {
"name": "Tolbachik (Plosky et Ostry)",
"icon": "http://www.geodiversite.net/local/cache-gd2/c7bbb9445c56cc0ecf1f6c3a1143211d.jpg"
},
"id": "644"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-1.72055929899,
15.2891320495
]
},
"properties": {
"name": "bancotterie",
"icon": "http://www.geodiversite.net/local/cache-gd2/aa9ec4a82eda4ec0708f9786d162104c.jpg"
},
"id": "642"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.0560135841,
-36.8298289235
]
},
"properties": {
"name": "Tour O&#8217;Higgins de Concepción, avant la démolition",
"icon": "http://www.geodiversite.net/local/cache-gd2/a0a4ccef7237a9379712f50ba02705c4.jpg"
},
"id": "640"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.0611848831,
-36.8181145833
]
},
"properties": {
"name": "Concepción sous les cendres du Puyehue",
"icon": "http://www.geodiversite.net/local/cache-gd2/920a7126219acf8bcc86fd960c415e6d.jpg"
},
"id": "639"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
14.9599456787,
38.5144598457
]
},
"properties": {
"name": "Carrière de pierre ponce (mont Pilato)",
"icon": "http://www.geodiversite.net/local/cache-gd2/ad7f5b2d78c4d2e4fd541a87cf248cae.jpg"
},
"id": "638"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
15.2819824219,
37.0639443006
]
},
"properties": {
"name": "Oreille de Denys (vue intérieure)",
"icon": "http://www.geodiversite.net/local/cache-gd2/b8fcc2218ef00372df3439edb1c8ddb4.jpg"
},
"id": "637"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
15.2984619141,
37.0595608303
]
},
"properties": {
"name": "Oreille de Denys (vue extérieure)",
"icon": "http://www.geodiversite.net/local/cache-gd2/75804e39b86b52fb0999b5eb1ceaea3e.jpg"
},
"id": "636"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-15.9763526917,
18.1414473653
]
},
"properties": {
"name": "Désert de sable (erg)",
"icon": "http://www.geodiversite.net/local/cache-gd2/409e8427738cad8cce2c01a6bfa78588.jpg"
},
"id": "635"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
98.9868164062,
2.32571605162
]
},
"properties": {
"name": "Danau Toba",
"icon": "http://www.geodiversite.net/local/cache-gd2/7459ee0e9032b0fb97c05dd4257c5264.jpg"
},
"id": "634"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
98.9868164062,
2.32571605162
]
},
"properties": {
"name": "Danau Toba",
"icon": "http://www.geodiversite.net/local/cache-gd2/7459ee0e9032b0fb97c05dd4257c5264.jpg"
},
"id": "634"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.3792762756,
36.4610540751
]
},
"properties": {
"name": "Caldera de Santorin",
"icon": "http://www.geodiversite.net/local/cache-gd2/59ed989dc03a8c86a37571be10a121fb.jpg"
},
"id": "633"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.52801942825,
48.2039402011
]
},
"properties": {
"name": "Chaux devant&nbsp;!",
"icon": "http://www.geodiversite.net/local/cache-gd2/72f89be3ff4bd9cc2315c61bd5488332.jpg"
},
"id": "632"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
80.6678009033,
7.77154615955
]
},
"properties": {
"name": "Sigirîya",
"icon": "http://www.geodiversite.net/local/cache-gd2/afb8a4b0920f9d59d76a4681d6a4db0d.jpg"
},
"id": "631"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
35.754824978,
34.131969349
]
},
"properties": {
"name": "crevette du Liban",
"icon": "http://www.geodiversite.net/local/cache-gd2/eaa62daab69e18f65d4b4d985e8278a0.jpg"
},
"id": "630"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
3.07019317646,
46.1321512962
]
},
"properties": {
"name": "Reportage - Artisan chaufournier - Ebreuil (03)",
"icon": "http://www.geodiversite.net/local/cache-gd2/72f89be3ff4bd9cc2315c61bd5488332.jpg"
},
"id": "628"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-24.2935180664,
14.9699933382
]
},
"properties": {
"name": "Chã das caldeiras (bord NE)",
"icon": "http://www.geodiversite.net/local/cache-gd2/5d4ea89f30c2d6650df96304ce6b6e7f.jpg"
},
"id": "627"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-24.2935180664,
14.9699933382
]
},
"properties": {
"name": "Volcan Fogo (Pico Novo)",
"icon": "http://www.geodiversite.net/local/cache-gd2/122ff795ad77f3a475bfa0f54a8beeeb.jpg"
},
"id": "626"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.16228675842,
10.6608610013
]
},
"properties": {
"name": "Pics de Sindou",
"icon": "http://www.geodiversite.net/local/cache-gd2/37ee68fa04e76e4f5aa20684698828ff.jpg"
},
"id": "625"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.75683867931,
10.6399917673
]
},
"properties": {
"name": "Dômes de Fabédougou",
"icon": "http://www.geodiversite.net/local/cache-gd2/98569c3e37f6bcb53207fc096dce7726.jpg"
},
"id": "624"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7420959473,
-38.7090893274
]
},
"properties": {
"name": "Volcan Llaima",
"icon": "http://www.geodiversite.net/local/cache-gd2/370464b3b090e10d4e4fa25cb2231245.jpg"
},
"id": "623"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.4974060059,
-41.1067778831
]
},
"properties": {
"name": "Volcan Osorno",
"icon": "http://www.geodiversite.net/local/cache-gd2/b4c7c51878bd6166ee1ce23a9afab53f.jpg"
},
"id": "622"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-70.7088446617,
-26.6535692898
]
},
"properties": {
"name": "Parc zoologique de pierre (arène granitique)",
"icon": "http://www.geodiversite.net/local/cache-gd2/0d1b98fa8982937936331fd37ae4adfb.jpg"
},
"id": "621"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-70.8096313477,
-26.9232943682
]
},
"properties": {
"name": "Granite orbiculaire (détail)",
"icon": "http://www.geodiversite.net/local/cache-gd2/d709ff2d3667ec25696dac5c9b0d7573.jpg"
},
"id": "620"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-70.8096313477,
-26.9232943682
]
},
"properties": {
"name": "Granite orbiculaire",
"icon": "http://www.geodiversite.net/local/cache-gd2/c2b353a25751ccca7955e226c9d4076c.jpg"
},
"id": "618"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-9.52797889709,
53.5597615175
]
},
"properties": {
"name": "ripple marks",
"icon": "http://www.geodiversite.net/local/cache-gd2/dd93b122d7b1399f61eaeba41e3f40ee.jpg"
},
"id": "616"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-9.51583385468,
53.575155297
]
},
"properties": {
"name": "turbidite",
"icon": "http://www.geodiversite.net/local/cache-gd2/bbfeddaa6f5dc52f2bf7b555093cf935.jpg"
},
"id": "615"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.47446906567,
44.6791052745
]
},
"properties": {
"name": "entrée mine Menglon (Zn Pb smithsonite galene)",
"icon": "http://www.geodiversite.net/local/cache-gd2/0ed955a4e4063cfeb40b02efb34f1391.jpg"
},
"id": "612"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.252606,
46.806722
]
},
"properties": {
"name": "Le rocher de la Griffe du Diable",
"icon": "http://www.geodiversite.net/local/cache-gd2/b3f4c648471e2457ba3cd80943913bfe.jpg"
},
"id": "614"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-20.3588496027,
64.277708519
]
},
"properties": {
"name": "Le geyser Strokkur",
"icon": "http://www.geodiversite.net/local/cache-gd2/a9367b4771e6a6aa440793b4c6b51341.jpg"
},
"id": "613"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.42855042712,
48.2365740592
]
},
"properties": {
"name": "Four à chaux de Rozan - bouche latérale",
"icon": "http://www.geodiversite.net/local/cache-gd2/5b150c2a79cece33ea04b5f9fdad7dd9.jpg"
},
"id": "611"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.42849946515,
48.2365794187
]
},
"properties": {
"name": "Four à chaux de Rozan - le gueulard",
"icon": "http://www.geodiversite.net/local/cache-gd2/db3e492399808ba556940bbb182727f3.jpg"
},
"id": "610"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.42849141852,
48.2365865647
]
},
"properties": {
"name": "Four à chaux de Rozan - le four",
"icon": "http://www.geodiversite.net/local/cache-gd2/cc854a5010e5c0d21a86cbc4a779eec2.jpg"
},
"id": "609"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.4285155584,
48.2366133623
]
},
"properties": {
"name": "Four à chaux de Rozan - bouche inférieure",
"icon": "http://www.geodiversite.net/local/cache-gd2/0f4adfc5d2c14234aa8b4a87c30232c3.jpg"
},
"id": "608"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
30.412902832,
29.112575776
]
},
"properties": {
"name": "Lac du Wadi el Rayan, Fayoum",
"icon": "http://www.geodiversite.net/local/cache-gd2/3c4e9a9ce872bbcdb89a3ca36f500cce.jpg"
},
"id": "576"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.42857384682,
48.2366168038
]
},
"properties": {
"name": "Four à chaux de Rozan - panneau explicatif",
"icon": "http://www.geodiversite.net/local/cache-gd2/d8eaceb26dc8dd9d79e7873f271733bc.jpg"
},
"id": "607"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.4286864996,
48.2367079153
]
},
"properties": {
"name": "Four à chaux de Rozan",
"icon": "http://www.geodiversite.net/local/cache-gd2/a03a531ed24534681ce9c6ce7c4b8ea8.jpg"
},
"id": "606"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.25291013718,
46.8064994812
]
},
"properties": {
"name": "Rochers du chaos rocheux de Uchon",
"icon": "http://www.geodiversite.net/local/cache-gd2/faef9ab840384bb4a75b9373733da5a5.jpg"
},
"id": "605"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.25291013718,
46.8064994812
]
},
"properties": {
"name": "Vue du massif du morvan depuis le chaos rocheux de Uchon",
"icon": "http://www.geodiversite.net/local/cache-gd2/752891912659b1acefb71dc972ecd005.jpg"
},
"id": "604"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.25291013718,
46.8064994812
]
},
"properties": {
"name": "Rocher du chaos rocheux de Uchon",
"icon": "http://www.geodiversite.net/local/cache-gd2/6f3baf2d0bf320b7c7e8791de148d5d1.jpg"
},
"id": "603"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.25291013718,
46.8064994812
]
},
"properties": {
"name": "Interstice entre 2 rochers du chaos rocheux de Uchon",
"icon": "http://www.geodiversite.net/local/cache-gd2/b03af99d772db8df0b7a09b63d6ec945.jpg"
},
"id": "602"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.25290775299,
46.8065414429
]
},
"properties": {
"name": "Un des rochers du chaos de Uchon",
"icon": "http://www.geodiversite.net/local/cache-gd2/d9879457f75e9eb741bbfed32551d4f8.jpg"
},
"id": "601"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.49877548218,
43.9150619507
]
},
"properties": {
"name": "Pattes rousses",
"icon": "http://www.geodiversite.net/local/cache-gd2/0f9ce9a24be84678f262570908d853fb.jpg"
},
"id": "600"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.49726247787,
43.9124565125
]
},
"properties": {
"name": "Chaos chromatique",
"icon": "http://www.geodiversite.net/local/cache-gd2/b10fca7b43e1e4192fffcf81df5aa81a.jpg"
},
"id": "599"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.50080299377,
43.9121780396
]
},
"properties": {
"name": "Roche veinée",
"icon": "http://www.geodiversite.net/local/cache-gd2/a67b1f08d5ec863e8f1948bc62a4701c.jpg"
},
"id": "598"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.49510574341,
43.9135437012
]
},
"properties": {
"name": "Au détour d&#8217;un bosquet",
"icon": "http://www.geodiversite.net/local/cache-gd2/732deaf249a3a5bfd44ca1d19590907b.jpg"
},
"id": "597"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.49913978577,
43.9121551514
]
},
"properties": {
"name": "Où sont passés les tuyaux&nbsp;?",
"icon": "http://www.geodiversite.net/local/cache-gd2/c4476fb83d6e459b0f32098c229e7b50.jpg"
},
"id": "596"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.49848556519,
43.9158554077
]
},
"properties": {
"name": "Un bunker&nbsp;?",
"icon": "http://www.geodiversite.net/local/cache-gd2/27a0c5e2fc4b62afbbab78bae0d8fb96.jpg"
},
"id": "595"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.49786996841,
43.9159011841
]
},
"properties": {
"name": "Mystère &amp; bubble gum",
"icon": "http://www.geodiversite.net/local/cache-gd2/f3fa3eff45342382818b54f9999537b1.jpg"
},
"id": "594"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.49786996841,
43.9159011841
]
},
"properties": {
"name": "La pompe à eau",
"icon": "http://www.geodiversite.net/local/cache-gd2/038c5c7b794d9afe9d6402c49d818a81.jpg"
},
"id": "593"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.49786996841,
43.9159011841
]
},
"properties": {
"name": "Dispatcheur",
"icon": "http://www.geodiversite.net/local/cache-gd2/67a33dbe84c56b75b74adafb2e2bde52.jpg"
},
"id": "592"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.49787425995,
43.9158706665
]
},
"properties": {
"name": "Pompe à eau",
"icon": "http://www.geodiversite.net/local/cache-gd2/cff61b76d96cffc32fbb219674b04843.jpg"
},
"id": "591"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.50094985962,
43.9157981873
]
},
"properties": {
"name": "Là, y&#8217;a un schmilblick",
"icon": "http://www.geodiversite.net/local/cache-gd2/9d048e30d52108180409d259b216c961.jpg"
},
"id": "590"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.50094795227,
43.9157867432
]
},
"properties": {
"name": "Voie sans issue",
"icon": "http://www.geodiversite.net/local/cache-gd2/e242f54b9e0437a9969c05de9f55eeba.jpg"
},
"id": "589"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.49921512604,
43.9138793945
]
},
"properties": {
"name": "Demoiselle coiffée",
"icon": "http://www.geodiversite.net/local/cache-gd2/81ad2d1e0b0bd33f27740b9c79c7e7bd.jpg"
},
"id": "588"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.49767017365,
43.9133529663
]
},
"properties": {
"name": "Petit jeu avec les profondeurs de champ",
"icon": "http://www.geodiversite.net/local/cache-gd2/f27f939601a21e2180aa8f815a05468f.jpg"
},
"id": "587"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.49804592133,
43.9130516052
]
},
"properties": {
"name": "Conduite forcée",
"icon": "http://www.geodiversite.net/local/cache-gd2/76579fc29c1e41214665277471d65157.jpg"
},
"id": "586"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.49495601654,
43.913520813
]
},
"properties": {
"name": "Palette de nuances ocreuses",
"icon": "http://www.geodiversite.net/local/cache-gd2/41186534333885ccc97a834a54f3d14c.jpg"
},
"id": "585"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.49657583237,
43.9123153687
]
},
"properties": {
"name": "Falaise ocreuse",
"icon": "http://www.geodiversite.net/local/cache-gd2/156b3b97c4961dc0d0b7106b0e62942b.jpg"
},
"id": "584"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.98797011375,
48.7280273438
]
},
"properties": {
"name": "Détail de filon de pegmatite - Roscoff",
"icon": "http://www.geodiversite.net/local/cache-gd2/9b1b1690f9dde7fc303f1c9e7e586984.jpg"
},
"id": "583"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.9879860878,
48.728012085
]
},
"properties": {
"name": "Filon de pegmatite - Roscoff",
"icon": "http://www.geodiversite.net/local/cache-gd2/302543fb02abdedb4f2ffde69bbae2cc.jpg"
},
"id": "582"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.1036901474,
48.0229988098
]
},
"properties": {
"name": "Grès charbonneux",
"icon": "http://www.geodiversite.net/local/cache-gd2/1c4dc5bf1a030ea47edd363d8b708b3e.jpg"
},
"id": "572"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.62408018112,
48.2584342957
]
},
"properties": {
"name": "Miroir de faille - Pointe de Pen-Hir",
"icon": "http://www.geodiversite.net/local/cache-gd2/79ec20ec69847eaa620b5f1f3366d642.jpg"
},
"id": "580"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.62424898148,
48.2589225769
]
},
"properties": {
"name": "Terrier de vers",
"icon": "http://www.geodiversite.net/local/cache-gd2/d35a9296f7232ffa7d4758ebdf319256.jpg"
},
"id": "579"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.4950299263,
43.9149017334
]
},
"properties": {
"name": "Gros plan sur le système de surverse",
"icon": "http://www.geodiversite.net/local/cache-gd2/082d0a7bd0d59a1e8e94c613ccec7ffb.jpg"
},
"id": "578"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.49503087997,
43.9148750305
]
},
"properties": {
"name": "Viaduc de colobrier",
"icon": "http://www.geodiversite.net/local/cache-gd2/e97dea6b4041fdccc17d189138b048cc.jpg"
},
"id": "577"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
30.1060009003,
29.1959991455
]
},
"properties": {
"name": "Squelette fossilisé de Dorudon atrox",
"icon": "http://www.geodiversite.net/local/cache-gd2/70c3af6ef9ced953428b04a287585f6f.jpg"
},
"id": "575"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
9.13297557831,
40.2555999756
]
},
"properties": {
"name": "Mine de Sa Costa-Orani-Sardaigne (Echantillon)",
"icon": "http://www.geodiversite.net/local/cache-gd2/7735de864f1c4d000b650226271b700a.jpg"
},
"id": "574"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
9.13342571259,
40.2558097839
]
},
"properties": {
"name": "Mine de Sa Costa-Orani-Sardaigne (Mine de feldspath)",
"icon": "http://www.geodiversite.net/local/cache-gd2/3943d83cf3a46b40f01091c1a37e8812.jpg"
},
"id": "573"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
126.428001404,
34.5933990479
]
},
"properties": {
"name": "Palmipède -83MA",
"icon": "http://www.geodiversite.net/local/cache-gd2/775186d2f7c52f3dfdc2d80dcc1ede91.jpg"
},
"id": "571"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.36347007751,
43.2953033447
]
},
"properties": {
"name": "calcaire coquillier détail",
"icon": "http://www.geodiversite.net/local/cache-gd2/ad70ad860e46f756f5489743a2bb32a9.jpg"
},
"id": "570"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.36350011826,
43.29529953
]
},
"properties": {
"name": "calcaire coquillier",
"icon": "http://www.geodiversite.net/local/cache-gd2/87d9165f82d0e8c83fc44bad589501e9.jpg"
},
"id": "569"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
9.16010856628,
39.1811752319
]
},
"properties": {
"name": "Calcaire de Cagliari (Piedra Cantone)",
"icon": "http://www.geodiversite.net/local/cache-gd2/6e4f6dd2f275e0eb1e2e33305efcba06.jpg"
},
"id": "565"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
55.709526062,
-21.2295417786
]
},
"properties": {
"name": "Lave AA ou en \"gratons\"",
"icon": "http://www.geodiversite.net/local/cache-gd2/5db7ee8f5067c1f1c0dcac9e020623dd.jpg"
},
"id": "564"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
55.6931991577,
-21.223400116
]
},
"properties": {
"name": "coulée pahoehoe",
"icon": "http://www.geodiversite.net/local/cache-gd2/7237627219028b40e4635fafce8038c6.jpg"
},
"id": "563"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
9.16040992737,
39.1814994812
]
},
"properties": {
"name": "Calcaire de Cagliari - Cala Mosca (Sardaigne)",
"icon": "http://www.geodiversite.net/local/cache-gd2/b9d8c6d55b4044adcfa4a10018751bad.jpg"
},
"id": "562"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-6.21878004074,
33.4872016907
]
},
"properties": {
"name": "Coulée de néphélinite",
"icon": "http://www.geodiversite.net/local/cache-gd2/bc2c8906a491629793e81d47e0a8610a.jpg"
},
"id": "561"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
36.1144142151,
34.5889396667
]
},
"properties": {
"name": "Superposition de coulées basaltiques à différents stades d&#8217;altération",
"icon": "http://www.geodiversite.net/local/cache-gd2/a2eba9640c6640db40262c9e28d0907b.jpg"
},
"id": "560"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
35.8704986572,
34.1743011475
]
},
"properties": {
"name": "Gouffre de Baatara",
"icon": "http://www.geodiversite.net/local/cache-gd2/fd806ea5296d5264c148e56a031910fc.jpg"
},
"id": "559"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.90750002861,
48.4099998474
]
},
"properties": {
"name": "Pierre.",
"icon": "http://www.geodiversite.net/local/cache-gd2/66b26f05222704048bcbc0690872ba01.jpg"
},
"id": "558"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.90750002861,
48.4099998474
]
},
"properties": {
"name": "Pierre.",
"icon": "http://www.geodiversite.net/local/cache-gd2/462fea8509966cdc4ce103605d0b3e4f.jpg"
},
"id": "557"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.86924743652,
48.4408187866
]
},
"properties": {
"name": "Quelques pierres",
"icon": "http://www.geodiversite.net/local/cache-gd2/4beaeb3a3b05385f81e6f0de195396e2.jpg"
},
"id": "556"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.74564599991,
48.3647232056
]
},
"properties": {
"name": "Bloc de granite",
"icon": "http://www.geodiversite.net/local/cache-gd2/b1a26d9399976694ebe60f45b75f806f.jpg"
},
"id": "555"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.90750002861,
48.4099998474
]
},
"properties": {
"name": "Pierre.",
"icon": "http://www.geodiversite.net/local/cache-gd2/6013687f95ff88c9a6bb0fc01bc6b6a8.jpg"
},
"id": "554"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.56270599365,
48.358253479
]
},
"properties": {
"name": "Fabrication de lames minces de roches",
"icon": "http://www.geodiversite.net/local/cache-gd2/72f89be3ff4bd9cc2315c61bd5488332.jpg"
},
"id": "553"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
35.7545013428,
34.1203613281
]
},
"properties": {
"name": "Nérinées dans le Crétacé libanais",
"icon": "http://www.geodiversite.net/local/cache-gd2/6fd8ba94ac1a317faf95d3f0740093a4.jpg"
},
"id": "551"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-6.78968000412,
33.940700531
]
},
"properties": {
"name": "Laves en coussins - Rabat",
"icon": "http://www.geodiversite.net/local/cache-gd2/5a49f329c814a8764654e4925ba38368.jpg"
},
"id": "552"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.99659013748,
33.3291015625
]
},
"properties": {
"name": "Orgues volcaniques près d&#8217;Oulmes",
"icon": "http://www.geodiversite.net/local/cache-gd2/9177ad8e46ad524c75a4442750f21efb.jpg"
},
"id": "540"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.15307617188,
48.1807403564
]
},
"properties": {
"name": "Carte géologique du massif armoricain",
"icon": "http://www.geodiversite.net/local/cache-gd2/19b2599930cea542ec1ff05abd672e91.jpg"
},
"id": "550"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.35727262497,
50.2399749756
]
},
"properties": {
"name": "North Cliffs - Etonnant éboulement d&#8217;une falaise",
"icon": "http://www.geodiversite.net/local/cache-gd2/72f89be3ff4bd9cc2315c61bd5488332.jpg"
},
"id": "549"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-68.31300354,
-22.9179000854
]
},
"properties": {
"name": "Cordillère du sel - vallée de la lune - San pedro de Atacama",
"icon": "http://www.geodiversite.net/local/cache-gd2/0a0b704a2f77dc2fb6f3df0a221d89ed.jpg"
},
"id": "548"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.42062664032,
43.9609031677
]
},
"properties": {
"name": "Borie",
"icon": "http://www.geodiversite.net/local/cache-gd2/3bee64b643ed8615fdce223e0d4c637e.jpg"
},
"id": "547"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
9.0611114502,
4.05361127853
]
},
"properties": {
"name": "Mont Cameroun",
"icon": "http://www.geodiversite.net/local/cache-gd2/89a9b079be79739dacca58a64db41e6d.jpg"
},
"id": "545"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.62410020828,
48.2584991455
]
},
"properties": {
"name": "Trou du souffleur",
"icon": "http://www.geodiversite.net/local/cache-gd2/13137c5ac9545ba73ccdf58413888cdc.jpg"
},
"id": "539"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-6.48510932922,
55.2489891052
]
},
"properties": {
"name": "Prismes basaltiques - Chaussée des géants",
"icon": "http://www.geodiversite.net/local/cache-gd2/4656d0457885936a0711aa3b86e4ac06.jpg"
},
"id": "544"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-6.48523807526,
55.2491607666
]
},
"properties": {
"name": "Chaussée des géants",
"icon": "http://www.geodiversite.net/local/cache-gd2/5ffa3c586a2a87fd4c634cf5f7463452.jpg"
},
"id": "543"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
2.48007774353,
42.837890625
]
},
"properties": {
"name": "Gorges de Galamus",
"icon": "http://www.geodiversite.net/local/cache-gd2/2d23bbfe1ebd187c3d4fc77a85decd00.jpg"
},
"id": "542"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
2.62165808678,
42.8369140625
]
},
"properties": {
"name": "Vue nord depuis le chateau de Quéribus",
"icon": "http://www.geodiversite.net/local/cache-gd2/491c95366282731bfc4fb85980fb5660.jpg"
},
"id": "541"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.48752355576,
48.383769989
]
},
"properties": {
"name": "Détail&nbsp;du mur de la maison Crosnier (2)",
"icon": "http://www.geodiversite.net/local/cache-gd2/e3560dcccd493a443bbcdb139e188788.jpg"
},
"id": "538"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.48747777939,
48.3837471008
]
},
"properties": {
"name": "Maison Crosnier - Brest",
"icon": "http://www.geodiversite.net/local/cache-gd2/2837063a4a7ff242b43caa9eb94323c5.jpg"
},
"id": "537"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.48835468292,
48.386100769
]
},
"properties": {
"name": "Galets de la place Wilson",
"icon": "http://www.geodiversite.net/local/cache-gd2/933dcd7197d663aea8c6994a3df8ab06.jpg"
},
"id": "536"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-1.99703609943,
36.8850708008
]
},
"properties": {
"name": "Cheminées balsatiques",
"icon": "http://www.geodiversite.net/local/cache-gd2/d333b23780800487d355f128e73855e0.jpg"
},
"id": "535"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.00547170639,
36.8593025208
]
},
"properties": {
"name": "Vue large sur la dune oolithique",
"icon": "http://www.geodiversite.net/local/cache-gd2/335b072c71095ec563934478706688ac.jpg"
},
"id": "534"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.00552797318,
36.8583259583
]
},
"properties": {
"name": "Dune oolithique",
"icon": "http://www.geodiversite.net/local/cache-gd2/42c9e2f1216dd1f42195d4e58f0422d3.jpg"
},
"id": "533"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.48754739761,
48.3837890625
]
},
"properties": {
"name": "Détail&nbsp;du mur de la maison Crosnier",
"icon": "http://www.geodiversite.net/local/cache-gd2/02b3ed9aa118f44e345978184b587020.jpg"
},
"id": "532"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.42858982086,
48.2365989685
]
},
"properties": {
"name": "Four à chaux de Rozan - monument historique",
"icon": "http://www.geodiversite.net/local/cache-gd2/0ac352b817869d88835acff4b95689f6.jpg"
},
"id": "531"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.61389303207,
48.2617912292
]
},
"properties": {
"name": "Attaque",
"icon": "http://www.geodiversite.net/local/cache-gd2/52a62c43577c6b448f45134fb4ce4137.jpg"
},
"id": "530"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
32.893901825,
24.0881004333
]
},
"properties": {
"name": "Chaos granitique à Assouan, Egypte",
"icon": "http://www.geodiversite.net/local/cache-gd2/c8b2e4c75e454494e6d255ba7e1c42b3.jpg"
},
"id": "529"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.5853676796,
43.9263954163
]
},
"properties": {
"name": "Entrée sud du canyon d&#8217;Oppedette",
"icon": "http://www.geodiversite.net/local/cache-gd2/337443c047beb242c3f1ef3cf767bb76.jpg"
},
"id": "526"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.61099624634,
48.2847366333
]
},
"properties": {
"name": "Anse de Porzh Naye",
"icon": "http://www.geodiversite.net/local/cache-gd2/562eff77d0be94269f2c7a2bc9c3cb7a.jpg"
},
"id": "525"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.62970733643,
48.2808227539
]
},
"properties": {
"name": "Pointe du Touliguet",
"icon": "http://www.geodiversite.net/local/cache-gd2/f0115c37881fcff4af39e919d9a5085a.jpg"
},
"id": "524"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.62249755859,
48.2773666382
]
},
"properties": {
"name": "Grotte de Pen Had",
"icon": "http://www.geodiversite.net/local/cache-gd2/77023a418b3a77af02885dad680c9165.jpg"
},
"id": "523"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.6229300499,
48.2779998779
]
},
"properties": {
"name": "Sous les fortifications du Toulinguet",
"icon": "http://www.geodiversite.net/local/cache-gd2/0ec14c7924a24f96d7d4bfe1a88a0497.jpg"
},
"id": "522"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.98641443253,
48.7275352478
]
},
"properties": {
"name": "Tourmaline soleil",
"icon": "http://www.geodiversite.net/local/cache-gd2/840cfc95e4e77c9033ad4947fc244ac4.jpg"
},
"id": "521"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.75132989883,
43.4006996155
]
},
"properties": {
"name": "Petit indice...",
"icon": "http://www.geodiversite.net/local/cache-gd2/227373da29b670b4d99c17157dd40ce4.jpg"
},
"id": "520"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.751329422,
43.400680542
]
},
"properties": {
"name": "Petit quizz...",
"icon": "http://www.geodiversite.net/local/cache-gd2/b52423ef9ea437f94a6ebf62c65ee4dd.jpg"
},
"id": "519"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.67508983612,
44.7466011047
]
},
"properties": {
"name": "Flaviac - rives de l&#8217;Ouvèze",
"icon": "http://www.geodiversite.net/local/cache-gd2/2d60a9bf17fd7d337a2ef6be869b6974.jpg"
},
"id": "163"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.99175190926,
48.7245483398
]
},
"properties": {
"name": "Fossile d&#8217;échinoderme dans un silex",
"icon": "http://www.geodiversite.net/local/cache-gd2/a8a19979302baf72cf7962b59e21423c.jpg"
},
"id": "518"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.99230718613,
48.7249794006
]
},
"properties": {
"name": "Altération en boule du granite de Roscoff",
"icon": "http://www.geodiversite.net/local/cache-gd2/8525237b2317b7a44419c265adf776e7.jpg"
},
"id": "517"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
1.02948999405,
44.9347000122
]
},
"properties": {
"name": "Grotte de Font de Gaume",
"icon": "http://www.geodiversite.net/local/cache-gd2/d26beb053f8a8a7817eabeabfd55e2ef.jpg"
},
"id": "516"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.27521038055,
44.1910972595
]
},
"properties": {
"name": "Vallée du Bès",
"icon": "http://www.geodiversite.net/local/cache-gd2/074eb79c5932fbffae69106f13270ce0.jpg"
},
"id": "515"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.28252744675,
44.2096099854
]
},
"properties": {
"name": "Borne",
"icon": "http://www.geodiversite.net/local/cache-gd2/3659b32311bf3445c70d33629c2bac95.jpg"
},
"id": "514"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.30443572998,
44.2175254822
]
},
"properties": {
"name": "Massif du Blayeul...",
"icon": "http://www.geodiversite.net/local/cache-gd2/23fb3d850d4aa41d9be61c5583629faf.jpg"
},
"id": "513"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.27330064774,
44.2199058533
]
},
"properties": {
"name": "La clue de Barles - vue de dessus",
"icon": "http://www.geodiversite.net/local/cache-gd2/36775fad19348bdc386d027b17fd1eba.jpg"
},
"id": "512"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.26119327545,
44.209400177
]
},
"properties": {
"name": "Arête rocheuse...",
"icon": "http://www.geodiversite.net/local/cache-gd2/421db66bebdb7c23bd1891f07f8e1da9.jpg"
},
"id": "511"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.27145528793,
44.2113571167
]
},
"properties": {
"name": "Bord inférieur du vélodrome",
"icon": "http://www.geodiversite.net/local/cache-gd2/6912d33ece2162e2c123e647bceac59d.jpg"
},
"id": "510"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.25001907349,
44.2146339417
]
},
"properties": {
"name": "Pli du vélodrome",
"icon": "http://www.geodiversite.net/local/cache-gd2/1231473abfb4bb54142bd3d6edd07533.jpg"
},
"id": "509"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.28831195831,
48.298576355
]
},
"properties": {
"name": "Sillon des Anglais",
"icon": "http://www.geodiversite.net/local/cache-gd2/a30e101ddfead350ade1c39f597bcc0a.jpg"
},
"id": "507"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.26223421097,
48.2924537659
]
},
"properties": {
"name": "Sillon du Pâl",
"icon": "http://www.geodiversite.net/local/cache-gd2/09d9db9902132e73636069ac74915115.jpg"
},
"id": "506"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.34357452393,
44.4746589661
]
},
"properties": {
"name": "une Demoiselle Coiffée",
"icon": "http://www.geodiversite.net/local/cache-gd2/b69e05220cf9d0e5c5a1791bb57122c0.jpg"
},
"id": "505"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.34863996506,
44.4725990295
]
},
"properties": {
"name": "Les Demoiselles Coiffées",
"icon": "http://www.geodiversite.net/local/cache-gd2/f873bc11f035d986fae88bde4e74f1a1.jpg"
},
"id": "504"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.40551757812,
48.3014678955
]
},
"properties": {
"name": "La formation de la rade de Brest",
"icon": "http://www.geodiversite.net/local/cache-gd2/8894946d182cea3a3acb92de53ff7d68.jpg"
},
"id": "503"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.01676368713,
48.3419761658
]
},
"properties": {
"name": "Détail du front d&#8217;altération",
"icon": "http://www.geodiversite.net/local/cache-gd2/d9456ba7710e8c62fd57188da19912ca.jpg"
},
"id": "502"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.01677441597,
48.341960907
]
},
"properties": {
"name": "Carrière de \"La Perchais\" - Mer des faluns",
"icon": "http://www.geodiversite.net/local/cache-gd2/df52b90770bf6c51a47dfa5f6a3f3b8c.jpg"
},
"id": "500"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.3377327919,
48.2857627869
]
},
"properties": {
"name": "Plage du Loc&#8217;h",
"icon": "http://www.geodiversite.net/local/cache-gd2/7fd5a2b3647801b00f87f33bbfbf72c9.jpg"
},
"id": "499"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.34104537964,
48.286151886
]
},
"properties": {
"name": "Rides de sable fossiles",
"icon": "http://www.geodiversite.net/local/cache-gd2/85a0a7b2e8fd3ce6d77f31db029a865c.jpg"
},
"id": "498"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.34102916718,
48.2861289978
]
},
"properties": {
"name": "Charnière et rides à sable fossiles",
"icon": "http://www.geodiversite.net/local/cache-gd2/4e28b570e1a7ef42686031f28706919f.jpg"
},
"id": "497"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.67936563492,
48.4265823364
]
},
"properties": {
"name": "Menhir de Kerloas - Plouarzel",
"icon": "http://www.geodiversite.net/local/cache-gd2/85417232e50298b9fae6c0d85cf61b87.jpg"
},
"id": "495"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.73029565811,
48.4343109131
]
},
"properties": {
"name": "Enclave dans le granite rose de l&#8217;Aber-Ildut",
"icon": "http://www.geodiversite.net/local/cache-gd2/fbc451d93a5d9ecb0189bed21638aef1.jpg"
},
"id": "494"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.74310016632,
48.4721946716
]
},
"properties": {
"name": "Reste du support de la grue - Carrière de Kerglonou",
"icon": "http://www.geodiversite.net/local/cache-gd2/1ce2cb451b3efdc66910b12dc2379ad8.jpg"
},
"id": "493"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.74297142029,
48.47215271
]
},
"properties": {
"name": "Quai de chargement - Carrière de Kerglonou",
"icon": "http://www.geodiversite.net/local/cache-gd2/6e9e03b632016e56809743cd7d20860f.jpg"
},
"id": "492"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.74287509918,
48.472026825
]
},
"properties": {
"name": "Les hommes dans les carrières",
"icon": "http://www.geodiversite.net/local/cache-gd2/f7b2ef771ba6554ab3d373fda806060e.jpg"
},
"id": "491"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.74627590179,
48.4714126587
]
},
"properties": {
"name": "La vie dans les carrières de Kerglonou ",
"icon": "http://www.geodiversite.net/local/cache-gd2/ebf7ab7208363ef77561be63b7b84bf4.jpg"
},
"id": "490"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.74293661118,
48.4720535278
]
},
"properties": {
"name": "Smillage, bouchardage, polissage",
"icon": "http://www.geodiversite.net/local/cache-gd2/496a5c6f2d634889b7c651fe1589c935.jpg"
},
"id": "489"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.74278116226,
48.4713897705
]
},
"properties": {
"name": "Carrière du \"grand chantier\"&nbsp;: front de taille actuel",
"icon": "http://www.geodiversite.net/local/cache-gd2/9bd7115c650157157240a625334231e0.jpg"
},
"id": "488"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.74294757843,
48.4720573425
]
},
"properties": {
"name": "Le travail de la pierre - Granite de l&#8217;aber",
"icon": "http://www.geodiversite.net/local/cache-gd2/f16513302f82e7bf36016b639059ed58.jpg"
},
"id": "487"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.7462143898,
48.4713973999
]
},
"properties": {
"name": "Le granite de l&#8217;Aber (Maen an aber)",
"icon": "http://www.geodiversite.net/local/cache-gd2/90915f6143377df01537cc73c813f111.jpg"
},
"id": "486"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.34118747711,
48.2862052917
]
},
"properties": {
"name": "Pli au Loc&#8217;h (Argol)",
"icon": "http://www.geodiversite.net/local/cache-gd2/1000f9acae102f6517fa7038f9e18e73.jpg"
},
"id": "485"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.33835506439,
48.2847633362
]
},
"properties": {
"name": "Erosion du cordon externe par le revers (Loc&#8217;h, Landévennec)",
"icon": "http://www.geodiversite.net/local/cache-gd2/a33693d2d231e700a4a9314afc834676.jpg"
},
"id": "484"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.33839797974,
48.2847938538
]
},
"properties": {
"name": "Ancien chenal du Loc&#8217;h",
"icon": "http://www.geodiversite.net/local/cache-gd2/6439ceae4dc0473ef6bd85245c471773.jpg"
},
"id": "483"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.74546051025,
48.4716758728
]
},
"properties": {
"name": "De l&#8217;Aber Ildut à Paris",
"icon": "http://www.geodiversite.net/local/cache-gd2/474c4b785bcfccf91dff94045397e442.jpg"
},
"id": "482"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.74306774139,
48.4720344543
]
},
"properties": {
"name": "Ancienne forge - Carrière de Kerglonou",
"icon": "http://www.geodiversite.net/local/cache-gd2/627a12b622beb0c40522e9c954380e43.jpg"
},
"id": "481"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.74287748337,
48.4720230103
]
},
"properties": {
"name": "Une carrière&nbsp;: \"chanter braz\"",
"icon": "http://www.geodiversite.net/local/cache-gd2/918e06fd37a89ea386b190b276b347bc.jpg"
},
"id": "480"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.33765983582,
48.2857017517
]
},
"properties": {
"name": "Etat actuel du Loc&#8217;h",
"icon": "http://www.geodiversite.net/local/cache-gd2/d31492e4215ae65e9cfdccdcbc9ac2c8.jpg"
},
"id": "479"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.33822631836,
48.2851066589
]
},
"properties": {
"name": "Le cordon interne du Loc&#8217;h (Landévennec)",
"icon": "http://www.geodiversite.net/local/cache-gd2/16d4b43976a81c88f4e970d29cd10959.jpg"
},
"id": "478"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.33816194534,
48.2845497131
]
},
"properties": {
"name": "Mise en place d&#8217;un système de flèches en chicane (Le Loc&#8217;h, Landévennec)",
"icon": "http://www.geodiversite.net/local/cache-gd2/40cde777b7eca3754c61a9d7a5bf8faf.jpg"
},
"id": "477"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.33765983582,
48.2857017517
]
},
"properties": {
"name": "Cordon du Loc&#8217;h (Landévennec)",
"icon": "http://www.geodiversite.net/local/cache-gd2/fbb1f6a73e5ec50ffc51970e6872f683.jpg"
},
"id": "470"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.73090314865,
48.4340858459
]
},
"properties": {
"name": "Ossuaire de la chapelle Saint Yves",
"icon": "http://www.geodiversite.net/local/cache-gd2/45e3676c7593e1b1a1139e08edd30c54.jpg"
},
"id": "476"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
8.66390705109,
42.255859375
]
},
"properties": {
"name": "Sur la route dans les calanques de Piana",
"icon": "http://www.geodiversite.net/local/cache-gd2/1f94e3deb8a1b3d9a8919df8d3c27798.jpg"
},
"id": "475"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
8.61013412476,
41.9066963196
]
},
"properties": {
"name": "Roche près de la tour Parata en Corse",
"icon": "http://www.geodiversite.net/local/cache-gd2/507c4f2eda4b4b5ca0c67b233fea29ea.jpg"
},
"id": "474"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
9.16623783112,
41.3856010437
]
},
"properties": {
"name": "Vue plongeante depuis les falaises près de Bonifacio",
"icon": "http://www.geodiversite.net/local/cache-gd2/39a0e387579cee1fd17e527d2ac81ee7.jpg"
},
"id": "473"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
9.13387012482,
42.1281929016
]
},
"properties": {
"name": "Roches dans un cours d&#8217;eau dans la forêt de Vizzavona en Corse",
"icon": "http://www.geodiversite.net/local/cache-gd2/7f427833889571b3faf8c26fb228abfb.jpg"
},
"id": "472"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
9.13087558746,
41.3935928345
]
},
"properties": {
"name": "Falaise près de Bonifiacio en Corse",
"icon": "http://www.geodiversite.net/local/cache-gd2/0019720a06ddce8da6d52f84aa0fc14c.jpg"
},
"id": "471"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.33704996109,
48.2867012024
]
},
"properties": {
"name": "Cordon de galets (Le loc&#8217;h, Landévennec)",
"icon": "http://www.geodiversite.net/local/cache-gd2/832e3989f025ee695a2702db6e0dbd0a.jpg"
},
"id": "466"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
45.1337013245,
-12.9568996429
]
},
"properties": {
"name": "Mont Choungui (Mayotte)",
"icon": "http://www.geodiversite.net/local/cache-gd2/03cdea86d32522112a2c79b15e86db46.jpg"
},
"id": "465"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.74580669403,
48.3662605286
]
},
"properties": {
"name": "La grotte du diable",
"icon": "http://www.geodiversite.net/local/cache-gd2/6380f8ddd7601d715a40f94a0c957100.jpg"
},
"id": "464"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.74594092369,
48.3660736084
]
},
"properties": {
"name": "Marche de granite",
"icon": "http://www.geodiversite.net/local/cache-gd2/01cab08ba3ec117094f96d8ee66721b7.jpg"
},
"id": "463"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.97035598755,
48.4015159607
]
},
"properties": {
"name": "Schèma du dolmen.",
"icon": "http://www.geodiversite.net/local/cache-gd2/1715e82120c0608d6569e20f3c8d269e.jpg"
},
"id": "462"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.97087097168,
48.4016265869
]
},
"properties": {
"name": "Sépulture mégalithique.",
"icon": "http://www.geodiversite.net/local/cache-gd2/12ba90c1d7c5c56ec67c73cdf24beeb4.jpg"
},
"id": "461"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.86581420898,
48.4219093323
]
},
"properties": {
"name": "Roc&#8217;h des Monts d&#8217;Arrée",
"icon": "http://www.geodiversite.net/local/cache-gd2/febceb52fb346ef843e1db4aed997839.jpg"
},
"id": "460"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.86444091797,
48.4205436707
]
},
"properties": {
"name": "Roc&#8217;h Trévézel.",
"icon": "http://www.geodiversite.net/local/cache-gd2/76214479bef7fcaf3e1733fdd60bb030.jpg"
},
"id": "459"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.89293670654,
48.4086952209
]
},
"properties": {
"name": "Roc&#8217;h Trevezel - les monts d&#8217;Arrée",
"icon": "http://www.geodiversite.net/local/cache-gd2/517b730c51d7a4218e11e19b5a3c473d.jpg"
},
"id": "458"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.64495038986,
48.695930481
]
},
"properties": {
"name": "Ancienne carrière de pierre de Locquirec.",
"icon": "http://www.geodiversite.net/local/cache-gd2/8b1ba690105e40fda750f037cc335339.jpg"
},
"id": "457"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.64497184753,
48.6959190369
]
},
"properties": {
"name": "Ancien site d&#8217;extraction de la pierre de Locquirec.",
"icon": "http://www.geodiversite.net/local/cache-gd2/775518a9d45a06eb5a685369c05708d8.jpg"
},
"id": "456"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.64497184753,
48.6954345703
]
},
"properties": {
"name": "La pierre de Locquirec.",
"icon": "http://www.geodiversite.net/local/cache-gd2/077019f08a1ac5357513ce6940410420.jpg"
},
"id": "455"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.74634861946,
48.3654174805
]
},
"properties": {
"name": "Huelgoat.",
"icon": "http://www.geodiversite.net/local/cache-gd2/c58d37f6a8365196c7c433c3481f083a.jpg"
},
"id": "454"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.74650430679,
48.3650970459
]
},
"properties": {
"name": "Lac du Huelgoat",
"icon": "http://www.geodiversite.net/local/cache-gd2/b95eabe80897d80cde5eee85f959c40e.jpg"
},
"id": "453"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.8340139389,
48.5832939148
]
},
"properties": {
"name": "Manufacture des tabacs du port de Morlaix..",
"icon": "http://www.geodiversite.net/local/cache-gd2/2ed995f80752f60f3c858cba07f15844.jpg"
},
"id": "452"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.08288002014,
48.4030227661
]
},
"properties": {
"name": "L&#8217;élorn à sizun",
"icon": "http://www.geodiversite.net/local/cache-gd2/bb81a8b6cd784902e462e3189043b37e.jpg"
},
"id": "451"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.44880008698,
45.9719009399
]
},
"properties": {
"name": "Lapiaz détail",
"icon": "http://www.geodiversite.net/local/cache-gd2/c3c927080e76aba9eb5f3f9cf61d4690.jpg"
},
"id": "450"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.45726013184,
48.3283004761
]
},
"properties": {
"name": "Filon de Kersantite - Altération en boule",
"icon": "http://www.geodiversite.net/local/cache-gd2/cea9d5b36eda5be164c7a15da060e391.jpg"
},
"id": "449"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.45726299286,
48.328250885
]
},
"properties": {
"name": "Altération en boule d&#8217;une kersantite",
"icon": "http://www.geodiversite.net/local/cache-gd2/d433f8f5e1bd6dbf6ebd7654369f5b0b.jpg"
},
"id": "448"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.42532014847,
48.2290992737
]
},
"properties": {
"name": "Filon de Kersantite - Plage de la source",
"icon": "http://www.geodiversite.net/local/cache-gd2/e60f22a851892fa94bc2dd7e03d7f59b.jpg"
},
"id": "444"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.49094581604,
45.9199905396
]
},
"properties": {
"name": "Chaîne des Aravis",
"icon": "http://www.geodiversite.net/local/cache-gd2/79e9692a7d8c28a2bcd8805148671f5b.jpg"
},
"id": "447"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.44880008698,
45.9719009399
]
},
"properties": {
"name": "lapiaz",
"icon": "http://www.geodiversite.net/local/cache-gd2/0531958eeebec25259a5c6d31a21b5c2.jpg"
},
"id": "446"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.43132591248,
48.2303924561
]
},
"properties": {
"name": "Ampélites",
"icon": "http://www.geodiversite.net/local/cache-gd2/7df845a45bb49e106f361747c4f6a09b.jpg"
},
"id": "445"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.59145379066,
48.766040802
]
},
"properties": {
"name": "Baie au sud de l&#8217;île Millau",
"icon": "http://www.geodiversite.net/local/cache-gd2/c8b801856fafa93dd710efd07d58b312.jpg"
},
"id": "443"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.59336876869,
48.766582489
]
},
"properties": {
"name": "Détail de la Cornéenne",
"icon": "http://www.geodiversite.net/local/cache-gd2/ba8b9e5adedfda9e84971eb9592c3501.jpg"
},
"id": "442"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.59336090088,
48.7665519714
]
},
"properties": {
"name": "Détail du contact Granite / Cornéenne à l&#8217;Île Millau",
"icon": "http://www.geodiversite.net/local/cache-gd2/a57cd02e930e9d7db631399e10a1196c.jpg"
},
"id": "441"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.59332060814,
48.7665519714
]
},
"properties": {
"name": "Zone de contact entre le granite de La Clarté et son encaissant sédimentaire",
"icon": "http://www.geodiversite.net/local/cache-gd2/d70c6bf177c67a19e56c9163d2b022aa.jpg"
},
"id": "440"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.58242273331,
48.7889976501
]
},
"properties": {
"name": "Zone de contact entre le granite de La Clarté et le granite de type Canton",
"icon": "http://www.geodiversite.net/local/cache-gd2/284caf29b0e4535d30ec51c7f7c60fb2.jpg"
},
"id": "439"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.11491203308,
48.4642105103
]
},
"properties": {
"name": "Echantillon de microsyénite de l&#8217;île d&#8217;Ouessant",
"icon": "http://www.geodiversite.net/local/cache-gd2/285b42545378e28074cfc73ff957ad79.jpg"
},
"id": "436"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.07167816162,
48.480884552
]
},
"properties": {
"name": "Granite de Kadoran",
"icon": "http://www.geodiversite.net/local/cache-gd2/22a6c83926d233578adeaf1e4e7e615f.jpg"
},
"id": "435"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.11591053009,
48.4380455017
]
},
"properties": {
"name": "Lame mince de tourmalinite d&#8217;Ouessant",
"icon": "http://www.geodiversite.net/local/cache-gd2/84cbad6c3a0674b89503057514c8f002.jpg"
},
"id": "434"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.11771202087,
48.4381904602
]
},
"properties": {
"name": "Echantillon de Tourmalinite de l&#8217;île d&#8217;Ouessant",
"icon": "http://www.geodiversite.net/local/cache-gd2/1f50b6336b2d84f9c42c981666d17fe6.jpg"
},
"id": "433"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.07860183716,
48.4501533508
]
},
"properties": {
"name": "Granite à biotite de Porzguen ",
"icon": "http://www.geodiversite.net/local/cache-gd2/803c655e58b2e32236744f3decaf59ae.jpg"
},
"id": "432"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.11693954468,
48.4457206726
]
},
"properties": {
"name": "Détail d&#8217;une zone de contact muscovite-chlorite",
"icon": "http://www.geodiversite.net/local/cache-gd2/ce7d47b870007249d0fe1695396bae11.jpg"
},
"id": "431"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.14009952545,
48.4483337402
]
},
"properties": {
"name": "Lame mince galet de basalte de Ouessant",
"icon": "http://www.geodiversite.net/local/cache-gd2/a2f601eab045f4356df0886cfa99541b.jpg"
},
"id": "430"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.09625911713,
48.4574394226
]
},
"properties": {
"name": "Carte géologique simplifiée de l&#8217;île d&#8217;Ouessant",
"icon": "http://www.geodiversite.net/local/cache-gd2/d50fb90eef2c723c858a14b8e51a48ed.jpg"
},
"id": "429"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.11662483215,
48.4453735352
]
},
"properties": {
"name": "lame mince du granite rose mylonitisé d&#8217;Ouessant",
"icon": "http://www.geodiversite.net/local/cache-gd2/d8e834717179825e34127551c153cad2.jpg"
},
"id": "428"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.11688232422,
48.4454879761
]
},
"properties": {
"name": "Granite rose d&#8217;Ouessant",
"icon": "http://www.geodiversite.net/local/cache-gd2/43b5c0fa1a04f207a10d3b8741388dcf.jpg"
},
"id": "427"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.13980960846,
48.4502754211
]
},
"properties": {
"name": "Galet de basalte échoué à Ouessant",
"icon": "http://www.geodiversite.net/local/cache-gd2/5a3895fdc0f1c5772a91f1f1fec86e81.jpg"
},
"id": "426"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55417633057,
48.5235443115
]
},
"properties": {
"name": "Echantillon de sillimanite et tourmaline - Plouguin (2)",
"icon": "http://www.geodiversite.net/local/cache-gd2/d4cb7e72f4a2260224606dec956ac807.jpg"
},
"id": "425"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55409049988,
48.5236091614
]
},
"properties": {
"name": "Echantillon de Sillimanite et tourmaline - Plouguin (1)",
"icon": "http://www.geodiversite.net/local/cache-gd2/4a3d7889a60f5b7417c7b3a4b4a857ce.jpg"
},
"id": "424"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.47807407379,
48.8160858154
]
},
"properties": {
"name": "Lame mince granite type La Clarté - Vidéo",
"icon": "http://www.geodiversite.net/local/cache-gd2/81854246e9044b0bce096f6be97dc323.jpg"
},
"id": "423"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.47897648811,
48.8161125183
]
},
"properties": {
"name": "Lame mince granite type La Clarté",
"icon": "http://www.geodiversite.net/local/cache-gd2/5eea781c7b674d9cb2b5f900ff84d98e.jpg"
},
"id": "422"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.47918987274,
48.8159637451
]
},
"properties": {
"name": "Echantillon de granite de Ploumanac&#8217;h",
"icon": "http://www.geodiversite.net/local/cache-gd2/006f7f246d0c17df66a9f55b305400a0.jpg"
},
"id": "421"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.72279882431,
48.3569202809
]
},
"properties": {
"name": "Laveries de la mine de Locmaria-Berrien et Huelgoat",
"icon": "http://www.geodiversite.net/local/cache-gd2/4e61f847938b292ca4b450c048c1a414.jpg"
},
"id": "420"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.72125387192,
48.3554649353
]
},
"properties": {
"name": "La grande machine hydraulique",
"icon": "http://www.geodiversite.net/local/cache-gd2/19b9e3139d7469394e3649d03ce49d75.jpg"
},
"id": "419"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.7210392952,
48.355430603
]
},
"properties": {
"name": "Reproduction de la roue hydraulique de la mine de Locmaria-Berrien",
"icon": "http://www.geodiversite.net/local/cache-gd2/2788c0d3b5a2311fbb830f8f5efecfad.jpg"
},
"id": "418"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.58946609497,
43.936378479
]
},
"properties": {
"name": "Entrée nord du canyon d&#8217;Oppedette",
"icon": "http://www.geodiversite.net/local/cache-gd2/2860484eb799839a86c77b90797bd44e.jpg"
},
"id": "417"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.13164520264,
43.9193496704
]
},
"properties": {
"name": "La fontaine de vaucluse",
"icon": "http://www.geodiversite.net/local/cache-gd2/27918f20fe38403fbb40f8c413e6dfa7.jpg"
},
"id": "416"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.53211021423,
43.9107017517
]
},
"properties": {
"name": "Empreinte fossilisée d&#8217;artiodactyle",
"icon": "http://www.geodiversite.net/local/cache-gd2/f0ff0e320bae7e2308a111753fbb045c.jpg"
},
"id": "415"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.5321097374,
43.9106788635
]
},
"properties": {
"name": "Dalle géologique de Viens (84)",
"icon": "http://www.geodiversite.net/local/cache-gd2/6743de7a06d790ed91c6aed73ad5a9a9.jpg"
},
"id": "414"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.47961902618,
48.827495575
]
},
"properties": {
"name": "Echantillon de Granite de Ploumanac&#8217;h (face polie)",
"icon": "http://www.geodiversite.net/local/cache-gd2/957fb7086413fce332c582451070a937.jpg"
},
"id": "412"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.47987651825,
48.8276634216
]
},
"properties": {
"name": "Lame mince d&#8217;un échantillon de granite de Ploumanac&#8217;h",
"icon": "http://www.geodiversite.net/local/cache-gd2/59229fe0ad79a8902735ec04bdf9d9a6.jpg"
},
"id": "411"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
160.13053894,
54.4337158203
]
},
"properties": {
"name": "Vallé des geysers",
"icon": "http://www.geodiversite.net/local/cache-gd2/26233f2098d1dd33685460684712ecd0.jpg"
},
"id": "410"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
55.5249023438,
-21.1664829254
]
},
"properties": {
"name": "Roche cirque de Salazie",
"icon": "http://www.geodiversite.net/local/cache-gd2/b744c9c40840e6a408b16a7fb342edd3.jpg"
},
"id": "409"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
55.4905700684,
-21.0473365784
]
},
"properties": {
"name": "Gros morne et piton des neiges",
"icon": "http://www.geodiversite.net/local/cache-gd2/9d2cabf10907342fe7c94bf59b7b1919.jpg"
},
"id": "408"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
55.479598999,
-21.1114006042
]
},
"properties": {
"name": "Grand bénard",
"icon": "http://www.geodiversite.net/local/cache-gd2/ae36b6190a8786dbf8831560e6d27807.jpg"
},
"id": "407"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
55.6100463867,
-21.007598877
]
},
"properties": {
"name": "chute Salazie",
"icon": "http://www.geodiversite.net/local/cache-gd2/c7d34af7aabd0910c16de7bfc8dbd206.jpg"
},
"id": "406"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
55.4809570312,
-21.0473365784
]
},
"properties": {
"name": "Cirque de Salazie",
"icon": "http://www.geodiversite.net/local/cache-gd2/737712a9c8e0e9db202b9062253918bf.jpg"
},
"id": "405"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
55.5963134766,
-21.007598877
]
},
"properties": {
"name": "détail lave",
"icon": "http://www.geodiversite.net/local/cache-gd2/360f972a9e4cf15c652fd0c4fb477a63.jpg"
},
"id": "404"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
55.7394790649,
-21.2695388794
]
},
"properties": {
"name": "cratères 16 octobre 2010 (3)",
"icon": "http://www.geodiversite.net/local/cache-gd2/80fde83f8d4f421505cd347e9c8d18ad.jpg"
},
"id": "403"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
55.7401657104,
-21.2695388794
]
},
"properties": {
"name": "cratères 16 octobre 2010 (2)",
"icon": "http://www.geodiversite.net/local/cache-gd2/86de8e7d7337c72ea0b7e48e1339dd01.jpg"
},
"id": "402"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
55.7381057739,
-21.2695388794
]
},
"properties": {
"name": "cratères 16 octobre 2010 (1)",
"icon": "http://www.geodiversite.net/local/cache-gd2/8f3742186e7aec5e42dcc49719f178d0.jpg"
},
"id": "401"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
55.7374000549,
-21.2747001648
]
},
"properties": {
"name": "coulée éruption 16 octobre 2010",
"icon": "http://www.geodiversite.net/local/cache-gd2/74be6abaea10563abf7e6894b674e07a.jpg"
},
"id": "400"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
55.7941017151,
-21.273399353
]
},
"properties": {
"name": "Coulée de lave",
"icon": "http://www.geodiversite.net/local/cache-gd2/3dd773bf386cdac85b055c8f565010d5.jpg"
},
"id": "399"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
3.49279236794,
44.2168731689
]
},
"properties": {
"name": "Chaos de Nîmes le Vieux",
"icon": "http://www.geodiversite.net/local/cache-gd2/4031a8915b4ba5a8be66d6dc509a37e0.jpg"
},
"id": "398"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
3.49644184113,
44.2213821411
]
},
"properties": {
"name": "Chaos de Nîmes le Vieux",
"icon": "http://www.geodiversite.net/local/cache-gd2/d3cb0d493052c0a7f765f301ea0f9387.jpg"
},
"id": "397"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.21968984604,
44.8437995911
]
},
"properties": {
"name": "Mont Gerbier de Jonc",
"icon": "http://www.geodiversite.net/local/cache-gd2/71bbf221a51add83d7905c4f859dd38c.jpg"
},
"id": "396"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.25388145447,
44.2149085999
]
},
"properties": {
"name": "Le \"vélodrome\"",
"icon": "http://www.geodiversite.net/local/cache-gd2/e4c70b1d007f2800b5e38cb7dd82815f.jpg"
},
"id": "395"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.23826026917,
44.0937957764
]
},
"properties": {
"name": "Musée des Terres - H. de Vries",
"icon": "http://www.geodiversite.net/local/cache-gd2/14547092375e13b31eec818fbca7d02a.jpg"
},
"id": "394"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.71237564087,
46.1896057129
]
},
"properties": {
"name": "Fouilles paléontologiques de Plagne",
"icon": "http://www.geodiversite.net/local/cache-gd2/9becd23e65f4c37b8b6483f0cb7937f1.jpg"
},
"id": "393"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.71166753769,
46.1896095276
]
},
"properties": {
"name": "Pistes de sauropodes",
"icon": "http://www.geodiversite.net/local/cache-gd2/6334e80e452232cc41299473090f1c71.jpg"
},
"id": "392"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.60043907166,
48.2837944031
]
},
"properties": {
"name": "Trilobite,Camaret",
"icon": "http://www.geodiversite.net/local/cache-gd2/42569c11fe624c1a272ab2e967610e02.jpg"
},
"id": "391"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
2.54853844643,
43.0173873901
]
},
"properties": {
"name": "Piton rocheux (jurassique)",
"icon": "http://www.geodiversite.net/local/cache-gd2/391ea02c858a63ffcbb03aabf9d832f4.jpg"
},
"id": "390"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
2.52087140083,
43.0052604675
]
},
"properties": {
"name": "Façade de schiste dans les Corbieres ",
"icon": "http://www.geodiversite.net/local/cache-gd2/11f4f40b1a5da32a33f0b48e783f36a6.jpg"
},
"id": "389"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.54659986496,
48.3106002808
]
},
"properties": {
"name": "Roscanvel, Lanvernazal",
"icon": "http://www.geodiversite.net/local/cache-gd2/3c86af8fa6dfc64bcc0b4478cbbef70e.jpg"
},
"id": "384"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.31619977951,
43.9253005981
]
},
"properties": {
"name": "Site fossilifère",
"icon": "http://www.geodiversite.net/local/cache-gd2/229a74256e06ee8d278abaeee737630a.jpg"
},
"id": "388"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.31619739532,
43.9253158569
]
},
"properties": {
"name": "Ammonite fossilisée",
"icon": "http://www.geodiversite.net/local/cache-gd2/34dbf7d621aebd2c6bdf2e55c6108cc1.jpg"
},
"id": "387"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.31619739532,
43.9253158569
]
},
"properties": {
"name": "Affleurement de fossiles",
"icon": "http://www.geodiversite.net/local/cache-gd2/644b9d0e120a3a6264b4f99564e53848.jpg"
},
"id": "386"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.56835985184,
48.2849998474
]
},
"properties": {
"name": "Concave convexe",
"icon": "http://www.geodiversite.net/local/cache-gd2/da521005d362ec3e15a1fb6a2cee821b.jpg"
},
"id": "383"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.37230110168,
45.4150886536
]
},
"properties": {
"name": "Géologie à la Ricamarie",
"icon": "http://www.geodiversite.net/local/cache-gd2/72f89be3ff4bd9cc2315c61bd5488332.jpg"
},
"id": "382"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.00400161743,
45.7207489014
]
},
"properties": {
"name": "Géologie et viticulture",
"icon": "http://www.geodiversite.net/local/cache-gd2/72f89be3ff4bd9cc2315c61bd5488332.jpg"
},
"id": "381"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.02425765991,
45.6977653503
]
},
"properties": {
"name": "Jeux d&#8217;orgues basaltiques",
"icon": "http://www.geodiversite.net/local/cache-gd2/47d739b57d950e568b5fdfb68e754b09.jpg"
},
"id": "380"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.02439689636,
45.6980781555
]
},
"properties": {
"name": "Orgues basaltiques de Marcilly-le-chatel",
"icon": "http://www.geodiversite.net/local/cache-gd2/ef6fbe9186092b39069e0f778bcfbff1.jpg"
},
"id": "379"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.02444553375,
45.6982955933
]
},
"properties": {
"name": "Orgues basaltiques de Marcilly-le-chatel",
"icon": "http://www.geodiversite.net/local/cache-gd2/f6a0ec298f047b117b8f5169f0ccfe0c.jpg"
},
"id": "378"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
3.33992958069,
45.5282363892
]
},
"properties": {
"name": "Prismation basalte Usson",
"icon": "http://www.geodiversite.net/local/cache-gd2/ca6ae6ce3a007f0c11042d620f65d89a.jpg"
},
"id": "377"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
3.33658218384,
45.5258331299
]
},
"properties": {
"name": "Habitat local et géologie - prismes de basalte",
"icon": "http://www.geodiversite.net/local/cache-gd2/c57dcb3498b7202c9ab2f4d00cc78838.jpg"
},
"id": "376"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
2.35733985901,
48.8470954895
]
},
"properties": {
"name": "Bulletin Association des Etudiants en Géologie de P6",
"icon": "http://www.geodiversite.net/local/cache-gd2/8b42b2c70734a16069cf0a6d9f392ce8.jpg"
},
"id": "375"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.54900979996,
48.3079986572
]
},
"properties": {
"name": "Altération en boule d&#8217;une kersantite",
"icon": "http://www.geodiversite.net/local/cache-gd2/b2399ed562e7a04ff01279a44778eaec.jpg"
},
"id": "374"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.54900979996,
48.3079986572
]
},
"properties": {
"name": "Roche sur l&#8217;estran de Roscanvel",
"icon": "http://www.geodiversite.net/local/cache-gd2/5e0c540ae03bd9fd0da0db8dd5f494df.jpg"
},
"id": "373"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.56748008728,
48.2874832153
]
},
"properties": {
"name": "Coupe de Trez Rouz en Crozon",
"icon": "http://www.geodiversite.net/local/cache-gd2/fb870ac38c9d49fbb97bb012756647ab.jpg"
},
"id": "372"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.54900979996,
48.3079986572
]
},
"properties": {
"name": "Roscanvel, Quélern",
"icon": "http://www.geodiversite.net/local/cache-gd2/0ba16d42b6f83eaf386dcab4b5c6615c.jpg"
},
"id": "361"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.28944778442,
44.1904144287
]
},
"properties": {
"name": "Filons croisés",
"icon": "http://www.geodiversite.net/local/cache-gd2/508c99e38e4807395e78be8d47e06a88.jpg"
},
"id": "371"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.49412965775,
43.9138221741
]
},
"properties": {
"name": "Ocres rouges du Luberon",
"icon": "http://www.geodiversite.net/local/cache-gd2/9a86673953d87451492573bf60dd49a0.jpg"
},
"id": "370"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.4961681366,
43.9137229919
]
},
"properties": {
"name": "Cheminée de fée",
"icon": "http://www.geodiversite.net/local/cache-gd2/90e7ef36ca36f96e901569f779f6f84a.jpg"
},
"id": "369"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.14646434784,
44.1985282898
]
},
"properties": {
"name": "Fossilisation de marées successives",
"icon": "http://www.geodiversite.net/local/cache-gd2/3b8c810cb068f5299c280b01f4ee29c3.jpg"
},
"id": "368"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.14646434784,
44.1985282898
]
},
"properties": {
"name": "Traces fossiles des marées il y a.....",
"icon": "http://www.geodiversite.net/local/cache-gd2/2106cb08e101e3c519256f16baaed647.jpg"
},
"id": "367"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.28939390182,
44.1903915405
]
},
"properties": {
"name": "Filons recomposés",
"icon": "http://www.geodiversite.net/local/cache-gd2/eb0c260204150b5f2d457e4a11c74456.jpg"
},
"id": "366"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.12543582916,
44.1855125427
]
},
"properties": {
"name": "Poudingue",
"icon": "http://www.geodiversite.net/local/cache-gd2/78a592f4e352c2a0207aaa81b935e38b.jpg"
},
"id": "365"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.25568389893,
44.2335014343
]
},
"properties": {
"name": "Sentinelle",
"icon": "http://www.geodiversite.net/local/cache-gd2/a6032ca7d10d978d733eb47c53452414.jpg"
},
"id": "364"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.22596502304,
44.1086807251
]
},
"properties": {
"name": "Fossile d&#8217;amonite",
"icon": "http://www.geodiversite.net/local/cache-gd2/d7df689437674e9e8e277496468581a7.jpg"
},
"id": "363"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.25582313538,
44.2336235046
]
},
"properties": {
"name": "Clue de Barles",
"icon": "http://www.geodiversite.net/local/cache-gd2/e12e13a0924576af8e5164d7d1d5d71c.jpg"
},
"id": "362"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.18126869202,
48.2955856323
]
},
"properties": {
"name": "Mur sud de l&#8217;église Saint-Sauveur - Le Faou",
"icon": "http://www.geodiversite.net/local/cache-gd2/eb8a605f0fda9becc30fdb2c05a1490c.jpg"
},
"id": "358"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.60289049149,
48.2604141235
]
},
"properties": {
"name": "Graptolites&nbsp;: \"comme des traits de crayon sur la roche\"",
"icon": "http://www.geodiversite.net/local/cache-gd2/a0f8f25ffb1422b4f1265b827772d489.jpg"
},
"id": "355"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.60023498535,
48.2843933105
]
},
"properties": {
"name": "Graptolite&nbsp;: \"écrit sur la pierre\"",
"icon": "http://www.geodiversite.net/local/cache-gd2/942056ac83e2d73fe1431b7f73963762.jpg"
},
"id": "354"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.13709020615,
47.3288764954
]
},
"properties": {
"name": "Détail de l&#8217;éperon sud-est de la plage de Bordardoué",
"icon": "http://www.geodiversite.net/local/cache-gd2/0a235d5b88afa9ebce91040042fea623.jpg"
},
"id": "353"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.13704252243,
47.3288803101
]
},
"properties": {
"name": "Détail de l&#8217;éperon sud-est de la plage de Bordardoué",
"icon": "http://www.geodiversite.net/local/cache-gd2/4b2a355be5ed088a7e16d6e91c2c14cf.jpg"
},
"id": "352"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.13704252243,
47.3288192749
]
},
"properties": {
"name": "Eperon sud-est de la plage de Bordardoué",
"icon": "http://www.geodiversite.net/local/cache-gd2/7b80f881d5603f3c2a7c63c42f4a6bc3.jpg"
},
"id": "351"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.5588145256,
48.1698226929
]
},
"properties": {
"name": "Arche à l&#8217;extrémité du Cap de la Chèvre",
"icon": "http://www.geodiversite.net/local/cache-gd2/92e222b9b234fcf74cf1eaaf9ac1bddc.jpg"
},
"id": "349"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55886507034,
48.1698265076
]
},
"properties": {
"name": "Falaise du Cap de la Chèvre",
"icon": "http://www.geodiversite.net/local/cache-gd2/7ba848cf47b925ad29bf2dfe45f866fa.jpg"
},
"id": "348"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.74414634705,
44.8290290833
]
},
"properties": {
"name": "Chenaillet vu du col d&#8217;Izoard",
"icon": "http://www.geodiversite.net/local/cache-gd2/d9389dc323db0d12051227d1cbbe3143.jpg"
},
"id": "347"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.7381401062,
44.9037017822
]
},
"properties": {
"name": "Le Chenaillet vu de la cabane du douanier",
"icon": "http://www.geodiversite.net/local/cache-gd2/7fa68f64580a3736283099bd91c29135.jpg"
},
"id": "346"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
101.865234375,
-51.6180152893
]
},
"properties": {
"name": "Iceberg",
"icon": "http://www.geodiversite.net/local/cache-gd2/67bab3465ac68e589412fe74af1eb071.jpg"
},
"id": "345"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
51.7852592468,
-46.3815193176
]
},
"properties": {
"name": "La Hébé",
"icon": "http://www.geodiversite.net/local/cache-gd2/4fe766b8ffda8ded497909879a202cd6.jpg"
},
"id": "344"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
51.6898155212,
-46.4178848267
]
},
"properties": {
"name": "Le pain de sucre",
"icon": "http://www.geodiversite.net/local/cache-gd2/5dcaa2fd1223901e17519f2daa268b8f.jpg"
},
"id": "343"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
51.7727279663,
-46.4558372498
]
},
"properties": {
"name": "Sols hexagonaux autour du Lac perdu",
"icon": "http://www.geodiversite.net/local/cache-gd2/8e6fa2db5f08a65df8c33c6165656a7c.jpg"
},
"id": "342"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
51.7232894897,
-46.3718528748
]
},
"properties": {
"name": "Grande coulée depuis la queue du Dragon",
"icon": "http://www.geodiversite.net/local/cache-gd2/2d181adee93d1e65006c947daf732a02.jpg"
},
"id": "341"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
52.1054077148,
-46.4340705872
]
},
"properties": {
"name": "Ile de l&#8217;Est",
"icon": "http://www.geodiversite.net/local/cache-gd2/9e067432025361e5352a91683d04c624.jpg"
},
"id": "340"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
50.3984069824,
-46.4143829346
]
},
"properties": {
"name": "Ile aux Pingouins",
"icon": "http://www.geodiversite.net/local/cache-gd2/67829f1ed6079795daaba8dab681d42d.jpg"
},
"id": "339"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
50.2991867065,
-46.099899292
]
},
"properties": {
"name": "Ile aux Cochons",
"icon": "http://www.geodiversite.net/local/cache-gd2/b14c3efa7c8487ca1e710cc428f5ae69.jpg"
},
"id": "338"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
50.4505996704,
-45.9721984863
]
},
"properties": {
"name": "Archipel des Apôtres",
"icon": "http://www.geodiversite.net/local/cache-gd2/300e0b4863802855bf25ddeaa0c1e568.jpg"
},
"id": "337"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.625,
32.1384086609
]
},
"properties": {
"name": "Rose des sables",
"icon": "http://www.geodiversite.net/local/cache-gd2/0d167a0c533310fa8957426bb446e48b.jpg"
},
"id": "336"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.7545375824,
44.7961120605
]
},
"properties": {
"name": "Fossiles de pentacrines",
"icon": "http://www.geodiversite.net/local/cache-gd2/845fb1950d34759908395916127e151b.jpg"
},
"id": "334"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.75467157364,
44.7960090637
]
},
"properties": {
"name": "Affleurement à pentacrines",
"icon": "http://www.geodiversite.net/local/cache-gd2/ead1394a9f5bf65446a9e45216104d56.jpg"
},
"id": "333"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.39790010452,
47.9362411499
]
},
"properties": {
"name": "Baie d&#8217;Audierne",
"icon": "http://www.geodiversite.net/local/cache-gd2/dca0b2fb49caadffbf376d2b72628e11.jpg"
},
"id": "332"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.39776992798,
47.9358940125
]
},
"properties": {
"name": "Rocher ",
"icon": "http://www.geodiversite.net/local/cache-gd2/50dd9bf61118f64b17830e91d1016ad6.jpg"
},
"id": "331"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.43015241623,
48.2358512878
]
},
"properties": {
"name": "Détail d&#8217;un oreiller de lave",
"icon": "http://www.geodiversite.net/local/cache-gd2/72c276ebef58ed9f4323a684fb023b9e.jpg"
},
"id": "330"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.43014812469,
48.2358474731
]
},
"properties": {
"name": "Oreillers de lave",
"icon": "http://www.geodiversite.net/local/cache-gd2/92619bf37500e918999485f83ddcf80e.jpg"
},
"id": "329"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.23409223557,
44.1194419861
]
},
"properties": {
"name": "Détail de la dalle à ammonites",
"icon": "http://www.geodiversite.net/local/cache-gd2/b25987fc2b7c6bd8e4bc932459489f4a.jpg"
},
"id": "328"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.23404407501,
44.119430542
]
},
"properties": {
"name": "Dalle à ammonites de Digne-les-Bains",
"icon": "http://www.geodiversite.net/local/cache-gd2/2b581594e2f89e34b10d3e955f95c91a.jpg"
},
"id": "327"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.29942131042,
46.9497833252
]
},
"properties": {
"name": "Autun",
"icon": "http://www.geodiversite.net/local/cache-gd2/71bf758ef5896020e06ffed515def02c.jpg"
},
"id": "326"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.22581005096,
44.1088981628
]
},
"properties": {
"name": "Paysage marno-calcaire",
"icon": "http://www.geodiversite.net/local/cache-gd2/8da345a89fa5de00af1666ea12c55944.jpg"
},
"id": "325"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.32037353516,
48.2036247253
]
},
"properties": {
"name": "Schistes plissés",
"icon": "http://www.geodiversite.net/local/cache-gd2/62c49722efb447be96208a1e24668d05.jpg"
},
"id": "324"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
1.82070529461,
44.8536148071
]
},
"properties": {
"name": "Falaise calcaire",
"icon": "http://www.geodiversite.net/local/cache-gd2/57acc53a8b0823bc521f95a579eb463c.jpg"
},
"id": "323"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
1.78802490234,
45.8570213318
]
},
"properties": {
"name": "Marmite granitique",
"icon": "http://www.geodiversite.net/local/cache-gd2/1c97fe8a64f8a161e98b46ad93cf50b5.jpg"
},
"id": "322"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
1.79907143116,
45.8570823669
]
},
"properties": {
"name": "Chaos granitique",
"icon": "http://www.geodiversite.net/local/cache-gd2/ffb916b0d63056d146b78e1288416309.jpg"
},
"id": "321"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
167.389068604,
-21.0082397461
]
},
"properties": {
"name": "Baie de Luengoni",
"icon": "http://www.geodiversite.net/local/cache-gd2/5aad95ffda299408da43d0f6cb727131.jpg"
},
"id": "320"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
167.401763916,
-21.1107654572
]
},
"properties": {
"name": "Falaise de corail&nbsp;?",
"icon": "http://www.geodiversite.net/local/cache-gd2/fbbe9e275372f551a87cb0393b9a6fce.jpg"
},
"id": "319"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
167.270965576,
-20.7349243164
]
},
"properties": {
"name": "Grotte du Diable",
"icon": "http://www.geodiversite.net/local/cache-gd2/b877d28cfd15026bcd8f8fb6b0af5f6b.jpg"
},
"id": "318"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
167.132598877,
-20.7785053253
]
},
"properties": {
"name": "Easo",
"icon": "http://www.geodiversite.net/local/cache-gd2/cb88321c1b553f6a56c00734f94a3aa1.jpg"
},
"id": "317"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
167.152175903,
-20.7856464386
]
},
"properties": {
"name": "Chepenehe",
"icon": "http://www.geodiversite.net/local/cache-gd2/4427cbfa4c4c529207524fbe72c68fad.jpg"
},
"id": "316"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
166.837005615,
-22.1963062286
]
},
"properties": {
"name": "Chute de la Madeleine",
"icon": "http://www.geodiversite.net/local/cache-gd2/ce43415d3a11f100befb62b5d6b83562.jpg"
},
"id": "315"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
165.985397339,
-21.5251064301
]
},
"properties": {
"name": "Cascade de Ciu",
"icon": "http://www.geodiversite.net/local/cache-gd2/3c6186393bdfb444d4ecd02d909d75cd.jpg"
},
"id": "314"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
166.667999268,
-22.1135997772
]
},
"properties": {
"name": "un filon de garniérite&nbsp;?",
"icon": "http://www.geodiversite.net/local/cache-gd2/d975a93f1ee24180c871ca1f9b8acac4.jpg"
},
"id": "313"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
166.83013916,
-22.1988487244
]
},
"properties": {
"name": "IMG_0071.JPG",
"icon": "http://www.geodiversite.net/local/cache-gd2/6d4326ba3b337969a5ecafad3c673c08.jpg"
},
"id": "312"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
166.828765869,
-22.2058429718
]
},
"properties": {
"name": "IMG_0066.JPG",
"icon": "http://www.geodiversite.net/local/cache-gd2/5244dd6c658c636e6adcf01c9be3fd0f.jpg"
},
"id": "311"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
166.664993286,
-22.10090065
]
},
"properties": {
"name": "minerai&nbsp;?",
"icon": "http://www.geodiversite.net/local/cache-gd2/5960e6fa32d9041b0259c1ef47901f79.jpg"
},
"id": "303"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.5654296875,
45.5008621216
]
},
"properties": {
"name": "Dallage avec des rides de sable fossiles",
"icon": "http://www.geodiversite.net/local/cache-gd2/4354232277c0d40f7bdd3b68ac126398.jpg"
},
"id": "310"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.60260009766,
48.259147644
]
},
"properties": {
"name": "Galet de calcaire à coraux",
"icon": "http://www.geodiversite.net/local/cache-gd2/3eb03c463441ad97ba405ffbd3bdc8ce.jpg"
},
"id": "309"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.60260009766,
48.2591018677
]
},
"properties": {
"name": "Fossiles de coraux",
"icon": "http://www.geodiversite.net/local/cache-gd2/9505b8da2f85ca7f41a8dfe86f4a152f.jpg"
},
"id": "307"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.60255813599,
48.2590789795
]
},
"properties": {
"name": "Fossile d&#8217;Orthocère",
"icon": "http://www.geodiversite.net/local/cache-gd2/b4f63fb34310d406fcb4b988c6565483.jpg"
},
"id": "305"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.6083946228,
48.2609062195
]
},
"properties": {
"name": "Pyramide",
"icon": "http://www.geodiversite.net/local/cache-gd2/69451972468ac938e778cbb4b457cfb5.jpg"
},
"id": "304"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
164.944000244,
-20.6881008148
]
},
"properties": {
"name": "La Poule de Hienghène",
"icon": "http://www.geodiversite.net/local/cache-gd2/ad9b2bcd22b4870d4f0989ad6bc495a5.jpg"
},
"id": "302"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
37.981300354,
-2.91903996468
]
},
"properties": {
"name": "shetani flow HO",
"icon": "http://www.geodiversite.net/local/cache-gd2/78cf6672f40b666c1acaeb48ca659da8.jpg"
},
"id": "291"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.48085594177,
48.393409729
]
},
"properties": {
"name": "Calcaire urbain",
"icon": "http://www.geodiversite.net/local/cache-gd2/4333609b8c06daadd9eca9b15055c346.jpg"
},
"id": "301"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.48085594177,
48.393409729
]
},
"properties": {
"name": "Calcaire urbain",
"icon": "http://www.geodiversite.net/local/cache-gd2/a9f8a007fb0ec9b245418a758375a4ab.jpg"
},
"id": "300"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.48085594177,
48.393409729
]
},
"properties": {
"name": "Calcaire urbain",
"icon": "http://www.geodiversite.net/local/cache-gd2/d5aa565e6840f57498f4102843bf2618.jpg"
},
"id": "299"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.48085594177,
48.393409729
]
},
"properties": {
"name": "Calcaire urbain",
"icon": "http://www.geodiversite.net/local/cache-gd2/b42bbfc1696af0430a3efdce54c91117.jpg"
},
"id": "189"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
170.101013184,
-43.6851768494
]
},
"properties": {
"name": "Mont Cook",
"icon": "http://www.geodiversite.net/local/cache-gd2/fb1d068a3664117cc856918712ef92a6.jpg"
},
"id": "298"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
7.94011116028,
47.8439826965
]
},
"properties": {
"name": "Gneiss ",
"icon": "http://www.geodiversite.net/local/cache-gd2/103203e7b9a55e7cbb023d1163804759.jpg"
},
"id": "296"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
7.94028282166,
47.8441123962
]
},
"properties": {
"name": "Cascade de Todtnau",
"icon": "http://www.geodiversite.net/local/cache-gd2/a6308d176ee734b39e51bf3f6a122560.jpg"
},
"id": "295"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.62382984161,
48.2592010498
]
},
"properties": {
"name": "Aspect ruiniforme",
"icon": "http://www.geodiversite.net/local/cache-gd2/d81ff0acc22d5a992d1471b62492bbd0.jpg"
},
"id": "294"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.62383317947,
48.2591896057
]
},
"properties": {
"name": "Aspect ruiniforme",
"icon": "http://www.geodiversite.net/local/cache-gd2/5ab5b91fc1b44727567aa0e198cdafda.jpg"
},
"id": "293"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.62442350388,
48.258895874
]
},
"properties": {
"name": "Contemplation",
"icon": "http://www.geodiversite.net/local/cache-gd2/85b1a26f0245d5b678c175706a5583c7.jpg"
},
"id": "292"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.62398338318,
48.259853363
]
},
"properties": {
"name": "Stratification à la Pointe de Pen Hir",
"icon": "http://www.geodiversite.net/local/cache-gd2/3be86d0cf418e5b4d0402700f616c109.jpg"
},
"id": "251"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.92979812622,
48.0418243408
]
},
"properties": {
"name": "Panorama de la tourbière de Lispach (68)",
"icon": "http://www.geodiversite.net/local/cache-gd2/b745dd18f277f933874f8162bbbe7cef.jpg"
},
"id": "290"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.44762802124,
48.2353820801
]
},
"properties": {
"name": "Un galet monstrueux",
"icon": "http://www.geodiversite.net/local/cache-gd2/894db5a54356f660e894d31817938a43.jpg"
},
"id": "289"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.94378614426,
48.7201194763
]
},
"properties": {
"name": "Grès fins de Bréhec finement lités",
"icon": "http://www.geodiversite.net/local/cache-gd2/d24634cdf4678aef73af03b92e41d05f.jpg"
},
"id": "288"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.94377279282,
48.7201957703
]
},
"properties": {
"name": "Polygones de dessication dans les argilites de Bréhec",
"icon": "http://www.geodiversite.net/local/cache-gd2/0e26b667d425e1619bb2a38316603427.jpg"
},
"id": "287"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.5826292038,
48.3218040466
]
},
"properties": {
"name": "îlot des capucins, face Nord-Est",
"icon": "http://www.geodiversite.net/local/cache-gd2/49bdbd11867fbc4451d528a81cf9ab1b.jpg"
},
"id": "286"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.58563327789,
48.3202056885
]
},
"properties": {
"name": "îlot des capucins, face Nord-Ouest",
"icon": "http://www.geodiversite.net/local/cache-gd2/20495368a7235f9856db0e73732aa03f.jpg"
},
"id": "285"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.5803976059,
48.3191070557
]
},
"properties": {
"name": "îlot des capucins, face Sud-Est",
"icon": "http://www.geodiversite.net/local/cache-gd2/91d6719953e554e97c945fc795b1c6b7.jpg"
},
"id": "284"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.76729393005,
48.4756851196
]
},
"properties": {
"name": "Ancienne exploitation de granite, carrière du Kléguer",
"icon": "http://www.geodiversite.net/local/cache-gd2/7d7c5af04b8969b7bfc1c620e40dc445.jpg"
},
"id": "283"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-18.9390563965,
63.4118118286
]
},
"properties": {
"name": "Panorama de la falaise de Vik",
"icon": "http://www.geodiversite.net/local/cache-gd2/cfcb1c63829e1aeacae4e4e51e0b92b8.jpg"
},
"id": "282"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
0.199127197266,
49.7071647644
]
},
"properties": {
"name": "Vue nord-est des falaises d&#8217;Etretat",
"icon": "http://www.geodiversite.net/local/cache-gd2/367cc9d0686ff350d989d9d0c1bf9ad9.jpg"
},
"id": "281"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
0.197839736938,
49.7068328857
]
},
"properties": {
"name": "Vue nord-ouest des falaises d&#8217;Etretat",
"icon": "http://www.geodiversite.net/local/cache-gd2/eca9473b43d03fea9c466757ed441fb6.jpg"
},
"id": "280"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
0.201530456543,
49.7089385986
]
},
"properties": {
"name": "Vue nord-est des falaises d&#8217;Etretat",
"icon": "http://www.geodiversite.net/local/cache-gd2/2551f43d62879860d4482b1823730d83.jpg"
},
"id": "279"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
0.198440551758,
49.706943512
]
},
"properties": {
"name": "Panneau risque d&#8217;éboulement Etretat",
"icon": "http://www.geodiversite.net/local/cache-gd2/3fdbfc11f74d5c54e0a56adeb2f18b9d.jpg"
},
"id": "278"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
0.199127197266,
49.7071647644
]
},
"properties": {
"name": "Vue vers le nord-ouest des falaises d&#8217;Etretat",
"icon": "http://www.geodiversite.net/local/cache-gd2/4de5154168d865764e04a633ef7cba4b.jpg"
},
"id": "277"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
0.203762054443,
49.7108268738
]
},
"properties": {
"name": "Bloc de la falaise d&#8217;Etretat sur la plage",
"icon": "http://www.geodiversite.net/local/cache-gd2/6333268df0445ba113b4c86ab826ec45.jpg"
},
"id": "276"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
0.202903747559,
49.7093849182
]
},
"properties": {
"name": "Les galets d&#8217;Etretat",
"icon": "http://www.geodiversite.net/local/cache-gd2/b12659c7d6bda29952e6b4f5771be180.jpg"
},
"id": "275"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
0.204105377197,
49.7109375
]
},
"properties": {
"name": "Détail de la falaise d&#8217;Etretat",
"icon": "http://www.geodiversite.net/local/cache-gd2/113c60607368ea12eaf754325d2d0a53.jpg"
},
"id": "274"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-1.63303995132,
43.3073005676
]
},
"properties": {
"name": "Pays Basque, La Rhune",
"icon": "http://www.geodiversite.net/local/cache-gd2/d606bedd2131ce8f249c734538f77e48.jpg"
},
"id": "273"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.32614040375,
48.6787757874
]
},
"properties": {
"name": "Face Nord-Ouest du Cap Fréhel",
"icon": "http://www.geodiversite.net/local/cache-gd2/fd55af5dedd45d5d1efc2d2c5915fa4a.jpg"
},
"id": "272"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.68120002747,
48.5302009583
]
},
"properties": {
"name": "Littoral de la baie de St Brieuc (Hillion)",
"icon": "http://www.geodiversite.net/local/cache-gd2/e92532b3ad4dd9c0cf6762d824206731.jpg"
},
"id": "271"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.48340988159,
48.8373985291
]
},
"properties": {
"name": "Côte de granite rose, Ploumanac&#8217;h",
"icon": "http://www.geodiversite.net/local/cache-gd2/2145162f75face38c51dc8d7671972ee.jpg"
},
"id": "270"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.5664100647,
48.2359008789
]
},
"properties": {
"name": "Détail paroi de la pointe de Dinan",
"icon": "http://www.geodiversite.net/local/cache-gd2/a146b110d28460f9f50130e7a70e3566.jpg"
},
"id": "269"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.77362394333,
48.3890151978
]
},
"properties": {
"name": "Jasione maritime",
"icon": "http://www.geodiversite.net/local/cache-gd2/8e042d2610283784b8c4dbc89689bd9e.jpg"
},
"id": "268"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
51.8223381042,
-46.3945426941
]
},
"properties": {
"name": "Morne rouge",
"icon": "http://www.geodiversite.net/local/cache-gd2/76fb7068e343258fc78a0bba6b6384b1.jpg"
},
"id": "267"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
169.098846436,
-46.6620140076
]
},
"properties": {
"name": "Troncs arbres couchés",
"icon": "http://www.geodiversite.net/local/cache-gd2/08acb93e66c2081fc03324dcdbe03810.jpg"
},
"id": "266"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
145.944900513,
-41.6501159668
]
},
"properties": {
"name": "Cradle mountain",
"icon": "http://www.geodiversite.net/local/cache-gd2/593ef3a4aab9f6cd73fabed0a06484cb.jpg"
},
"id": "265"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
51.7261199951,
-46.4561653137
]
},
"properties": {
"name": "Le téton",
"icon": "http://www.geodiversite.net/local/cache-gd2/e3b911d857e9af4e315de2a7318436ca.jpg"
},
"id": "264"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
169.097976685,
-46.6628379822
]
},
"properties": {
"name": "Tronc d&#8217;arbre en coupe",
"icon": "http://www.geodiversite.net/local/cache-gd2/6e942ebfa40742dde2f8e36379bd77d2.jpg"
},
"id": "263"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.8922662735,
46.714225769
]
},
"properties": {
"name": "Empreinte de Sauropode",
"icon": "http://www.geodiversite.net/local/cache-gd2/16d42b3d569c1618d01a570a421e498b.jpg"
},
"id": "262"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.45472288132,
48.2359695435
]
},
"properties": {
"name": "Fossile d&#8217;orthocère",
"icon": "http://www.geodiversite.net/local/cache-gd2/e385072f20774a76639ce9fd9ef127a4.jpg"
},
"id": "261"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55575895309,
48.2159461975
]
},
"properties": {
"name": "Une grève au Cap de la chèvre",
"icon": "http://www.geodiversite.net/local/cache-gd2/19dab89f66fb902fc2f24f28804df262.jpg"
},
"id": "260"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.01102900505,
48.7802391052
]
},
"properties": {
"name": "Pillow lavas de la Pointe de Guilben",
"icon": "http://www.geodiversite.net/local/cache-gd2/020289a117153f95d7588a7588a046ef.jpg"
},
"id": "259"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.52087020874,
48.1304016113
]
},
"properties": {
"name": "Plongée en Baie de Douarnenez",
"icon": "http://www.geodiversite.net/local/cache-gd2/ebf7ab7208363ef77561be63b7b84bf4.jpg"
},
"id": "258"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.94380760193,
48.7201766968
]
},
"properties": {
"name": "Lamines colorées dans les argilites de Bréhec",
"icon": "http://www.geodiversite.net/local/cache-gd2/d6631486bfa6f45032b4bc31655e0018.jpg"
},
"id": "257"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.94360899925,
48.7200813293
]
},
"properties": {
"name": "Esthétisme des argilites de Bréhec",
"icon": "http://www.geodiversite.net/local/cache-gd2/9f8f0cc8406a07732ba8c0056c602bfb.jpg"
},
"id": "256"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.94461488724,
48.7204666138
]
},
"properties": {
"name": "Détails du grès rouge de Bréhec",
"icon": "http://www.geodiversite.net/local/cache-gd2/042828e9c41fe2072d5124de0c5bc822.jpg"
},
"id": "255"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.94457006454,
48.7204017639
]
},
"properties": {
"name": "Grès rouges fins de Bréhec",
"icon": "http://www.geodiversite.net/local/cache-gd2/78fcbfb3da9d3d7d7779eef23280d4fc.jpg"
},
"id": "254"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.94777727127,
48.7246017456
]
},
"properties": {
"name": "Conglomérat dans la formation rouge de Bréhec",
"icon": "http://www.geodiversite.net/local/cache-gd2/d62420df6db2fcabeb42e772065ad0c2.jpg"
},
"id": "253"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.94507884979,
48.7288856506
]
},
"properties": {
"name": "Anse de Bréhec",
"icon": "http://www.geodiversite.net/local/cache-gd2/97c3332cca5ddcaee0981ee52c445996.jpg"
},
"id": "252"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.48796010017,
47.742401123
]
},
"properties": {
"name": "Etang de Lannénec&nbsp;: Profil sismique interprété",
"icon": "http://www.geodiversite.net/local/cache-gd2/d9d620b94e47217bda7d8d08c5d8592f.jpg"
},
"id": "250"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.48796010017,
47.742401123
]
},
"properties": {
"name": "Etang de Lannénec&nbsp;: profil sismique brut",
"icon": "http://www.geodiversite.net/local/cache-gd2/253132e96aa0a5d16aee921088ca801e.jpg"
},
"id": "249"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
2.548828125,
46.9202537537
]
},
"properties": {
"name": "A différentes échelles d&#8217;espace",
"icon": "http://www.geodiversite.net/local/cache-gd2/a340f860f84b80deebc7de8839f718b4.jpg"
},
"id": "248"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
0,
0
]
},
"properties": {
"name": "Spirale des temps géologiques",
"icon": "http://www.geodiversite.net/local/cache-gd2/3a3583b909f9caad0846e77dbf50ecde.jpg"
},
"id": "246"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.48466992378,
47.7421989441
]
},
"properties": {
"name": "Quartz éolien",
"icon": "http://www.geodiversite.net/local/cache-gd2/c28a20c1c607b6e58c887f968fb18ec6.jpg"
},
"id": "245"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.48466992378,
47.7421989441
]
},
"properties": {
"name": "Quartz",
"icon": "http://www.geodiversite.net/local/cache-gd2/a3e293988be51a750c2bc2a007a07fab.jpg"
},
"id": "244"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.48466992378,
47.7421989441
]
},
"properties": {
"name": "Ostracode / Aurila convexa",
"icon": "http://www.geodiversite.net/local/cache-gd2/744bf6f47737621e8c73ad928ed27618.jpg"
},
"id": "243"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.48466992378,
47.7421989441
]
},
"properties": {
"name": "Foraminifère / Elphidium aculeatum",
"icon": "http://www.geodiversite.net/local/cache-gd2/c7e21ee0528698a3e779e96685825f87.jpg"
},
"id": "242"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.48466992378,
47.7421989441
]
},
"properties": {
"name": "Foraminifère / Criboelphidium williamsoni",
"icon": "http://www.geodiversite.net/local/cache-gd2/3bb62367d3dc853557eff53d39dd0390.jpg"
},
"id": "241"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.48455429077,
47.7423820496
]
},
"properties": {
"name": "Etang de Lannénec",
"icon": "http://www.geodiversite.net/local/cache-gd2/b8444dc685e2952ffe680a41c9fcb2f4.jpg"
},
"id": "240"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.48466682434,
47.7422180176
]
},
"properties": {
"name": "Foraminifère / Haynesina germanica",
"icon": "http://www.geodiversite.net/local/cache-gd2/e4590f065cca27d54148118311306681.jpg"
},
"id": "239"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.00961780548,
43.3312683105
]
},
"properties": {
"name": "Le grand Laoutien",
"icon": "http://www.geodiversite.net/local/cache-gd2/0a832f7561d1538a78f544802e4035fe.jpg"
},
"id": "238"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
2.98948287964,
45.7484817505
]
},
"properties": {
"name": "Puy de Dôme",
"icon": "http://www.geodiversite.net/local/cache-gd2/e4521147b8c13bad7ca6fcbe886dd69d.jpg"
},
"id": "237"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
2.96467781067,
45.7783584595
]
},
"properties": {
"name": "Au nord du Puy de Dôme",
"icon": "http://www.geodiversite.net/local/cache-gd2/1020f99aa45f4c426747345705c710fe.jpg"
},
"id": "236"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.62425708771,
48.2589035034
]
},
"properties": {
"name": "Quartzite à la pointe de Pen Hir",
"icon": "http://www.geodiversite.net/local/cache-gd2/c78213fc31ed389089a032985c6e4a24.jpg"
},
"id": "234"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.56679344177,
48.2365074158
]
},
"properties": {
"name": "arche pointe de dinan",
"icon": "http://www.geodiversite.net/local/cache-gd2/8e8008a2bb527d915f5d00f73665fd2d.jpg"
},
"id": "233"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.31695652008,
48.6857757568
]
},
"properties": {
"name": "cap fréhel",
"icon": "http://www.geodiversite.net/local/cache-gd2/3009586fc10be850cb15122a6c958341.jpg"
},
"id": "211"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.4288020134,
48.2364120483
]
},
"properties": {
"name": "carottages dans le metabasalte",
"icon": "http://www.geodiversite.net/local/cache-gd2/2fc161c396822db01ce3784ad9fa0796.jpg"
},
"id": "232"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
3.73099040985,
43.8830680847
]
},
"properties": {
"name": "Le vieux ronchon de l&#8217;Hérault",
"icon": "http://www.geodiversite.net/local/cache-gd2/2336522646a76f240d0675e4e245038e.jpg"
},
"id": "231"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
10.3935575485,
43.786239624
]
},
"properties": {
"name": "escarpement de faille a Vecchiano 2",
"icon": "http://www.geodiversite.net/local/cache-gd2/7ed7631bf5d4dd84383e0d07a7b4cd30.jpg"
},
"id": "230"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
10.3886108398,
43.7925796509
]
},
"properties": {
"name": "Escarpement de faille à Vecchiano",
"icon": "http://www.geodiversite.net/local/cache-gd2/dac449bd2793040f3fb591d1ea2fc4ac.jpg"
},
"id": "229"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.7928981781,
45.9785346985
]
},
"properties": {
"name": "Flanc est des rochers des Fiz",
"icon": "http://www.geodiversite.net/local/cache-gd2/fcfbe5a1b2655e542978768dd6d6899f.jpg"
},
"id": "228"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.78363895416,
46.0097923279
]
},
"properties": {
"name": "Formes de dissolution",
"icon": "http://www.geodiversite.net/local/cache-gd2/7ba87815edee73c15d6fe8b67d0d338b.jpg"
},
"id": "227"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
51.7070007324,
-46.4402999878
]
},
"properties": {
"name": "La tour blanche",
"icon": "http://www.geodiversite.net/local/cache-gd2/2ed4d9ca5e1534fc18374c0fea9aec70.jpg"
},
"id": "226"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
51.763458252,
-46.4160842896
]
},
"properties": {
"name": "Carte géologique simplifiée de l&#8217;île de la Possession",
"icon": "http://www.geodiversite.net/local/cache-gd2/2183c6173d9a302001541dfd5f9a0e86.jpg"
},
"id": "225"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-9.91500377655,
53.5488891602
]
},
"properties": {
"name": "Vue depuis Diamond Hill dans le Connemara",
"icon": "http://www.geodiversite.net/local/cache-gd2/eecd41f0c10b9a860dae6c86a2414ddb.jpg"
},
"id": "224"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.51576709747,
48.1990776062
]
},
"properties": {
"name": "Stratification",
"icon": "http://www.geodiversite.net/local/cache-gd2/22a8488dd3f3b0c5ea196ff930211f57.jpg"
},
"id": "223"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
69.6949920654,
34.8700523376
]
},
"properties": {
"name": "Vallée de Tagab",
"icon": "http://www.geodiversite.net/local/cache-gd2/f6dafbeb1b09b173435a892dfdf68a02.jpg"
},
"id": "222"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
69.6957855225,
34.8716011047
]
},
"properties": {
"name": "Sommet",
"icon": "http://www.geodiversite.net/local/cache-gd2/cfacad0ce5ff648c7ee81eae4c1b3b32.jpg"
},
"id": "221"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
69.6968994141,
34.8692016602
]
},
"properties": {
"name": "Sommet",
"icon": "http://www.geodiversite.net/local/cache-gd2/9deb16399cdcf983b21fd627067c46fc.jpg"
},
"id": "220"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
69.6986160278,
34.8675193787
]
},
"properties": {
"name": "Succession de vallées afghanes",
"icon": "http://www.geodiversite.net/local/cache-gd2/4946831faeadad71251e79e6bf4e03e9.jpg"
},
"id": "219"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
69.640083313,
34.8677635193
]
},
"properties": {
"name": "Vallée de Tagab",
"icon": "http://www.geodiversite.net/local/cache-gd2/025b203722408a8e66c5385f6f396b00.jpg"
},
"id": "218"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
69.7102966309,
34.890499115
]
},
"properties": {
"name": "\"Galets\" afghans",
"icon": "http://www.geodiversite.net/local/cache-gd2/92987a8526b2391417ae7217e3f298c2.jpg"
},
"id": "217"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
69.7083358765,
34.8892593384
]
},
"properties": {
"name": "\"Galets\" afghans",
"icon": "http://www.geodiversite.net/local/cache-gd2/ea96042ca2480473d664018d68a478f9.jpg"
},
"id": "216"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
69.7080001831,
34.888999939
]
},
"properties": {
"name": "\"Galets\" afghans",
"icon": "http://www.geodiversite.net/local/cache-gd2/3e7588a1d6eec27825b46a97f48601f2.jpg"
},
"id": "212"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.39184379578,
48.2194290161
]
},
"properties": {
"name": "Faille courbe à Trez Bihan",
"icon": "http://www.geodiversite.net/local/cache-gd2/2d2f3b00c0b245393d6226da3cf23580.jpg"
},
"id": "215"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
10.1775026321,
44.1424636841
]
},
"properties": {
"name": "contact près du Pizzo d&#8217;Uccello",
"icon": "http://www.geodiversite.net/local/cache-gd2/eef2cb74505f2f2ff565e10435bc793c.jpg"
},
"id": "214"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.51773071289,
48.1985931396
]
},
"properties": {
"name": "Grès armoricain",
"icon": "http://www.geodiversite.net/local/cache-gd2/d28098fc2d8c188ad258bf1c3d5cb78d.jpg"
},
"id": "213"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.49360132217,
48.2203559875
]
},
"properties": {
"name": "interieur grotte marine",
"icon": "http://www.geodiversite.net/local/cache-gd2/528378009585e4b7e26d85ed5f450882.jpg"
},
"id": "210"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.4949297905,
48.2188987732
]
},
"properties": {
"name": "grotte de morgat",
"icon": "http://www.geodiversite.net/local/cache-gd2/9072a9e68bbb9b5ed6b79952f29313d9.jpg"
},
"id": "209"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.60079860687,
48.2857551575
]
},
"properties": {
"name": "Terriers de vers marins",
"icon": "http://www.geodiversite.net/local/cache-gd2/21413dac0e620be0929ce3f9e43e9d47.jpg"
},
"id": "208"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.60058403015,
48.2863502502
]
},
"properties": {
"name": "Moulage de pistes de vers marins",
"icon": "http://www.geodiversite.net/local/cache-gd2/e997fda38d0a6d4b558f8808b5a74a6a.jpg"
},
"id": "207"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.60077953339,
48.285900116
]
},
"properties": {
"name": "Rides de sable fossiles",
"icon": "http://www.geodiversite.net/local/cache-gd2/7b6576dfab8425465c379a445538a24e.jpg"
},
"id": "206"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.59015822411,
48.7679862976
]
},
"properties": {
"name": "Ile Milliau",
"icon": "http://www.geodiversite.net/local/cache-gd2/99752a542fa9c68dba35892e95f6f44a.jpg"
},
"id": "205"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.4507932663,
48.2355918884
]
},
"properties": {
"name": "Pli de détail",
"icon": "http://www.geodiversite.net/local/cache-gd2/78c0153d3cb52664d157a3beaa741961.jpg"
},
"id": "204"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
102.211471558,
20.0472240448
]
},
"properties": {
"name": "Nord Luang Prabang",
"icon": "http://www.geodiversite.net/local/cache-gd2/db785e72aa30234ace83ad92d77ed257.jpg"
},
"id": "203"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
102.213531494,
20.0523033142
]
},
"properties": {
"name": "Relief laotien",
"icon": "http://www.geodiversite.net/local/cache-gd2/a0cc3275bed896cc9be04a79b7f1c974.jpg"
},
"id": "202"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.7374625206,
48.0403938293
]
},
"properties": {
"name": "Pointe du raz",
"icon": "http://www.geodiversite.net/local/cache-gd2/1065a1b1f2d3dfd7956dd6466be9e990.jpg"
},
"id": "201"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.98485064507,
47.8719062805
]
},
"properties": {
"name": "Bot Conan",
"icon": "http://www.geodiversite.net/local/cache-gd2/e2160272c134e73293c6bdd00080a614.jpg"
},
"id": "200"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-9.47115898132,
52.9358634949
]
},
"properties": {
"name": "Cliff of Moher",
"icon": "http://www.geodiversite.net/local/cache-gd2/7702d98a7c0dd1ea4a05f83dd33a70c6.jpg"
},
"id": "199"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-9.35777664185,
53.0693817139
]
},
"properties": {
"name": "Burren",
"icon": "http://www.geodiversite.net/local/cache-gd2/bb898a9facafbe5a5aef1ca5ae45d60f.jpg"
},
"id": "198"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-9.3603515625,
53.0641212463
]
},
"properties": {
"name": "Burren",
"icon": "http://www.geodiversite.net/local/cache-gd2/caf5fe4437f6f4e0350e24bd73464e5e.jpg"
},
"id": "197"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-9.35897827148,
53.0676269531
]
},
"properties": {
"name": "Burren",
"icon": "http://www.geodiversite.net/local/cache-gd2/703228dab0d4eb97af6694f81d87bb8d.jpg"
},
"id": "196"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
69.6714553833,
34.8743667603
]
},
"properties": {
"name": "Vallée d&#8217;Alasay",
"icon": "http://www.geodiversite.net/local/cache-gd2/f8de8e167733680b4b29aca5f50f30e5.jpg"
},
"id": "195"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
69.6693954468,
34.8675193787
]
},
"properties": {
"name": "Vallée d&#8217;Alasay",
"icon": "http://www.geodiversite.net/local/cache-gd2/8f2b98045561467a8dad3a805b465443.jpg"
},
"id": "194"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
69.6723327637,
34.8781318665
]
},
"properties": {
"name": "Muret de village",
"icon": "http://www.geodiversite.net/local/cache-gd2/d3709596cc8bb97534f1eb9e11fae50c.jpg"
},
"id": "193"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
68.6522979736,
33.8796272278
]
},
"properties": {
"name": "Wardak",
"icon": "http://www.geodiversite.net/local/cache-gd2/459076430f26a5572a8be744fca28e94.jpg"
},
"id": "192"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
159.66104126,
54.1217079163
]
},
"properties": {
"name": "Maly Semiachik",
"icon": "http://www.geodiversite.net/local/cache-gd2/de42d961d6e84595e15d28053a47fb48.jpg"
},
"id": "191"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
158.832107544,
53.2572822571
]
},
"properties": {
"name": "Volcan Koryaksky",
"icon": "http://www.geodiversite.net/local/cache-gd2/8e7c3667886ca6fb88b9ba85f695fc5f.jpg"
},
"id": "190"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.48193359375,
45.5083999634
]
},
"properties": {
"name": "Les Alpes vues du ciel",
"icon": "http://www.geodiversite.net/local/cache-gd2/91ffd7fef3b493fe9a7cdbd3e8084b56.jpg"
},
"id": "188"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.11554908752,
47.862613678
]
},
"properties": {
"name": "Sol",
"icon": "http://www.geodiversite.net/local/cache-gd2/59f21735b366396f4fbe1dd172bf16a4.jpg"
},
"id": "187"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.11551189423,
47.8626174927
]
},
"properties": {
"name": "Pointe de Combrit",
"icon": "http://www.geodiversite.net/local/cache-gd2/eb54c04d9f02885d88fe6db800374364.jpg"
},
"id": "186"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.11245918274,
47.8645553589
]
},
"properties": {
"name": "Plage de galets",
"icon": "http://www.geodiversite.net/local/cache-gd2/24bde12274ee71b4781671f1bb64e7fe.jpg"
},
"id": "185"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.11248636246,
47.8644943237
]
},
"properties": {
"name": "Galet",
"icon": "http://www.geodiversite.net/local/cache-gd2/d5ef70d4ff4e75b57f2ae0ff975f3903.jpg"
},
"id": "184"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
69.7054214478,
34.8671798706
]
},
"properties": {
"name": "Vallée d&#8217;Alasay",
"icon": "http://www.geodiversite.net/local/cache-gd2/227ffae82e65b35a0b9848d0400e0d4d.jpg"
},
"id": "183"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
69.7022399902,
34.8680000305
]
},
"properties": {
"name": "Ligne de crête en vallée d&#8217;Alasay",
"icon": "http://www.geodiversite.net/local/cache-gd2/d21d7a100c718dbe0c13ccdc371612ff.jpg"
},
"id": "182"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.5537686348,
48.1677742004
]
},
"properties": {
"name": "Cap de la Chèvre",
"icon": "http://www.geodiversite.net/local/cache-gd2/c5feb73f0a38338ef69d942ab44220ac.jpg"
},
"id": "181"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.57606315613,
48.2797012329
]
},
"properties": {
"name": "Brioches",
"icon": "http://www.geodiversite.net/local/cache-gd2/b5c87e255bad4d34efa15af38d0eb5a4.jpg"
},
"id": "180"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
3.80111932755,
43.7326431274
]
},
"properties": {
"name": "Microtectonique sur la dalle des Matelles",
"icon": "http://www.geodiversite.net/local/cache-gd2/c006991a3ee7e20c0731ee3dc72fd90f.jpg"
},
"id": "179"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.60077953339,
48.2858009338
]
},
"properties": {
"name": "La Coupe du Corréjou",
"icon": "http://www.geodiversite.net/local/cache-gd2/05d02fa2d7895153084b1d53bc632298.jpg"
},
"id": "178"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.56011199951,
48.2258720398
]
},
"properties": {
"name": "affleurement de Tromel",
"icon": "http://www.geodiversite.net/local/cache-gd2/585f35ebe9040f7764c3adc724881614.jpg"
},
"id": "177"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.61083507538,
48.2848510742
]
},
"properties": {
"name": "Coupe de Pen Had - Site de Porz Naye ",
"icon": "http://www.geodiversite.net/local/cache-gd2/c3ea9eac574d651ae1c56fa142779c94.jpg"
},
"id": "176"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.61139297485,
48.2796516418
]
},
"properties": {
"name": "Coupe de Pen Had - Site de Porz Naye ",
"icon": "http://www.geodiversite.net/local/cache-gd2/988093ceb5883fa046ad9fa2617070d1.jpg"
},
"id": "175"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.61429977417,
48.2795982361
]
},
"properties": {
"name": "Coupe de Pen Had - Site de Porz Naye 3",
"icon": "http://www.geodiversite.net/local/cache-gd2/6b595458863ff901086f54d5780f3dea.jpg"
},
"id": "174"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.13961982727,
48.4505996704
]
},
"properties": {
"name": "Détail du cordon de galets à Pern - Ouessant",
"icon": "http://www.geodiversite.net/local/cache-gd2/0d43447e15a6945f4e46d5c4644da808.jpg"
},
"id": "173"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.13961982727,
48.4505996704
]
},
"properties": {
"name": "Cordon de galets à Pern - Ouessant",
"icon": "http://www.geodiversite.net/local/cache-gd2/d311c62baddc379f0ef1b92bf684fa59.jpg"
},
"id": "172"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
2.32113218307,
48.8654632568
]
},
"properties": {
"name": "Obélisque et granite de l&#8217;Aber Ildut",
"icon": "http://www.geodiversite.net/local/cache-gd2/708a3970e90bf05d06e19cf6dc52c676.jpg"
},
"id": "171"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.67933893204,
48.4265823364
]
},
"properties": {
"name": "Granite de l&#8217;Aber Ildut",
"icon": "http://www.geodiversite.net/local/cache-gd2/8d6da9957b43d24def0ef0c22ae7e886.jpg"
},
"id": "170"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
9.36217021942,
41.826499939
]
},
"properties": {
"name": "Rocher d&#8217;escalade calcaire",
"icon": "http://www.geodiversite.net/local/cache-gd2/63a55342af3ce48dfc5a04f1705f9266.jpg"
},
"id": "169"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
2.96517133713,
43.5813407898
]
},
"properties": {
"name": "Gneiss oeillés de la Montagne Noire",
"icon": "http://www.geodiversite.net/local/cache-gd2/48935406ba517b1dafb423144b39567e.jpg"
},
"id": "168"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
3.4047961235,
43.6576766968
]
},
"properties": {
"name": "Fentes en échelon au Salagou",
"icon": "http://www.geodiversite.net/local/cache-gd2/13984391596171a9807b89a8409cc4b9.jpg"
},
"id": "167"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
3.40441513062,
43.6574478149
]
},
"properties": {
"name": "Plumose structure dans les Pelites du Salagou",
"icon": "http://www.geodiversite.net/local/cache-gd2/24c59167c41ac08eab65f931e4813916.jpg"
},
"id": "166"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.75193023682,
48.5434379578
]
},
"properties": {
"name": "Détail pointe de Landunvez",
"icon": "http://www.geodiversite.net/local/cache-gd2/44dc55a02830cbb9158b9011d3265080.jpg"
},
"id": "164"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.75124359131,
48.5424804688
]
},
"properties": {
"name": "Pointe de Landunvez",
"icon": "http://www.geodiversite.net/local/cache-gd2/0ca272ab07ea5298461cf7e8ac5d8316.jpg"
},
"id": "162"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.06458997726,
48.4805984497
]
},
"properties": {
"name": "Rochers à Cadoran - Ouessant",
"icon": "http://www.geodiversite.net/local/cache-gd2/1a70d1266d815186887cc4875e966476.jpg"
},
"id": "161"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
8.76144599915,
42.568813324
]
},
"properties": {
"name": "Abribus naturel à Calvi",
"icon": "http://www.geodiversite.net/local/cache-gd2/1b6469bc0eb6d7eb2024e697de02dd0f.jpg"
},
"id": "160"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.56024885178,
48.2223701477
]
},
"properties": {
"name": "Erosion dans les schistes - Tromel",
"icon": "http://www.geodiversite.net/local/cache-gd2/9aec119fd58a96f991426a3776e8e838.jpg"
},
"id": "159"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.56818819046,
48.3311424255
]
},
"properties": {
"name": "Minéralisation à cornouaille",
"icon": "http://www.geodiversite.net/local/cache-gd2/1123307ea38b34c08764dfaf60ad123f.jpg"
},
"id": "158"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.57636356354,
48.31690979
]
},
"properties": {
"name": "Chaos rocheux aux Capucins",
"icon": "http://www.geodiversite.net/local/cache-gd2/83b2d1899ef41a5797468cea9e586df0.jpg"
},
"id": "157"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.57953929901,
48.3179130554
]
},
"properties": {
"name": "Vieux sédiments sculptés par l&#8217;érosion - Capucins",
"icon": "http://www.geodiversite.net/local/cache-gd2/de6c578b09eac0818d57bec1ffe8aa3f.jpg"
},
"id": "156"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.57858467102,
48.3178634644
]
},
"properties": {
"name": "Quartz incrusté aux Capucins",
"icon": "http://www.geodiversite.net/local/cache-gd2/a315db8b4d7d9bf98c99773308aaa26f.jpg"
},
"id": "155"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.47061491013,
48.2376861572
]
},
"properties": {
"name": "Couches entrecoupées de petits filons",
"icon": "http://www.geodiversite.net/local/cache-gd2/bec48a0ace07edb7f52785ca54553992.jpg"
},
"id": "154"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55524921417,
48.2578277588
]
},
"properties": {
"name": "Couches à Kerloc&#8217;h",
"icon": "http://www.geodiversite.net/local/cache-gd2/3f6a173877a678db108c06c51b42ae63.jpg"
},
"id": "153"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.43252182007,
48.229598999
]
},
"properties": {
"name": "Cristaux de quartz à l&#8217;Aber",
"icon": "http://www.geodiversite.net/local/cache-gd2/66abcb5ad28018565abc0e39bc6b57dd.jpg"
},
"id": "152"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.54552364349,
48.2492637634
]
},
"properties": {
"name": "Roche soluble à Goulien",
"icon": "http://www.geodiversite.net/local/cache-gd2/4b884831a0fc6dcf40b53212cbacfd0c.jpg"
},
"id": "151"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.56917524338,
48.2315063477
]
},
"properties": {
"name": "Eclatement d&#8217;une strate - Pointe de Dinan",
"icon": "http://www.geodiversite.net/local/cache-gd2/9239789b728c0c6df8ceac7ac965c317.jpg"
},
"id": "150"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.57092428207,
48.2321853638
]
},
"properties": {
"name": "Paroi rocheuse - Pointe de Dinan",
"icon": "http://www.geodiversite.net/local/cache-gd2/ad02cecd14c4c598906052a660e20f48.jpg"
},
"id": "149"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55327510834,
48.2397651672
]
},
"properties": {
"name": "Arche de Larioc&#8217;h à Dinan",
"icon": "http://www.geodiversite.net/local/cache-gd2/e397c374799de7e271f639f2dae99d5c.jpg"
},
"id": "148"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55006694794,
48.2398452759
]
},
"properties": {
"name": "Palette de couleurs à Goulien",
"icon": "http://www.geodiversite.net/local/cache-gd2/5ffd1a2952ebdb97c41bece268715cda.jpg"
},
"id": "147"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55042123795,
48.2507133484
]
},
"properties": {
"name": "Retrait de marée sous le Sagittaire",
"icon": "http://www.geodiversite.net/local/cache-gd2/4ffdac6425c36c7ecd73b7da121e9ef0.jpg"
},
"id": "146"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.56530761719,
48.255115509
]
},
"properties": {
"name": "Lichens sur une paroie rocheuse à Kerloc&#8217;h",
"icon": "http://www.geodiversite.net/local/cache-gd2/f9a0d1109692fc6f224d5d06421513ab.jpg"
},
"id": "145"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.56354236603,
48.2314758301
]
},
"properties": {
"name": "Galet sous tapis de sable à Dinan",
"icon": "http://www.geodiversite.net/local/cache-gd2/0d34c28d047904fcc82fa3d5c6b1cce5.jpg"
},
"id": "144"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.5737080574,
48.3064575195
]
},
"properties": {
"name": "Eclat de roche à la Pointe de la Fraternité",
"icon": "http://www.geodiversite.net/local/cache-gd2/fa5108108159eb1107e080acc8f2a8a9.jpg"
},
"id": "142"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55608606339,
48.3369178772
]
},
"properties": {
"name": "Accroche planté oxydé à Fort Robert",
"icon": "http://www.geodiversite.net/local/cache-gd2/6866dd0ca8512037a6a4b37a003f7f2f.jpg"
},
"id": "143"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.48336076736,
48.236240387
]
},
"properties": {
"name": "Dépot sur roche exposée à Pors Aor",
"icon": "http://www.geodiversite.net/local/cache-gd2/551003cd45177b513a23ae8c1209d1c2.jpg"
},
"id": "141"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55911159515,
48.2214164734
]
},
"properties": {
"name": "Mozaïque à Tromel",
"icon": "http://www.geodiversite.net/local/cache-gd2/2bb1585522d1c0c03b8ba8ebae391e79.jpg"
},
"id": "140"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55878973007,
48.2227706909
]
},
"properties": {
"name": "\"Roche de Lascaux\" à Tromel",
"icon": "http://www.geodiversite.net/local/cache-gd2/b6c08a384033e140bd4680af2a1cba45.jpg"
},
"id": "139"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.5589723587,
48.2222480774
]
},
"properties": {
"name": "Oxydation des roches - Tromel",
"icon": "http://www.geodiversite.net/local/cache-gd2/f698b09c7a42745485f730f0769efea7.jpg"
},
"id": "138"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55899906158,
48.2213363647
]
},
"properties": {
"name": "Incrustation &amp; érosion à Tromel",
"icon": "http://www.geodiversite.net/local/cache-gd2/b2edb572e1da0345fd93d87e7b9a7deb.jpg"
},
"id": "137"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55865573883,
48.2223205566
]
},
"properties": {
"name": "Roche ferrugineuse à Tromel",
"icon": "http://www.geodiversite.net/local/cache-gd2/ca51b76b74affa4bdae78e70fe4b2826.jpg"
},
"id": "136"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55847835541,
48.2222518921
]
},
"properties": {
"name": "Erosion à Tromel",
"icon": "http://www.geodiversite.net/local/cache-gd2/9973c50b6404d379c55c1124221ef366.jpg"
},
"id": "135"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55089855194,
48.1922912598
]
},
"properties": {
"name": "Oxydation à la Palue",
"icon": "http://www.geodiversite.net/local/cache-gd2/96deb8d46069ad21bed430c2950d7083.jpg"
},
"id": "134"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.58629989624,
48.2531013489
]
},
"properties": {
"name": "Soufre - Kerloc&#8217;h",
"icon": "http://www.geodiversite.net/local/cache-gd2/c06e70b8c3135206f1f2ea78580e82a4.jpg"
},
"id": "133"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.42766189575,
48.2294616699
]
},
"properties": {
"name": "Minéralisation",
"icon": "http://www.geodiversite.net/local/cache-gd2/6a0c821f4297026d3e292ab52eb84f4d.jpg"
},
"id": "131"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.43768262863,
48.6384544373
]
},
"properties": {
"name": "Rides de sable actuelles",
"icon": "http://www.geodiversite.net/local/cache-gd2/044c9a27308b6536483fbacd045669a5.jpg"
},
"id": "129"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.42520284653,
48.2293319702
]
},
"properties": {
"name": "Altération en boule d&#8217;une roche massive",
"icon": "http://www.geodiversite.net/local/cache-gd2/6a01cccdfdb3e86f2a0071ef9b57a0f1.jpg"
},
"id": "128"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.42761898041,
48.2295417786
]
},
"properties": {
"name": "Auréoles minérales",
"icon": "http://www.geodiversite.net/local/cache-gd2/16137cb9cd207d9965f8889f4b6d4d2f.jpg"
},
"id": "127"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.09258437157,
48.2205047607
]
},
"properties": {
"name": "Pyrite",
"icon": "http://www.geodiversite.net/local/cache-gd2/f49b38cda2387699afff878d140f57fa.jpg"
},
"id": "124"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.77152013779,
48.3429985046
]
},
"properties": {
"name": "Figures de ruissellement",
"icon": "http://www.geodiversite.net/local/cache-gd2/a903764f4ca8631490e306aed5341795.jpg"
},
"id": "120"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.77389001846,
48.3350982666
]
},
"properties": {
"name": "Filons de Quartz - Pointe de Penzer",
"icon": "http://www.geodiversite.net/local/cache-gd2/2790dca48a7822eebfdfd175d4d106b7.jpg"
},
"id": "119"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.77152013779,
48.3429985046
]
},
"properties": {
"name": "Failles dans le sable - la grève bleue",
"icon": "http://www.geodiversite.net/local/cache-gd2/b78a9346a7a75d32d9e0d404f64b34fd.jpg"
},
"id": "118"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.77152109146,
48.3429527283
]
},
"properties": {
"name": "Canyon de sable - Grève bleue",
"icon": "http://www.geodiversite.net/local/cache-gd2/4aa2a0d31b86028a3ffad4672c23113e.jpg"
},
"id": "117"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.77389240265,
48.3351287842
]
},
"properties": {
"name": "Filon de quartz - Pointe de Penzer",
"icon": "http://www.geodiversite.net/local/cache-gd2/31316502de434a40c1aef10b1475715a.jpg"
},
"id": "116"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.77390289307,
48.3357276917
]
},
"properties": {
"name": "Galets à la pointe de Penzer - Le Conquet",
"icon": "http://www.geodiversite.net/local/cache-gd2/7914dddbd3cd4c22336498d4fa7dcc0c.jpg"
},
"id": "115"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55259370804,
48.2082672119
]
},
"properties": {
"name": "Falaise érodée à Lostmarc&#8217;h - Crozon (pointe de Kerdra)",
"icon": "http://www.geodiversite.net/local/cache-gd2/31c7e35f4f3fa5f9768ad2d5c6c83440.jpg"
},
"id": "112"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55248117447,
48.2085533142
]
},
"properties": {
"name": "Falaise de la pointe de Kerdra",
"icon": "http://www.geodiversite.net/local/cache-gd2/70e29b4b28228780cb97d5ad0a77e841.jpg"
},
"id": "111"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55250549316,
48.2085609436
]
},
"properties": {
"name": "Haut de falaise à Kerdra",
"icon": "http://www.geodiversite.net/local/cache-gd2/36d892ac1221630982dbd4a9e6a23523.jpg"
},
"id": "110"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55276536942,
48.2086257935
]
},
"properties": {
"name": "Falaise à la pointe de Kerdra",
"icon": "http://www.geodiversite.net/local/cache-gd2/d1daec12d7c316c61d4eff3d3c230a92.jpg"
},
"id": "109"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.5524892807,
48.2085380554
]
},
"properties": {
"name": "Détail de falaise à la pointe de Kerdra",
"icon": "http://www.geodiversite.net/local/cache-gd2/395b6823ae10a01ead610590af31ca61.jpg"
},
"id": "108"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.5512046814,
48.1798858643
]
},
"properties": {
"name": "Falaises au cap de la Chèvre",
"icon": "http://www.geodiversite.net/local/cache-gd2/475a9b9a13f62e316b1ff358ba927940.jpg"
},
"id": "107"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.57243680954,
48.307384491
]
},
"properties": {
"name": "Le four à chaux de la Fraternité",
"icon": "http://www.geodiversite.net/local/cache-gd2/74d2f8f874bc086ca21352dcabecb598.jpg"
},
"id": "106"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.61546993256,
48.3393516541
]
},
"properties": {
"name": "Ruisseau au Petit Minou",
"icon": "http://www.geodiversite.net/local/cache-gd2/fe89668f40d5c944a6936f52c4d74c38.jpg"
},
"id": "105"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.61573839188,
48.3391571045
]
},
"properties": {
"name": "Falaise érodée du Petit Minou",
"icon": "http://www.geodiversite.net/local/cache-gd2/0d8643cd73472bbec6ecffe1fbfe2ddd.jpg"
},
"id": "104"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.76080989838,
48.3745994568
]
},
"properties": {
"name": "Falaise érodée aux Blancs Sablons",
"icon": "http://www.geodiversite.net/local/cache-gd2/c277fc1834afc4c45e1e98a8a4205234.jpg"
},
"id": "103"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.77259016037,
48.3372001648
]
},
"properties": {
"name": "Quartz - Le Conquet",
"icon": "http://www.geodiversite.net/local/cache-gd2/83c8f04d9a75e2980e08538a2705ab60.jpg"
},
"id": "102"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.7690911293,
48.3384056091
]
},
"properties": {
"name": "Quartz - Le Conquet",
"icon": "http://www.geodiversite.net/local/cache-gd2/8a096358b844900b39de45d2f14a334d.jpg"
},
"id": "101"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.40057182312,
48.3779258728
]
},
"properties": {
"name": "Bois de Keralliou",
"icon": "http://www.geodiversite.net/local/cache-gd2/84c71b32ebe071888b6e06467cf3e0ce.jpg"
},
"id": "100"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.3928899765,
48.3791999817
]
},
"properties": {
"name": "Menez Keralliou",
"icon": "http://www.geodiversite.net/local/cache-gd2/be06f1154587e919b966743e80da02f4.jpg"
},
"id": "99"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.6304693222,
48.340007782
]
},
"properties": {
"name": "Toulbroc&#8217;h granite",
"icon": "http://www.geodiversite.net/local/cache-gd2/be6e23421bfdfd8d45d512c84a733bdc.jpg"
},
"id": "98"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.77184295654,
48.3424453735
]
},
"properties": {
"name": "Cote de Lochrist",
"icon": "http://www.geodiversite.net/local/cache-gd2/029e16722de846eb828a60c6848e2c80.jpg"
},
"id": "97"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.50749492645,
48.6306037903
]
},
"properties": {
"name": "Plouguerneau",
"icon": "http://www.geodiversite.net/local/cache-gd2/da426c3d96e0571188fc25dbff902ac0.jpg"
},
"id": "96"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.7725725174,
48.3415184021
]
},
"properties": {
"name": "Davied sur falaise",
"icon": "http://www.geodiversite.net/local/cache-gd2/8ec0976d434d39f037fefd2e63af7f8a.jpg"
},
"id": "95"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.39864587784,
48.3773918152
]
},
"properties": {
"name": "Keralliou",
"icon": "http://www.geodiversite.net/local/cache-gd2/05d374718f613d2c548c4bcbcf7fe0a7.jpg"
},
"id": "94"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.63095188141,
48.3401641846
]
},
"properties": {
"name": "Toulbroc&#8217;h",
"icon": "http://www.geodiversite.net/local/cache-gd2/740bd65d011e8133c4efa3b7d36feef4.jpg"
},
"id": "93"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.11782646179,
48.4384384155
]
},
"properties": {
"name": "Porz Kored",
"icon": "http://www.geodiversite.net/local/cache-gd2/6c341bbc060031e775da831334ff1853.jpg"
},
"id": "92"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.11631298065,
48.4449043274
]
},
"properties": {
"name": "Youc&#8217;h Korz - Ouessant",
"icon": "http://www.geodiversite.net/local/cache-gd2/7ceeedbe6447c12ddc1347246aee3623.jpg"
},
"id": "91"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.10632514954,
48.472026825
]
},
"properties": {
"name": "Granite anatectique de Yusin - Ouessant",
"icon": "http://www.geodiversite.net/local/cache-gd2/949760cc32acbe86179088535406b944.jpg"
},
"id": "90"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.10005950928,
48.4727516174
]
},
"properties": {
"name": "Granite anatectique de Yusin - Ouessant",
"icon": "http://www.geodiversite.net/local/cache-gd2/3e6d341244b47159b1b8507127786c0b.jpg"
},
"id": "88"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.56411981583,
48.2321014404
]
},
"properties": {
"name": "Conglomérat d&#8217;une plage fossile",
"icon": "http://www.geodiversite.net/local/cache-gd2/38ad37c562d52565c6a2d50aa75f38a7.jpg"
},
"id": "80"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.25557994843,
44.8554000854
]
},
"properties": {
"name": "Col d&#8217;Anse - Vercors",
"icon": "http://www.geodiversite.net/local/cache-gd2/389997f9cf133a9ff838e9bf88983d26.jpg"
},
"id": "79"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.67145013809,
44.004901886
]
},
"properties": {
"name": "Erosion dans les grès d&#8217;Annot",
"icon": "http://www.geodiversite.net/local/cache-gd2/32cd510f55d77c9adbee657c8d1a2b8d.jpg"
},
"id": "78"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
6.67145013809,
44.004901886
]
},
"properties": {
"name": "Erosion dans les grès d&#8217;Annot",
"icon": "http://www.geodiversite.net/local/cache-gd2/a1f3d1775226b26d2e16c00bc7b3d681.jpg"
},
"id": "77"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-65.5885009766,
-23.6674995422
]
},
"properties": {
"name": "Pumamarca",
"icon": "http://www.geodiversite.net/local/cache-gd2/bc581ec226e86138176b843044ff76cf.jpg"
},
"id": "61"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.36871004105,
45.0643005371
]
},
"properties": {
"name": "Stalactite dans la galerie du siphon - grottes de Choranche",
"icon": "http://www.geodiversite.net/local/cache-gd2/62cd7b653a397afd6558ecc8ebbf534c.jpg"
},
"id": "73"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.60581016541,
48.2607002258
]
},
"properties": {
"name": "Oxyde de fer",
"icon": "http://www.geodiversite.net/local/cache-gd2/e16bbabdb8feabf1189bd6c680ec68cd.jpg"
},
"id": "76"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.77469015121,
48.3512992859
]
},
"properties": {
"name": "Plage du Bilou au Conquet",
"icon": "http://www.geodiversite.net/local/cache-gd2/e7a9e635a649e9256122b38ab8e65946.jpg"
},
"id": "75"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.36871004105,
45.0643005371
]
},
"properties": {
"name": "Falaises de Presles - Vercors",
"icon": "http://www.geodiversite.net/local/cache-gd2/814edecb7a1681b2996ca806f101835c.jpg"
},
"id": "74"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
5.36871004105,
45.0643005371
]
},
"properties": {
"name": "Fistuleuse dans les grottes de Choranche - Vercors",
"icon": "http://www.geodiversite.net/local/cache-gd2/49d979644b7766fd7adaccc8fe8738b4.jpg"
},
"id": "72"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.91553020477,
43.6068992615
]
},
"properties": {
"name": "Falaise à la plage de Xago",
"icon": "http://www.geodiversite.net/local/cache-gd2/b9fb21db564f75e946b7afbb5f01885d.jpg"
},
"id": "71"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.7672700882,
48.3284988403
]
},
"properties": {
"name": "Erosion à la pointe Saint-Mathieu",
"icon": "http://www.geodiversite.net/local/cache-gd2/b41bde89623eec9a519baf323d721970.jpg"
},
"id": "70"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55125999451,
48.1977005005
]
},
"properties": {
"name": "Galets de la Palud",
"icon": "http://www.geodiversite.net/local/cache-gd2/2e9d2993abe5a1f2991942c79232235b.jpg"
},
"id": "68"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55228996277,
48.2024993896
]
},
"properties": {
"name": "Galets de la Palud",
"icon": "http://www.geodiversite.net/local/cache-gd2/4d1c837d4ed09840f06c5aa286b4ea6a.jpg"
},
"id": "67"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
1.45895004272,
10.3177995682
]
},
"properties": {
"name": "Cascades de la Kota",
"icon": "http://www.geodiversite.net/local/cache-gd2/1b033c6a111e363513bd9c1eeeb91dc3.jpg"
},
"id": "65"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-69.162399292,
-16.027299881
]
},
"properties": {
"name": "Isla del sol, Lac Titicaca",
"icon": "http://www.geodiversite.net/local/cache-gd2/e395651c86f5f2af8e14accee003f944.jpg"
},
"id": "64"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-69.8840026855,
-33.6054992676
]
},
"properties": {
"name": "Cordillere des Andes ",
"icon": "http://www.geodiversite.net/local/cache-gd2/78bec35d57494c0811d0962bc70eb4d2.jpg"
},
"id": "63"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7637023926,
-29.9458007812
]
},
"properties": {
"name": "Salar",
"icon": "http://www.geodiversite.net/local/cache-gd2/8cd0ef13d6b04b10b078235165e01cd3.jpg"
},
"id": "62"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-65.5801010132,
-23.7350997925
]
},
"properties": {
"name": "Montagnes polychromes",
"icon": "http://www.geodiversite.net/local/cache-gd2/0da1548a6452b08c4ac4435be8e361ba.jpg"
},
"id": "60"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
169.098999023,
-46.6628990173
]
},
"properties": {
"name": "Forêt fossile",
"icon": "http://www.geodiversite.net/local/cache-gd2/c4165fdc96bba1ca2e5e5289f552c82e.jpg"
},
"id": "58"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.60259008408,
48.2591018677
]
},
"properties": {
"name": "Calcaire lézardé",
"icon": "http://www.geodiversite.net/local/cache-gd2/ae145d576679e54d615cd6a4767732e4.jpg"
},
"id": "55"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.49634790421,
48.2182502747
]
},
"properties": {
"name": "Au coeur d&#8217;une grotte",
"icon": "http://www.geodiversite.net/local/cache-gd2/ebf7ab7208363ef77561be63b7b84bf4.jpg"
},
"id": "54"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
55.7462997437,
-21.2490997314
]
},
"properties": {
"name": "Piton de la fournaise",
"icon": "http://www.geodiversite.net/local/cache-gd2/1540d2b4ab9012152b8a895707477316.jpg"
},
"id": "51"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.74538993835,
48.3665008545
]
},
"properties": {
"name": "Lame mince du granite d&#8217;Huelgoat",
"icon": "http://www.geodiversite.net/local/cache-gd2/a37b59b098fb85727e1909fd080462d9.jpg"
},
"id": "46"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.74411988258,
48.3665008545
]
},
"properties": {
"name": "Chaos granitique d&#8217;Huelgoat",
"icon": "http://www.geodiversite.net/local/cache-gd2/ccac339e38376ce652db171095a6e3f4.jpg"
},
"id": "45"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.77044010162,
48.4790000916
]
},
"properties": {
"name": "Carrière du Kléguer",
"icon": "http://www.geodiversite.net/local/cache-gd2/68fdc7321be230d18f1d476e14e81cff.jpg"
},
"id": "43"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.35806369781,
48.6733703613
]
},
"properties": {
"name": "Bloc de granite sur une plage du Finistère nord",
"icon": "http://www.geodiversite.net/local/cache-gd2/5b9a276da21910dfe7c153b3ac409348.jpg"
},
"id": "42"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.35764551163,
48.6734619141
]
},
"properties": {
"name": "Un détail du granite de Brignogan",
"icon": "http://www.geodiversite.net/local/cache-gd2/f82074f9ca3803b6707951b02db3e014.jpg"
},
"id": "41"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.37190008163,
48.6693992615
]
},
"properties": {
"name": "Mastodontes de granite",
"icon": "http://www.geodiversite.net/local/cache-gd2/7bdf25ea9b733cf496bc7f6e4eea11b8.jpg"
},
"id": "40"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.56281995773,
48.2304992676
]
},
"properties": {
"name": "Schiste rubané",
"icon": "http://www.geodiversite.net/local/cache-gd2/49f5971ceb73801067a8d3054cb35bbd.jpg"
},
"id": "38"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.56258010864,
48.2307014465
]
},
"properties": {
"name": "Rides de sable fossiles",
"icon": "http://www.geodiversite.net/local/cache-gd2/9df3915cb5b62e8f8290aaaa906f0fb0.jpg"
},
"id": "39"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.56129980087,
48.2302017212
]
},
"properties": {
"name": "Tapis de galets",
"icon": "http://www.geodiversite.net/local/cache-gd2/7b4db5053ac4dd04117df110deb9c898.jpg"
},
"id": "37"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.5754199028,
48.2807998657
]
},
"properties": {
"name": "Anticlinal de la Mort Anglaise",
"icon": "http://www.geodiversite.net/local/cache-gd2/c762b1e73429380b0164971c61c6a84e.jpg"
},
"id": "36"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.45404005051,
48.2356987
]
},
"properties": {
"name": "Rides de sable actuelles et fossiles",
"icon": "http://www.geodiversite.net/local/cache-gd2/6b1054ab7d5f557789959db89766811b.jpg"
},
"id": "35"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-3.49868988991,
47.6367988586
]
},
"properties": {
"name": "Erosion marine",
"icon": "http://www.geodiversite.net/local/cache-gd2/09b1df2f98c498c8eefb1e545d2a91a6.jpg"
},
"id": "34"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.69600009918,
48.5717010498
]
},
"properties": {
"name": "Erosion",
"icon": "http://www.geodiversite.net/local/cache-gd2/fe182c5cce199bdceed2e67c8541eaf1.jpg"
},
"id": "33"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.70442008972,
48.5699996948
]
},
"properties": {
"name": "Gros cristaux de feldspaths",
"icon": "http://www.geodiversite.net/local/cache-gd2/82469665cf4e182e2041750da4814010.jpg"
},
"id": "32"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.77356004715,
55.6279983521
]
},
"properties": {
"name": "Galets écossais",
"icon": "http://www.geodiversite.net/local/cache-gd2/ceba20c1c3c2aca47e591ad30bcde877.jpg"
},
"id": "31"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.77273988724,
48.3404006958
]
},
"properties": {
"name": "Îlot à Feunteun ar gourin (le Conquet)",
"icon": "http://www.geodiversite.net/local/cache-gd2/31fb84e47fa0c0da3b6ae5190665b6f0.jpg"
},
"id": "23"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55825996399,
48.2125015259
]
},
"properties": {
"name": "Pillow lavas",
"icon": "http://www.geodiversite.net/local/cache-gd2/432931b2f93ff3152a5f0ff9423ed2cd.jpg"
},
"id": "30"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.05769014359,
48.6874008179
]
},
"properties": {
"name": "Terriers de vers",
"icon": "http://www.geodiversite.net/local/cache-gd2/5316f7e2d1269af63af95b8066fda3a0.jpg"
},
"id": "29"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.57279014587,
48.2349014282
]
},
"properties": {
"name": "Puzzle de pierre",
"icon": "http://www.geodiversite.net/local/cache-gd2/90b5de61e2bec1baca2503f8b9df1a8d.jpg"
},
"id": "28"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.60283994675,
48.2602996826
]
},
"properties": {
"name": "Soufre",
"icon": "http://www.geodiversite.net/local/cache-gd2/6e3b7b0fac5e45aad27eb77afee9365a.jpg"
},
"id": "27"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.56337022781,
48.2314987183
]
},
"properties": {
"name": "Galets et blocs de quartzite",
"icon": "http://www.geodiversite.net/local/cache-gd2/797fe33c81d234c46a212bfaa6be4dc7.jpg"
},
"id": "26"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.60748004913,
48.2612991333
]
},
"properties": {
"name": "Alternance de couches",
"icon": "http://www.geodiversite.net/local/cache-gd2/719e23f1fba40a200f0f0fc061e2e066.jpg"
},
"id": "25"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.43378019333,
48.2282981873
]
},
"properties": {
"name": "Altération en boules",
"icon": "http://www.geodiversite.net/local/cache-gd2/a660adce7001c58bc64662c329140706.jpg"
},
"id": "24"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.6155500412,
48.3390007019
]
},
"properties": {
"name": "Le petit Minou",
"icon": "http://www.geodiversite.net/local/cache-gd2/0ebf3c849f8f9328e96fe61bd38699cc.jpg"
},
"id": "22"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.76074981689,
48.3742980957
]
},
"properties": {
"name": "Gneiss de la plage des Blancs Sablons",
"icon": "http://www.geodiversite.net/local/cache-gd2/715920216802b2ca3f27d71d492857cf.jpg"
},
"id": "21"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.7610001564,
48.3723983765
]
},
"properties": {
"name": "Minéral et végétal aux Blancs Sablons",
"icon": "http://www.geodiversite.net/local/cache-gd2/69c84a8b2e8e848055c6ed21d147b45d.jpg"
},
"id": "20"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-6.3140501976,
53.1744003296
]
},
"properties": {
"name": "Montagnes de wicklow",
"icon": "http://www.geodiversite.net/local/cache-gd2/7ec97f525a01d4fec91b151017ac9ffb.jpg"
},
"id": "19"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-9.22735977173,
53.1430015564
]
},
"properties": {
"name": "Cordon de galets à Black Head dans les Burren",
"icon": "http://www.geodiversite.net/local/cache-gd2/3bbf6df9c9676e4f49b149f156134d00.jpg"
},
"id": "18"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55345010757,
48.2065010071
]
},
"properties": {
"name": "La palud vue des grottes de Lostmarc&#8217;h",
"icon": "http://www.geodiversite.net/local/cache-gd2/7c8222bb2893b62fd1fd1dc02ab07396.jpg"
},
"id": "17"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55258989334,
48.2083015442
]
},
"properties": {
"name": "Lostmarc’h",
"icon": "http://www.geodiversite.net/local/cache-gd2/3ab921d4db076132c53e0ffb46460884.jpg"
},
"id": "16"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
48.6283988953,
15.9197998047
]
},
"properties": {
"name": "Shibam",
"icon": "http://www.geodiversite.net/local/cache-gd2/587603bf1881f353af81f2f65c3eed03.jpg"
},
"id": "15"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
48.8499984741,
15.5832996368
]
},
"properties": {
"name": "Sah, village à flanc de falaise",
"icon": "http://www.geodiversite.net/local/cache-gd2/82d9620b9dddab7ceec6aad5efae1c26.jpg"
},
"id": "14"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
166.464996338,
-22.5125999451
]
},
"properties": {
"name": "Cordon de roches sur l&#8217;îlot Amédée",
"icon": "http://www.geodiversite.net/local/cache-gd2/468f4a32686ac91c331506989d3e341e.jpg"
},
"id": "12"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.93637990952,
43.4572982788
]
},
"properties": {
"name": "Cuevas del mar",
"icon": "http://www.geodiversite.net/local/cache-gd2/587cf789a5d9681d0137f5f6fa1b8f2d.jpg"
},
"id": "11"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.77287006378,
48.3415985107
]
},
"properties": {
"name": "Galet à la grève bleue",
"icon": "http://www.geodiversite.net/local/cache-gd2/8940bd2a8858e86648b3f8f1d57132f6.jpg"
},
"id": "10"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
2.20550990105,
7.78447008133
]
},
"properties": {
"name": "Collines de granite à Dassa",
"icon": "http://www.geodiversite.net/local/cache-gd2/0155bff27c82b4ab9c99fa2a2380ed80.jpg"
},
"id": "9"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.0881934166,
48.4430198669
]
},
"properties": {
"name": "Cale de Penn ar roch",
"icon": "http://www.geodiversite.net/local/cache-gd2/d96639ec283168fccb29c08d2ab8a751.jpg"
},
"id": "8"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
3.37349009514,
43.6542015076
]
},
"properties": {
"name": "Strates sédimentaires",
"icon": "http://www.geodiversite.net/local/cache-gd2/a6b5044488749bb18a6b530ec7fa3204.jpg"
},
"id": "7"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-2.07715010643,
48.6402015686
]
},
"properties": {
"name": "La pointe de la Roche Pelée ",
"icon": "http://www.geodiversite.net/local/cache-gd2/35fea10d743d95ac4b5a4b8a47b105f6.jpg"
},
"id": "6"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
9.18568992615,
41.3667984009
]
},
"properties": {
"name": "Roche corse",
"icon": "http://www.geodiversite.net/local/cache-gd2/bdaa55cc65ebbc9331b276556390ed4f.jpg"
},
"id": "5"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-1.9243799448,
50.6412010193
]
},
"properties": {
"name": "Old Harry Rocks, Studland",
"icon": "http://www.geodiversite.net/local/cache-gd2/b30df6a7d7def0b4d71840683d8c1723.jpg"
},
"id": "4"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.55009937286,
48.1813392639
]
},
"properties": {
"name": "Du temps des mamouths",
"icon": "http://www.geodiversite.net/local/cache-gd2/53671df910540dad3e5d0f5a54f7aa9e.jpg"
},
"id": "3"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-4.29651021957,
48.1600990295
]
},
"properties": {
"name": "Lames de grès de Talagrip",
"icon": "http://www.geodiversite.net/local/cache-gd2/bb55e35ab3c360028c04bbf43a7b9c46.jpg"
},
"id": "2"
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-5.11419010162,
48.4648017883
]
},
"properties": {
"name": "Rochers de leucogranite de Lokeltas ",
"icon": "http://www.geodiversite.net/local/cache-gd2/5da636603b642a5447f2848073204a91.jpg"
},
"id": "1"
}
]
}
* Running on http://192.168.1.124:8080/
layer <osgeo.ogr.Layer; proxy of <Swig Object of type 'OGRLayerShadow *' at 0x1ca3a80> >
layer_sref GEOGCS["WGS 84",
DATUM["WGS_1984",
SPHEROID["WGS 84",6378137,298.257223563,
AUTHORITY["EPSG","7030"]],
AUTHORITY["EPSG","6326"]],
PRIMEM["Greenwich",0,
AUTHORITY["EPSG","8901"]],
UNIT["degree",0.01745329251994328,
AUTHORITY["EPSG","9122"]],
AUTHORITY["EPSG","4326"]]
bbox 1 POLYGON ((-626172.136000000056811 6261721.356999999843538,-547900.618999999947846 6261721.356999999843538,-469629.102000000013504 6261721.356999999843538,-391357.585000000020955 6261721.356999999843538,-313086.068000000028405 6261721.356999999843538,-313086.068000000028405 6183449.839999999850988,-313086.068000000028405 6105178.322999999858439,-313086.068000000028405 6026906.80599999986589,-313086.068000000028405 5948635.28899999987334,-391357.585000000020955 5948635.28899999987334,-469629.102000000013504 5948635.28899999987334,-547900.618999999947846 5948635.28899999987334,-626172.136000000056811 5948635.28899999987334,-626172.136000000056811 6026906.80599999986589,-626172.136000000056811 6105178.322999999858439,-626172.136000000056811 6183449.839999999850988,-626172.136000000056811 6261721.356999999843538))
bbox to layer_sref POLYGON ((-5.625000002585681 48.92249926304028,-4.921875002262469 48.92249926304028,-4.21875000193926 48.92249926304028,-3.51562500161605 48.92249926304028,-2.812500001292841 48.92249926304028,-2.812500001292841 48.458351881869703,-2.812500001292841 47.989921666250289,-2.812500001292841 47.517200696446601,-2.812500001292841 47.040182143180978,-3.51562500161605 47.040182143180978,-4.21875000193926 47.040182143180978,-4.921875002262469 47.040182143180978,-5.625000002585681 47.040182143180978,-5.625000002585681 47.517200696446601,-5.625000002585681 47.989921666250289,-5.625000002585681 48.458351881869703,-5.625000002585681 48.92249926304028))
spacing 16.0
coord (44.000, 62.000 @7.000)
projection <TileStache.Geography.SphericalMercator instance at 0x1ca7878>
_tile_perimeter_width 313086.067856
buffer 19567.879241
mask POLYGON ((19564.460145751134405 48.194037465699999,13833.161009500170621 -13788.386067288596678,-3.419095254118387 -19519.685203539585928,-13839.999200008427579 -13788.386067288640334,-19571.298336259435018 48.194037465636775,-13839.999200008516709 13884.77414221995241,-3.419095254240494 19616.073278470983496,13833.161009500081491 13884.774142220087015,19564.460145751134405 48.194037465699999))
before 355
features 1
192.168.1.19 - - [15/May/2012 11:23:27] "GET /geodiv/7/62/44.geojson HTTP/1.1" 200 -
INFO:werkzeug:192.168.1.19 - - [15/May/2012 11:23:27] "GET /geodiv/7/62/44.geojson HTTP/1.1" 200 -
{
"cache":
{
"name": "Test"
},
"layers":
{
"osm":
{
"provider": {"name": "proxy", "provider": "OPENSTREETMAP"},
"png options": {"palette": "http://tilestache.org/example-palette-openstreetmap-mapnik.act"}
},
"example":
{
"provider": {"name": "mapnik", "mapfile": "examples/style.xml"},
"projection": "spherical mercator"
},
"acetate":
{
"provider": {"name": "proxy", "url": "http://acetate.geoiq.com/tiles/acetate-hillshading/{Z}/{X}/{Y}.png"},
"preview": {"lat": 48, "lon": -4, "zoom": 7, "ext": "png"}
},
"roads":
{
"provider": {"name": "proxy", "url": "http://tile.openstreetmap.org/{Z}/{X}/{Y}.png"}
},
"geodiv":
{
"provider": {"name": "vector", "driver": "GeoJSON", "parameters": {"file": "geodiv.json"}, "spacing": "16"},
"preview": {"lat": "48", "lon": "-4", "zoom": "7", "ext": "geojson"},
"allowed origin": "*"
},
"taxinomes":
{
"provider": {"name": "vector", "driver": "GeoJSON", "parameters": {"file": "taxinomes.json"}, "spacing": "16"},
"preview": {"lat": "48", "lon": "-4", "zoom": "7", "ext": "geojson"},
"allowed origin": "*"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment