HERE Data Inspector doesn't shows the base map - here-api

I created a versioned layer in a catalog and published GeoJSON data to it. And I checked it from "Inspect" tab in the layer page in Workspace, but the base map(typically HERE OMV Plus) isn't shown and I can't find out the published partition. Why no base map is shown?

Related

select polygon loaded from kml having its title

I am trying to select a polygon loaded from kml (in js) from its title but I do not know how (I found only from js variable if manually defined the single polygon). Is this possible?
If not, what is the best way to "copy" a selected polygon (define a new polygon take the data from the selected one) on a double click event (for example for show it with a different style) and delete the loaded kml (with hundreds of polygons)?
Thanks for any reply and sorry for my bad English.
I not found a way to point directly the polygon loaded by kml for title but thanks to this example using geoxml3 that parse, show kml and permit "after parse" operations and with I reached the goal, although with a lot of code for a few small operations. Thanks to the people that worked on them.

download data from website when no URL specified

I am trying to pull related to trade (imports and exports) from different central banks or statistical offices' websites in RStudio.
This is not a problem when an URL link is associated to a file (.pdf, .csv, .xls, ...). However, I can't find a solution when the user has to manually specify manually the filters (e.g. years, months, sectors,...) and no URL link is associated with the query.
For example, I am trying to load the imports and exports of El Salvador at this url: http://www.bcr.gob.sv/bcrsite/?cdr=38
It appears that the data is not stored in the html code of the web page. I have tried web scraping, but the data cannot be found this way as the user has to first make a query and then click "Export the results".
How I can automatically load these datasets into RStudio?
Looks like you need to use http://www.bcr.gob.sv/bcrsite/downloadsxls.php?exportCDR=1&cdr=38&xls=1 to get the XLS file which you can then parse. Make sure they are ok with this service being used as an API.

How to time-enable a raster layer using ArcGIS Javascript API?

I have a set of raster layers that cover the same place, over different years. I want to display it on my website using the timeslider so that I can clearly view the changes between rasters over different years. However, the example given by ESRI site is based on featurelayer, and I have a raster layer. How can I make the raster layer time-aware?
If you currently have multiple raster layers, you will need to convert them to a single layer that also happens to be time-aware.
Esri Support wrote a blog post about this -- back in 2011, but the principles should still work -- and a GIS StackExchange question covers publication of time-aware datasets as an image service. To summarize their workflow:
Create a new mosaic dataset or raster catalog. Add the individual rasters in.
Add a new field, of type date (e.g. year).
Populate year with values.
Enable time on the layer, and publish it as an image service.
The Esri JavaScript API example will help with implementation, once you've got everything configured and published.

Drill down in SSRS US Map Reports

I have been interested in map reporting, so I wanted to create a map report with drill down functionality, so basically created two reports as follows:
a) Main report based on SQL Server Spatial data for showing US States wide sales
b) Drill down map report based on ESRI shapfile for showing US Counties sales for the selected state
I downloaded the US Counties ESRI shapefile.
Once I was done with the reports, I tested the map with drilldown functionality. I previewed the main report, hover the mouse over Texas and I don't see the counties for Texas state. I see only a map of the US with tiny dots.
So, I am not sure what I missed. I chose County Name column from the spatial data and also the county name from the analytical dataset. Is it the ESRI shapefile?
Please advise.
To my knowledge SSRS does not support 'hover over' features only an 'action' feature. The action can go to a hyperlink, go to a report, or go to a section. To do a drill down for a report, even if it is geographic you need to have a reference to something you can pass to something else. I recently did something similar to what you are asking though. You can make a 'subreport' that dynamically gets created from a geographic data type that represents states. What I did:
I downloaded a program that takes Census shape files and puts them into a SQL database:
http://www.sharpgis.net/page/sql-server-2008-spatial-tools.aspx
I got a shape file of the counties of the US from the Census.
I created a database called 'Spatial'
I created a table and inserted data into it from step 1's app called 'Counties'
I created a generic US map as my 'Main' report, using the geographic options for the US.
I created a subreport of a map type but chose the spatial data wizard. The options are not that important to get started but HOW you make the image. This report gets it's data from the 'geographic' column of the table I made so the query would be like this(ensure to have a datasource go to the Spatial Database):
Select StateName, Counties, geog(geographic type)
from UsCounties
where StateName = #State
The report when done looks like a blob, because it is created at run time, not statically. You can 'preview' it and pass in a state like 'OR' or 'WA' from a variable that should be created called 'State'. If it was not auto created you may do so and make it a 'Text' variable. It will display the state shape if it was set up correct.
You may go back to the report in step 5 and then go to the 'Polygon Properties' of the layer you created.
Select the 'Action' pane on the left. Choose 'Go to report', specify the sub report you created, the report will want a variable match for 'State' the generic US state has an 'Abbreviation' that corresponds to the state two digit code.
Now you should be able to run the main report and when you click anywhere in a state it will 'drillthrough' to a report that is created at runtime from the spatial database. This is vector based so it is fairly quick depending on your hardware hosting your machine and how much data you show.
Keep in mind that with SSRS it is hard to make it have some 3d features and hover over for some reason is completely ignored for objects but is relegated to only 'tooltips' which you can load up with functions to give text and numbers but not much more. There is a hack I wrote in another place of how you can use javascript to pop out a window, but under the hood you are really just doing a drill through presented differently.

Parse KML loaded from network link on each Google Earth plugin movement

Is there a way to parse a network links KML each time the Earth is moved. I know how to setup the eventListener.
Page flow:
- I load the KML using fetchKml
- Each time the earth is moved it pulls the network stream
- I want to parse the streamed KML to see if it's within view limits or not so I can display a message.
So to summarize. I want to somehow parse the returned KML from a network link to see if the features are within view and if no show a message like "Out of Range".
Thanks in advance.
if you are generating the network link servier side you can use viewformat in kml to pass as parameters the current google earth view bounding box as parameters,
http://code.google.com/apis/kml/documentation/kmlreference.html#viewformat
if the view BBOX isn't in the desired area generate you could try return kml string consisting of a networklinkcontrol with a message
http://code.google.com/apis/kml/documentation/kmlreference.html#networklinkcontrol
the other option is define you data client side in an object, either on the page load and loop through on the data to see if things on the google earth plugin viewchangeend event.

Resources