Skip to content

Commit

Permalink
removing mentions of Mondara
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismetcalf committed Sep 14, 2016
1 parent 933302e commit 270269d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ UpsertResult upsertResult = producer.upsertStream("testupdate", HttpLowLevel.CSV

### Import or Replace GeoSpatial Files

You can importing GeoSpatial data files as new Mondara datasets or replace GeoSpatial files of existing Mondara
You can import geospatial data files as new datasets or replace the data in existing
datasets. Supported formats are .kml, .kmz, and .zip (ESRI Shapefile).

```java
Expand All @@ -244,10 +244,10 @@ final SodaImporter importer = SodaImporter.newImporter("https://sandbox.demo.soc
"OpenData",
"D8Atrg62F2j017ZTdkMpuZ9vY");

// Import a new GeoSpatial File (as Mondara dataset)
// Import a new geospatial file
GeoDataset newDataset = (GeoDataset) importer.createViewFromShapefile(GEOSPATIAL_FILE_TO_IMPORT);

// Replace an existing GeoSpatial (Mondara) dataset (EXISTING_DATASET_ID might be something like 'abcd-1234')
// Replace an existing geospatial dataset (EXISTING_DATASET_ID might be something like 'abcd-1234')
GeoDataset replacedDataset = (GeoDataset) importer.replaceViewFromShapefile(EXISTING_DATASET_ID, NEW_GEOSPATIAL_FILE);
```

Expand Down

0 comments on commit 270269d

Please sign in to comment.