Description:
Reconstruct feature collection in GeoJSON format back in time.
The geometries will be assigned a plate id and moved back in time using the reconstruction model.
Reconstructed geometries will be return in GeoJSON format.
URL:
http://portal.gplates.org/service/reconstruct_feature_collection
Parameters:
feature_collection:
The feature collection in GeoJSON format.
time:
The time age in million years(Ma) to which the feature collection will be reconstructed.
The valid input value depends on the chosen reconstruction model.
model:
The reconstruction model name.
Models:
default -- The valid time is a float number between 0 and 440.
Feature Collection Examples:
#Polygon
{
"type":"FeatureCollection",
"features":
[{
"type":"Feature",
"geometry":
{
"type": "Polygon",
"coordinates": [
[ [23, -20.0], [-9.0, 35.0],[14.0, 44.0],[23, -20.0] ]
]
},
"properties":{}
}]
}
#LineString
{
"type":"FeatureCollection",
"features":
[{
"type":"Feature",
"geometry":
{
"type": "LineString",
"coordinates": [
[23, -20.0], [-9.0, 35.0]
]
},
"properties":{}
}]
}
#MultiPoint
{
"type":"FeatureCollection",
"features":
[{
"type":"Feature",
"geometry":
{
"type": "MultiPoint",
"coordinates": [
[23, -20.0], [-9.0, 35.0],[14.0, 44.0]
]
},
"properties":{}
}]
}
#Point
{
"type":"FeatureCollection",
"features":
[{
"type":"Feature",
"geometry":
{
"type":"Point",
"coordinates":[51.0, 38.0]
},
"properties":{}
}]
}